ZhangZhihui's Blog  

2020年7月29日

摘要: 关闭自动登录即可。 具体方法: 1、登录界面,按Ctrl+Alt+F3进入命令行界面,登录。 2、输入以下代码识别默认显示管理器。 cat /etc/X11/default-display-manager 如果是LightDM,则显示 /usr/sbin/lightdm 如果是GDM3,则显示 /u 阅读全文
posted @ 2020-07-29 21:02 ZhangZhihuiAAA 阅读(592) 评论(0) 推荐(0) 编辑

2020年7月23日

摘要: 笛卡尔坐标转换为极坐标。 cartToPolar(...) cartToPolar(x, y[, magnitude[, angle[, angleInDegrees]]]) -> magnitude, angle . @brief Calculates the magnitude and angl 阅读全文
posted @ 2020-07-23 21:00 ZhangZhihuiAAA 阅读(2183) 评论(0) 推荐(0) 编辑

2020年7月9日

摘要: find ./ -type d -name ".svn" -exec rm -rf {} \;find ./ -user rycarr -exec rm -rf {} \;find ./ -group chousers -exec rm -rf {} \; 阅读全文
posted @ 2020-07-09 11:27 ZhangZhihuiAAA 阅读(199) 评论(0) 推荐(0) 编辑

2020年6月11日

摘要: # Multi-dimensional array example import numpy as np a = np.array([[1,2], [3,4]]) print 'Array a:' print a b = np.array([[11, 12], [13, 14]]) print 'A 阅读全文
posted @ 2020-06-11 11:16 ZhangZhihuiAAA 阅读(721) 评论(0) 推荐(0) 编辑

2020年6月10日

摘要: x = x + y x += y The two expressions have the same effect, but in the first case, x is reassigned to a new array, while in the second case, the values 阅读全文
posted @ 2020-06-10 15:01 ZhangZhihuiAAA 阅读(152) 评论(0) 推荐(0) 编辑

2020年5月29日

摘要: Errors: RuntimeError: main thread is not in main loopTcl_AsyncDelete: async handler deleted by the wrong thread Solution: import matplotlib as mplmpl. 阅读全文
posted @ 2020-05-29 17:27 ZhangZhihuiAAA 阅读(2387) 评论(0) 推荐(0) 编辑

2020年5月22日

摘要: 要上传文件,form必须要加enctype=multipart/form-data属性。 from flask_wtf.file import FileField class MyForm(FlaskForm): image = FileField('Upload Image:') from wer 阅读全文
posted @ 2020-05-22 17:38 ZhangZhihuiAAA 阅读(451) 评论(0) 推荐(0) 编辑
 
摘要: jinja2.exceptions.TemplateSyntaxError: Encountered unknown tag 'break' To use {% break %} and {% continue %}, you need to add the following jinja2 ext 阅读全文
posted @ 2020-05-22 11:52 ZhangZhihuiAAA 阅读(305) 评论(0) 推荐(0) 编辑

2020年5月19日

摘要: from flask_wtf import FlaskFormfrom wtforms.fields.html5 import DateTimeLocalFieldclass MyForm(FlaskForm): start_dt = DateTimeLocalField('Start Time') 阅读全文
posted @ 2020-05-19 22:06 ZhangZhihuiAAA 阅读(459) 评论(0) 推荐(0) 编辑

2020年5月8日

摘要: >>> from base64 import b64encode>>> from os import urandom>>> b64encode(urandom(32)).decode('utf-8')'2owZqn8Qo0+3yqfvzvISq98/gB3OS3BWl3DJFBPsLgQ='>>> 阅读全文
posted @ 2020-05-08 14:27 ZhangZhihuiAAA 阅读(519) 评论(0) 推荐(0) 编辑