上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 18 下一页
摘要: 参考链接: https://www.cnblogs.com/mingyue605/p/10704108.html #!/bin/sh RM="rm -rf" function delete_all_dir() { for i in `ls` do if [ -d $i ];then $RM $i f 阅读全文
posted @ 2021-01-21 18:05 yoyoma0355 阅读(1255) 评论(0) 推荐(0)
摘要: 参考链接:https://blog.csdn.net/jirryzhang/article/details/78881512 简单总结PyInstaller使用方法: 生成单一的exe文件: pyinstaller -F test.py 添加必要的搜索路径: pyinstaller -F -p D: 阅读全文
posted @ 2021-01-18 15:48 yoyoma0355 阅读(228) 评论(0) 推荐(0)
摘要: 参考:https://blog.csdn.net/qq_32109909/article/details/107425697?utm_medium=distribute.pc_relevant_t0.none-task-blog-OPENSEARCH-1.not_use_machine_learn_ 阅读全文
posted @ 2021-01-15 16:00 yoyoma0355 阅读(2470) 评论(0) 推荐(0)
摘要: -2 shell中的算术运算 *这是因为,在 Bash Shell 中,如果不特别指明,每一个变量的值都是字符串,无论你给变量赋值时有没有使用引号,值都会以字符串的形式存储。 第一种:. -1. 获取变量的类型 第一种:. 0. 获取字符串长度第一种:. name=Alex echo ${#name 阅读全文
posted @ 2021-01-15 11:36 yoyoma0355 阅读(139) 评论(0) 推荐(0)
摘要: 转载:https://www.cnblogs.com/dangkai/p/9948573.html js 或Jquery操作定位元素 属性过滤常用javascript后去DOM对象 id是定位到的是单个element元素对象,其它的都是elements返回的是list对象 1.通过id获取 docu 阅读全文
posted @ 2020-12-23 11:17 yoyoma0355 阅读(600) 评论(0) 推荐(0)
摘要: 参考链接:https://www.cnblogs.com/taomylife/p/8022104.html linux下如何实现mysql数据库每天自动备份定时备份 版权声明:本文为 testcs_dn(微wx笑) 原创文章,非商用自由转载-保持署名-注明出处,谢谢。 目录(?)[+] 概述 备份是 阅读全文
posted @ 2020-11-11 10:14 yoyoma0355 阅读(115) 评论(0) 推荐(0)
摘要: 转载自:https://www.cnblogs.com/wf-skylark/p/9306789.html 以下对蓝图的讲解由浅入深,易懂。 Blueprint 模块化 随着flask程序越来越复杂,我们需要对程序进行模块化的处理,针对一个简单的flask程序进行模块化处理 举例来说: 我们有一个博 阅读全文
posted @ 2020-11-09 17:50 yoyoma0355 阅读(1652) 评论(0) 推荐(0)
摘要: 功能:点击按钮,下载一个excel表到本地。且该表有固定的模板样式 前端: 1.index.html <!DOCTYPE html> <html lang="en"> <head> {% include 'header.html' %} <meta charset="UTF-8"> <!-- 使用u 阅读全文
posted @ 2020-11-02 10:13 yoyoma0355 阅读(166) 评论(0) 推荐(0)
摘要: 转载:https://www.cnblogs.com/yufeihlf/p/5707929.html#test0 https://blog.csdn.net/weixin_42139375/article/details/83216648 下面文章写的很好,新手很受用。 unittest单元测试框架 阅读全文
posted @ 2020-10-22 15:56 yoyoma0355 阅读(101) 评论(0) 推荐(0)
摘要: linux下执行一条命令实现开机自启动docker systemctl enable docker 参考链接:https://blog.csdn.net/skh2015java/article/details/94012643 一、systemctl理解 Linux 服务管理两种方式service和 阅读全文
posted @ 2020-10-15 17:09 yoyoma0355 阅读(1627) 评论(0) 推荐(0)
上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 18 下一页