`
文章列表
第一种是脚本执行了,但是报错:在crontab里调度运行,结果发现没有结果,查看/var/log/message 日志,发现crontab有执行,但是失败。 手动运行都是可以的,放在crontab里边发现就不能运行了。 处理方法:脚本中不要采用相对路径,全部改为绝对路径 第二种是编辑/var/spool/cron/user user为执行用户名,一般为root 如更改后不起效果,请重新加载cron: 处理方法: /etc/init.d/cront reload sudo /bin/systemctl start crond.service sudo /bin/systemctl resta ...
转自: http://www.cnblogs.com/wanpython/archive/2010/08/07/1794598.html 我有的时候写程序要用到当前时间,我就想用python去取当前的时间,虽然不是很难,但是老是忘记,用一次丢一次, 为了能够更好的记住,我今天特意写下python 当前时间这篇文章,如果你觉的对你有用的话,可以收藏下。 取得时间相关的信息的话,要用到python time模块,python time模块里面有很多非常好用的功能,你可以去官方 文档了解下,要取的当前时间的话,要取得当前时间的时间戳,时间戳好像是1970年到现在时间相隔的时间。 你可以试下下面的 ...
  notifyHost = ""   notifyPort =   conn = httplib.HTTPSConnection(notifyHost, notifyPort, timeout=50)   requestUrl = "/openapi?list=" + urllib.quote(content)   print requestUrl   try:     conn.request("GET", requestUrl)     resp = conn.getresponse()     pic_data = resp ...

grep 常用用法

计算行数: grep "type=1" /data/***.txt | wc -l iostat -kxt 5 top   q
yum install mysql yum install mysql-server yum install mysql-devel chgrp -R mysql /var/lib/mysql chmod -R 770 /var/lib/mysql service mysqld start mysql SET PASSWORD FOR 'root'@'localhost' = PASSWORD('secret_password'); 登陆: [root]:mysql -uroot -p Enter password:
第一步:在 /etc/yum.repos.d/ 目录下,建立名叫nginx.repo的软件源配置文件。         文件 nginx.repo 的内容是: [nginx] name=nginx repo baseurl=http://nginx.org/packages/centos/$releasever/$basearch/ gpgcheck=0 enabled=1 第二步:使用命令 yum install nginx ,按照提示即可安装完毕; 第三步:使用命令 /etc/init.d/nginx start  启动nginx服务; 第四步:测试,在浏 ...
python中对文件、文件夹的操作需要涉及到os模块和shutil模块。 创建文件: 1) os.mknod("test.txt")       创建空文件 2) open("test.txt",w)           直接打开一个文件,如果文件不存在则创建文件 创建目录: os.mkdir ...
use Archive::Zip qw( :ERROR_CODES :CONSTANTS ); my $aaa = "D:\\NCR_v2.2.2\\test"; my $zip = Archive::Zip->new(); #foreach $file (@files) { #   $zip->addFile("$aaa/$file", $bbb); #} # Add a directory my $dir_member = $zip->addDirectory( 'dirname/' );    # Add a file fro ...
第一种方式: mongo localhost:11111/test -u *** -p **** --quiet --eval "db.collections1.find({image_url: { $regex: '43.12'}}, {image_url: 1, id: 1}).sort({id: -1}).forEach(printjson);" > 1.txt 第二种方式: 先写个js文件myjsfile.js cursor = db.collections1.find({image_url: { $regex: '43.12'}}, {image_ur ...
ppm install File::Slurp  or cpan install File::Slurp http://bbs.chinaunix.net/forum.php?mod=viewthread&action=printable&tid=4069180
线程本地存储(Thread Local Storage, TLS)简单分析与使用 在多线程编程中, 同一个变量, 如果要让多个线程共享访问, 那么这个变量可以使用关键字volatile进行声明; 那么如果一个变量不想使多个线程共享访问, 那么该怎么办呢? 呵呵, 这个办法就是TLS, 线程本地存储. 它的使用非常之简单, 只要对变量的声明使用__declspec(thread)就OK了. 下面我来举一个例子, 结合注释, 相信大家马上就能知道其”奥秘”了. #include "stdafx.h" #include <stdio.h> __declspe ...
    最近在浏览某一网页,老是无缘无故在页面最后加入了广告,一开始是还以为为电信造的孽,也只能忍着,后来某一高手帮我找到了原因,原来是我的chrome中装了一个鼠标手势的插件 smooth gesture搞的鬼,于是果断的删除。以后再也不乱装这些流氓东西了。     安装软件需谨慎,另外补充一句, 我手机上的软件被我删除的差不多了,继续删除中。
http://docs.mongodb.org/manual/reference/command/getLastError/ getLastError¶ The getLastError command returns the error status of the last operation on the current connection. By default MongoDB does not provide a response to confirm the success or failure of a write operation, clients typically use ...

rubuy http

    博客分类:
  • Ruby
http://ruby-doc.org/stdlib-2.0/libdoc/net/http/rdoc/Net/HTTP.html
GetGlyphOutline 制作字模是汉化的一个基本能力吧,不过有很多好用的软件,比如Crystal Tile2,以至于我一直没高兴去研究。   搞字模大约这么两条路,一个是TextOut出来,然后一个点一个点读取。另一个就是调用GetGlyphOutline。   我这次是使用GetGlyphOutline这个函数,原型如下: DWORD GetGlyphOutline(     HDC hdc,   // handle of device context     UINT uChar,   // character to query     UINT uFormat, / ...
Global site tag (gtag.js) - Google Analytics