摘要:
今天root pixel xl 开机失败了,连开机都开不了了. 手机开机显示 Your device software can't be checked for corruption.Please lock the bootloader. 然后卡在一个显示Google字样的界面. 手机成砖头了,赶紧 阅读全文
摘要:
MonkeyPatchWarning: Monkey-patching ssl after ssl has already been imported may lead to errors, including RecursionError on Python 3.6. It may also si 阅读全文
摘要:
直接上代码 var url = "https://www.cnblogs.com/xuchunlin/p/14848864.html" var time = 10000; var timeout = false; var request = new XMLHttpRequest(); var tim 阅读全文
摘要:
function sleep(n) { var start = new Date().getTime(); while (true) { if (new Date().getTime() - start > n) { break; } } } console.log(11111111) sleep( 阅读全文
摘要:
附图收费表 Type of captcha/method Rate per 1000 Description Normal CaptchaText Captcha $0.5-$1 The rate is flexible and depends on current load of the serv 阅读全文
摘要:
在平时的开发中,需要获取最近几个月,最近几年或者最近几天的时间列表,本文使用了arrow去实现了这几个过程。 def get_day(num): day_list = [] a = arrow.now() # 当前本地时间 for i in range(0, num + 1): yearmonth 阅读全文
摘要:
临时解决方案,重启MySQL服务会失效第一步:查看 innodb_buffer_pool_size 值 的大小 show variables like "%_buffer%"; 第二步:修改 SET GLOBAL innodb_buffer_pool_size=67108864;(3*1024*10 阅读全文