ZhangZhihui's Blog |
|
||
2020年7月29日
摘要:
关闭自动登录即可。 具体方法: 1、登录界面,按Ctrl+Alt+F3进入命令行界面,登录。 2、输入以下代码识别默认显示管理器。 cat /etc/X11/default-display-manager 如果是LightDM,则显示 /usr/sbin/lightdm 如果是GDM3,则显示 /u 阅读全文
2020年7月23日
摘要:
笛卡尔坐标转换为极坐标。 cartToPolar(...) cartToPolar(x, y[, magnitude[, angle[, angleInDegrees]]]) -> magnitude, angle . @brief Calculates the magnitude and angl 阅读全文
2020年7月9日
摘要:
find ./ -type d -name ".svn" -exec rm -rf {} \;find ./ -user rycarr -exec rm -rf {} \;find ./ -group chousers -exec rm -rf {} \; 阅读全文
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 阅读全文
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 阅读全文
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. 阅读全文
2020年5月22日
摘要:
要上传文件,form必须要加enctype=multipart/form-data属性。 from flask_wtf.file import FileField class MyForm(FlaskForm): image = FileField('Upload Image:') from wer 阅读全文
摘要:
jinja2.exceptions.TemplateSyntaxError: Encountered unknown tag 'break' To use {% break %} and {% continue %}, you need to add the following jinja2 ext 阅读全文
2020年5月19日
摘要:
from flask_wtf import FlaskFormfrom wtforms.fields.html5 import DateTimeLocalFieldclass MyForm(FlaskForm): start_dt = DateTimeLocalField('Start Time') 阅读全文
2020年5月8日
摘要:
>>> from base64 import b64encode>>> from os import urandom>>> b64encode(urandom(32)).decode('utf-8')'2owZqn8Qo0+3yqfvzvISq98/gB3OS3BWl3DJFBPsLgQ='>>> 阅读全文
|
Copyright © 2024 ZhangZhihuiAAA
Powered by .NET 9.0 on Kubernetes |