mysql内存表 Posted on 2017-01-15 | In mysql | 常说的mysql内存表包括两种,一种是仅在当前连接中有效,创建方法是 create temporary table table_name(i int)临时表与普通的表不同他不属于某个db而是从属于这个连接,所以在任何db里面show tables都看不到,并且同一个表名创建一次之后不管是在那个db下 ... Read more »
golang 时间解析相关以及bug记录 Posted on 2017-01-15 | In golang | 在python里面以及shell命令里面对于时间格式的解析是使用的%Y代表年份(year)、%m代表月份(month)、%d代表日期(day)、%H代表小时(hour)、%M表示分钟(minute)、%S表示时间单位秒(second)、%s表示距离1970-01-01过去的秒。 参考链接 但是在go ... Read more »
mysql datetime Incorrect datetime value: '0000-00-00 00:00:00' for column Posted on 2017-01-13 | In mysql | 参考链接 在将某张表进行modify操作的时候总是报这个错误,导致alter失败,select where发现确实是有数据datetime格式并且时间竟然是’0000-00-00 00:00:00’ ,之后查到原因,说是由于sql_mode的缘故限制了datetime字段的默认值不能使zeor,使用 ... Read more »
hexo Posted on 2017-01-09 | In 文档 | 才用了没多久。。感觉自己就想要迁移到hexo上面去了。。。囧 迁移文档1 迁移文档2 转载请注明来源链接 http://just4fun.im/2017/01/09/hexo/ 尊重知识,谢谢:) Read more »
centos7创建systemctl Posted on 2017-01-09 | In linux | 参考文档 官方文档Creating a systemd service in Linux is much easier than writing init scripts. Here is an example to create an iperf3 service for systemd! ... Read more »
ss配置相关 Posted on 2017-01-09 | In gfw , 文档 | 原链接 You can use a configuration file instead of command line arguments. Create a config file /etc/shadowsocks.json. Example: { "server": ... Read more »
mongodb文档 Posted on 2017-01-09 | In mongodb , 文档 | mongodb快速入门 mongodb官方文档 转载请注明来源链接 http://just4fun.im/2017/01/09/mongodb-e6-96-87-e6-a1-a3/ 尊重知识,谢谢:) Read more »
Gentoo Posted on 2017-01-09 | In linux , 文档 | 当初在选是使用gentoo的时候还是arch的时候有说gentoo滚动升级效果效果好,而arch则存在过久未升级的情况下升级系统会崩溃。 升级gentoo gentoo portage 转载请注明来源链接 http://just4fun.im/2017/01/09/gentoo/ 尊重知识,谢谢: ... Read more »
windows下定点关机的实现 Posted on 2017-01-08 | In windows | 因为有点需求所以写的一小段算是批处理代码吧,标红位置用来指示是几点关机【24小时制】还是shell好看啊。。。 @ECHO OFFset /a start_h=”%time:~0,2%”set /a start_m=”%time:~3,2%”echo %start_h% %start_m%set / ... Read more »
vim大小写转化 Posted on 2017-01-07 | In vim | ~ 将光标下的字母改变大小写3~ 将光标位置开始的3个字母改变其大小写g~~ 改变当前行字母的大小写U 将可视模式下选择的字母全改成大写字母u 将可视模式下选择的字母全改成小写gUU 将当前行的字母改成 ... Read more »