摘要: ''' 原字符串左侧对齐, 右侧补零: ''' str.ljust(width,'0') input: '789'.ljust(32,'0') output: '78900000000000000000000000000000' ''' 原字符串右侧对齐, 左侧补零: 方法一: ''' str.rj 阅读全文
posted @ 2019-09-15 10:33 Alive_2020 阅读(14107) 评论(0) 推荐(0) 编辑
摘要: python 有自带logging 非常强大,网上也查了很多自配置的logger可以说体验不太好,一旦有import问题,日志重复打印什么的,各种各样的问题,下面记录一种可以适用于任何框架的logging,这个不是自创的,不记得是哪里查到的了。 logg_config.py配置文件 写在配置文件里面 阅读全文
posted @ 2019-09-01 23:23 Alive_2020 阅读(653) 评论(0) 推荐(0) 编辑
摘要: 语音领域 1. 语音转换格式【百度ai需要】 https://www.cnblogs.com/miaosha5s/p/7670447.html 阅读全文
posted @ 2019-09-01 23:18 Alive_2020 阅读(140) 评论(0) 推荐(0) 编辑
摘要: 一、git clone、git pull和git fetch的用法及区别 https://www.cnblogs.com/lalalagq/p/9968949.html 二、已提交到GitLab中的项目如何添加.gitignore文件 https://www.jianshu.com/p/e4b19a 阅读全文
posted @ 2019-08-12 09:12 Alive_2020 阅读(138) 评论(0) 推荐(0) 编辑
摘要: 一、破解wifi密码 "pywifi模块简介" "pywifi模块简介2" "字典表下载博客" 阅读全文
posted @ 2019-08-12 09:06 Alive_2020 阅读(723) 评论(1) 推荐(0) 编辑
摘要: docker compose的学习 1. "docker compose.yml文件配置" 2. "docker compose命令介绍" 使用docker compose过程中出现的错误 1. docker compose up 创建容器时报错 err: answer: 阅读全文
posted @ 2019-08-09 11:37 Alive_2020 阅读(536) 评论(0) 推荐(0) 编辑
摘要: #coding=utf-8 import base64 #编码 encodestr = base64.b64encode("1234".encode(encoding='utf-8')) print(encodestr) # 注意encodestr类型是byte,不是str print(encode 阅读全文
posted @ 2019-07-29 17:31 Alive_2020 阅读(116) 评论(0) 推荐(0) 编辑
摘要: ### 一、19版打开markdown卡死问题 1. 版本 `PyCharm 2019.1.3 (Professional Edition)`,修改setting里的plugins中,将安装的markdown插件删掉即可。 [详细操作见](https://blog.csdn.net/qq_41897 阅读全文
posted @ 2019-07-15 15:33 Alive_2020 阅读(451) 评论(0) 推荐(0) 编辑
摘要: 一、什么是Autopep8 Autopep8是一个将python代码自动编排的一个工具,它使用pep8工具来决定代码中的那部分需要被排版,Autopep8可以修复大部分pep8工具中报告的排版问题。 很多人都知道 Ctrl+Alt+L 也可以排版, 但是我要告诉你,快捷键只是可以简单的排版。 跟Au 阅读全文
posted @ 2019-07-10 10:47 Alive_2020 阅读(630) 评论(0) 推荐(0) 编辑
摘要: 一、安装Pycharm教程 "大能传送门" Pycharm激活 "激活网站" win10已管理员修改hosts文件 [传送门]https://www.cnblogs.com/wyqn/p/8683697.html 二、配置字体、主题、鼠标滑轮改变字体大小 "传送门" 一、pycharm字体放大的设置 阅读全文
posted @ 2019-07-09 14:52 Alive_2020 阅读(446) 评论(0) 推荐(0) 编辑
摘要: 安装方式介绍 pip更改源[下面提供四种方式] 通过几次 pip 的使用,对于默认的 pip 源的速度实在无法忍受,于是便搜集了一些国内的pip源,如下: 阿里云 http://mirrors.aliyun.com/pypi/simple/ 中国科技大学 https://pypi.mirrors.u 阅读全文
posted @ 2019-07-09 14:30 Alive_2020 阅读(1058) 评论(1) 推荐(0) 编辑
摘要: csv模块简介 经常需要将查询的数据库文件导出,一般都导出为csv或者tsv格式,它们都可以通过excel打开, 而他们的区别是: CSV 即“逗号分隔值”,用逗号分隔数据 TSV 即“制表符分隔值”,用制表符分隔数据 所以tsv文件可以用python的csv模块进行解析,只需指定分隔符即可 pyt 阅读全文
posted @ 2019-07-09 14:21 Alive_2020 阅读(127) 评论(0) 推荐(0) 编辑
摘要: 加解密数据、操作密钥、操作SSL协议普遍使用了OpenSSL。虽然还有其它的使用C/C++开发的加密处理库,但是Python环境下支持最好的使用最广泛的还是OpenSSL。 据python.org官方网站,目前有几个库提供了加密功能。 PyOpenSSL。这个库是比较早的,但是作者已经停止开发,并且 阅读全文
posted @ 2019-07-09 11:16 Alive_2020 阅读(1832) 评论(1) 推荐(0) 编辑
摘要: Gitlab权限管理 Gitlab用户在组中有五种权限:Guest、Reporter、Developer、Master、Owner 1. Guest:可以创建issue、发表评论,不能读写版本库 2. Reporter:可以克隆代码,不能提交,QA、PM可以赋予这个权限 3. Developer:可 阅读全文
posted @ 2019-07-09 09:23 Alive_2020 阅读(267) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2019-07-04 14:29 Alive_2020 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 图型及命令行界面互切 1.实时切换 1.1 命令行->图形 执行startx命令 1.2 图形->命令行 Ctrl+Alt+F1--F6 2.启动默认 2.1 启动进入命令行 修改/etc/inittab文件 "id:3:initdefault" 2.2 启动进入图形界面 修改/etc/initta 阅读全文
posted @ 2019-06-25 12:39 Alive_2020 阅读(197) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2019-06-13 11:06 Alive_2020 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 方法一:轮询,查询表,判断当前时间 = lock,则执行更改订单状态任务, 效率低 方法二:被动式,用户查询该订单时,判断从而修改订单状态,被动,且不查询永远不超时 方法三: 利用线程的timer函数,每一个订单创建就开启一个线程,执行timer函数,相当于定时任务 方法四: 环形队列,处理延迟消息 阅读全文
posted @ 2019-05-24 14:42 Alive_2020 阅读(463) 评论(1) 推荐(0) 编辑
摘要: 一、简历篇 https://github.com/geekcompany/DeerResume http://cv.ftqq.com/# 阅读全文
posted @ 2019-05-15 10:06 Alive_2020 阅读(208) 评论(0) 推荐(0) 编辑
摘要: 一、目标网站编码utf-8,通过requests请求返回text方法,用到xpath上报错 解决: 将`html = requests.get(url=base_url, headers=headers).text` 改为`html = requests.get(url=base_url, head 阅读全文
posted @ 2019-05-10 00:17 Alive_2020 阅读(385) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2019-05-09 21:45 Alive_2020 阅读(1) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2019-05-09 18:22 Alive_2020 阅读(1) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2019-05-08 18:38 Alive_2020 阅读(6) 评论(1) 推荐(0) 编辑
摘要: 常见的模块 "牛人博客传送门" "操作excel" openpyxl 处理2010及以后 xlwt 老版本 创建excel文件,然后写入内容 读 阅读全文
posted @ 2019-05-08 17:17 Alive_2020 阅读(452) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2019-05-08 17:15 Alive_2020 阅读(10) 评论(2) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2019-05-08 13:42 Alive_2020 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 中国天气网: http://www.weather.com.cn/data/sk/101020100.html 颜色处为城市代码,在输入框中输入对应城市,就可以在html中看到对应的城市代码 阅读全文
posted @ 2019-05-07 18:26 Alive_2020 阅读(807) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2019-05-07 15:27 Alive_2020 阅读(4) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2019-05-07 11:01 Alive_2020 阅读(1) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2019-04-22 23:52 Alive_2020 阅读(18) 评论(4) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2019-04-22 11:06 Alive_2020 阅读(21) 评论(2) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2019-04-19 13:12 Alive_2020 阅读(2) 评论(0) 推荐(0) 编辑
摘要: ### html代码 ### jq代码 阅读全文
posted @ 2019-04-19 11:39 Alive_2020 阅读(156) 评论(1) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2019-04-15 23:57 Alive_2020 阅读(9) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2019-04-15 22:36 Alive_2020 阅读(23) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2019-04-13 23:05 Alive_2020 阅读(1) 评论(1) 推荐(0) 编辑
摘要: "订单超时自动关闭的实现方案总结" "工单模块数据库设计" "工作流学习" 阅读全文
posted @ 2019-04-12 20:57 Alive_2020 阅读(111) 评论(0) 推荐(0) 编辑
摘要: ```html -100100 -100100 -100100 -100100 -100100 ``` ```JavaScript fu... 阅读全文
posted @ 2019-04-12 00:04 Alive_2020 阅读(2386) 评论(1) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2019-04-09 15:56 Alive_2020 阅读(9) 评论(0) 推荐(0) 编辑
摘要: 1. 安装mysql 安装 配置安全设置密码远程登录 查看数据库状态 登录mysql,使用安全设置时的密码 修改root密码 创建远程登录用的库和用户 安装可视化工具mysql workbench 阅读全文
posted @ 2019-04-08 11:32 Alive_2020 阅读(191) 评论(0) 推荐(0) 编辑