51
Dev开发社区
首页
文章
问答
工具
搜索
登录
注册
#IME
MySQL server has gone away和Maximum execution time of 120 seconds exceeded
今天在写采集时碰到两个问题1、MySQLserverhasgoneaway2、Maximumexecutiontimeof120secondsexceeded采集程序写好运行大概一分钟后出现MySQLserverhasgoneaway,发现mysql里面的max_allowed_packet=1M,这里改成了10M,运...
IT猿
·
2020-03-28
MySQL
server
has
gone
away
Runtime.getRuntime().addShutdownHook
Runtime.getRuntime().addShutdownHook(shutdownHook); 这个方法的含义说明: 这个方法的意思就是在jvm中增加一个关闭的钩子,当jvm关闭的时候...
IT猿
·
2020-03-28
Runtime.getRuntime
.addShutdownHook
sublime text 3 ctrl+b浏览器启动html
sublimetext2和3都可以快速设置浏览器启动,本人在这里介绍如何不下插件启动浏览器。第一步:打开Tool-->buildsystem --->newbuildsystem第二步:将内容代替为:{"cmd":["C:\ProgramFiles(x86)\Google\Chrome...
IT猿
·
2020-03-28
sublime
text
ctrl+b
浏览器
启动
转--一款漂亮实用的Android开源日期控件timessquare
这个开源控件可以兼容到SDK8版本,可以自定义显示的年月日,以及时间范围,如图 如果我们只想显示两个月的日期选择区间:finalCalendarmonth=Calendar.getInstance();month.add(Calendar.MONTH,1);然后初始化时候可以传进去一些参数1fi...
IT猿
·
2020-03-27
一款
漂亮
用的
Android
开源
在CTime类中重载<<和>>
程序代码:#include<iostream>usingnamespacestd;classCTime//时间类{private:unsignedshortinthour;//时unsignedshortintminute;//分unsignedshortintsecond;//秒public:CTime(...
IT猿
·
2020-03-27
CTime
类中
重载
Sublime Text 高级正则查换替换功能
须要把例如以下的语句:insertinto`table`(`ID`,`code`,`detail`)values('1','110000','XX市');改成为:updatetablesetdetail='XX市'wherecode='110000'研究了好久。1. 图一:原始数据。2.用正则来匹配:&nbs...
IT猿
·
2020-03-27
Sublime
Text
高级
正则
查换
【pyqt5】QdateTimeEdit(日期时间)
fromPyQt5importQtCore,QtWidgetsclassUi_Dialog(object):defsetupUi(self,Dialog):Dialog.setObjectName("Dialog")Dialog.setWindowModality(QtCore.Qt.WindowModal)Dialo...
IT猿
·
2020-03-27
pyqt5
QdateTimeEdit
日期
时间
An Autofac Lifetime Primer
https://nblumhardt.com/2011/01/an-autofac-lifetime-primer/Or,“AvoidingMemoryLeaksinManagedComposition”Understandinglifetimecanbeprettytoughwhenyou&r...
IT猿
·
2020-03-27
An
Autofac
Lifetime
Primer
Controlling Scope and Lifetime
https://autofaccn.readthedocs.io/en/latest/lifetime/index.htmlAgreatplacetostartlearningaboutAutofacscopeandlifetimeisinNickBlumhardt’sAutofaclifetimeprim...
IT猿
·
2020-03-27
Controlling
Scope
and
Lifetime
TypeError: can't compare offset-naive and offset-aware datetimes bugfix
参考:https://docs.djangoproject.com/en/1.8/topics/i18n/timezones/#naive-and-aware-datetime-objects起因:正常的dateime.now()得到的日期不能和Django数据库里面存储的日期数据做对比,两个解决办法:1、是把Djan...
IT猿
·
2020-03-27
TypeError
can
#39t
compare
offset-naive
TimescaleDB比拼InfluxDB:如何选择合适的时序数据库?
https://www.itcodemonkey.com/article/9339.html时序数据已用于越来越多的应用中,包括物联网、DevOps、金融、零售、物流、石油天然气、制造业、汽车、太空、SaaS,乃至机器学习和人工智能。虽然当前时序数据库仅局限于采集度量和监控,但是软件开发人员已经逐渐明白,他们的确需要一...
IT猿
·
2020-03-27
TimescaleDB
比拼
InfluxDB
如何
选择
Unix时间戳(Unix timestamp)转换工具
在线工具地址:http://tool.chinaz.com/Tools/unixtime.aspx 如何在不同编程语言中获取现在的Unix时间戳(Unixtimestamp)?JavatimeJavaScriptMath.round(newDate().getTime()/1000)getTime()返回数值...
IT猿
·
2020-03-26
Unix
时间
timestamp
转换
工具
matplotlib使用时报错RuntimeError: Python is not installed as a framework(一)
笔者在第一次安装matplotlib后运行时出现报错。1importmatplotlibasmlb2frommatplotlibimportpylabaspl345x=[1,3,5,7,6,9,10,13,16]6y=[3,4,5,7,9,0,1,2,3]78pl.plot(x,y)9pl.show()报错内容Runt...
IT猿
·
2020-03-26
matplotlib
用时
报错
RuntimeError
Python
python时间处理之datetime
#-*-coding:utf-8-*-#datetime类#datetime是date与time的结合体,包括date与time的所有信息。#它的构造函数如下:#datetime.datetime(year,month,day[,hour[,minute[,second[,microsecond[,tzinfo]]]]...
IT猿
·
2023-05-06
python
时间
处理
datetime
sublime text 3 显示空格和Tab
因为sublimetext3确实太好用了所以也用它写代码了,可是在Python3中不支持Tab键和空格键混用所以要改变显示方式,以便方便使用,突然发现网上的资料太少,所以我把它贴了出来希望帮助更多的人第一步把preferences.sublime-setting-Default里面的"draw_white_space"...
IT猿
·
2023-05-06
sublime
text
显示
空格
Tab
首页
上一页
...
71
72
73
74
75
下一页
尾页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他