摘要:
youtube 下载视频脚本:得到下载列表:download_list 使用youtube-dl下载 附 youtube-dl 安装: 阅读全文
摘要:
clusvcadm -e IPService -m appserver1 阅读全文
摘要:
http://sebastiandahlgren.se/2014/06/27/running-a-method-as-a-background-thread-in-python/ 阅读全文
摘要:
看了比较多的blog基本都是这个架构: supervisor app1 | app2 | .... | appn | nginx | redis 统一都交给supervisor来管理。总觉得哪里不对: 1) nginx作为supervisor的子进程,会有问题,它貌似会不断的去执行启动(导致大量的错 阅读全文
摘要:
看了下文档,比较多。http://www.supervisord.org/ 抱着试试又不会怀孕的心态,trying,碰了几鼻子灰,记录如下, 方便大家 1. 安装 2. 注意看安装日志,有一个东东:echo_supervisord_conf 执行会发现,这个用于生成标准的配置文件(实际上,我直接略过 阅读全文
摘要:
会失败,报告ascii码不能解码0x.... 原因是md5会自动将被加密的数据转成字节码,如果没有详细制定编码,则可能采用了其他编码(比如ascii), 因此要制定编码进行转码,如下: ref:http://bytes.com/topic/python/answers/842255-md5-hash 阅读全文
摘要:
首先,文档不给力,不吐槽了。 遇到的坑如下: 1. mch_id和appid没有关联关 系 这个没有花太久,参考了csdn某君的建议,直接邮件给相关技术团队(wepayTS@tencent.com)。 告知,其实对的mch_id是多少。 (帐号管理比较烂还是为了安全原因,总之无从查询这个对应关系,必 阅读全文
摘要:
发现.git/config 中新增了一行: ref: http://blog.sina.com.cn/s/blog_630bf12f01011r83.html 阅读全文
摘要:
http://www.webupd8.org/2010/10/how-to-set-proxy-for-terminal-quick.html 即 取消代理: 阅读全文
摘要:
首先,这个是坑 http://www.tecmint.com/install-google-chrome-on-redhat-centos-fedora-linux/ 安装会报错,按照错误找到以下资源,验证ok:https://www.centos.org/forums/viewtopic.php? 阅读全文
摘要:
sudo plink -D 127.0.0.1:8888 -l root -P 443 -pw xxx 104.xxx.xxx.xxx 阅读全文
摘要:
在这里找到合适的rpm包:http://pkgs.repoforge.org/rpmforge-release/ 下载 安装 即可。 这样就可一直接使用rpmforge的repo进行快捷安装rpm包了。比如centos安装putty 阅读全文
摘要:
http://dev.mysql.com/doc/refman/5.5/en/replication-howto.html http://blog.csdn.net/mycwq/article/details/17136001 http://stackoverflow.com/questions/7 阅读全文
摘要:
https://apscheduler.readthedocs.org/en/v2.1.2/cronschedule.html dow注意,第一天是周一,不是周日。以下为以上参数的有效表达: 例子: 阅读全文
摘要:
http://www.connorgarvey.com/blog/?p=264 阅读全文
摘要:
http://stackoverflow.com/questions/3513773/change-mysql-default-character-set-to-utf-8-in-my-cnfhttps://dev.mysql.com/doc/refman/5.0/en/charset-configuration.html编辑 /etc/my.conf文件,增加以下内容 [client] def... 阅读全文
摘要:
默认情况下,没有颜色。 https://www.centos.org/docs/2/rhl-gsg-en-7.2/ls-color.html git也默认没有颜色,破解如下: https://git-scm.com/book/tr/v2/Customizing-Git-Git-Configurati 阅读全文
摘要:
http://www.ruanyifeng.com/blog/2012/07/git.html https://www.digitalocean.com/community/tutorials/how-to-use-git-branches 阅读全文
摘要:
在通过脚本向mysql写入大量测试数据时,出现这个问题,记录下: https://dev.mysql.com/doc/refman/5.5/en/packet-too-large.html 修改/etc/my.cnf 文件,修改如下: 在[mysqld]下面添加: 重启mysqld服务即可。 阅读全文
摘要:
使用peewee的事务时,碰到一个郁闷的问题,事务似乎无效! 于是简化了下模型,写了简单的测试代码,发现问题,如题所示。 找到解答: https://github.com/etianen/django-reversion/issues/362 https://dev.mysql.com/doc/re 阅读全文