#coding=gbk'''Created on 2014-5-7'''import os.pathinputPath = './input.txt'outPath = './out.txt'bufferSize = 10inputFile = open(inputPath, 'rb')outFil...
分类:
编程语言 时间:
2014-07-18 20:34:41
阅读次数:
246
1.休眠函数import timetime.sleep(n)n可以是整数或者小数,单位是秒2.打开文件函数open('n','m',k)n是文件路径,如果只有文件名,则是py程序所在文件夹m是打开赋予的权限k是缓冲,0表示不用缓冲,其他数字表示缓冲数量r默认模式,文本模式读rb 二进制文件w或wt ...
分类:
编程语言 时间:
2014-07-17 18:10:58
阅读次数:
249
win7安装ruby开发环境:
1 安装 rubyinstaller-2.0.0-p481.exe
1 选择安装目录:(如:D:\server\Ruby200)
2 安装过程中: 需要勾选所有选项(安装插件、执行执行rb扩展的文件)
验证:cmd 中 ruby -v 显示版本号则说明正常
2 rubygems-2.3.0.zip...
用python语言获得图片的Base64编码。#!/usr/bin/env python# -*- coding: utf-8 -*-# www.jbxue.comimport os, base64icon = open('ya.png','rb')iconData = icon.read()ico...
分类:
编程语言 时间:
2014-07-15 08:49:08
阅读次数:
321
#coding=utf-8import osimport httplibimport socketdictlist ={};def ReadHost(): hosts = []; obn = open('d:/sss.txt', 'rb'); for line in obn: ...
分类:
其他好文 时间:
2014-07-14 16:01:28
阅读次数:
212
登录某台服务器的mysql时候总报错:mysql2/client.rb:58:in `connect': Access denied for user 'root'@'localhost' (using password: YES) (Mysql2::Error)解决方法: 在windows 下的解...
分类:
数据库 时间:
2014-07-11 21:04:14
阅读次数:
267
daniel@daniel-mint ~/msf/metasploit-framework/tools $ ruby pattern_create.rb 2000Aa0Aa1Aa2Aa3Aa4Aa5Aa6Aa7Aa8Aa9Ab0Ab1Ab2Ab3Ab4Ab5Ab6Ab7Ab8Ab9Ac0Ac1Ac2...
分类:
其他好文 时间:
2014-07-11 12:41:00
阅读次数:
1179
pyPdf库 (http://pybrary.net/pyPdf/) ,操作起来相当直接易懂,把代码贴在这儿,做个记录。1frompyPdfimportPdfFileWriter,PdfFileReader23pdf=PdfFileReader(file('original.pdf','rb'))4...
分类:
编程语言 时间:
2014-07-05 11:19:02
阅读次数:
286
#!/usr/bin/envpython
#-*-coding:utf8-*-
importsmtplib
fromemail.mime.textimportMIMEText
textfile=‘sendmail.html‘
withopen(textfile,‘rb‘)asf:
msg=MIMEText(fp.read(),‘html‘,‘utf8‘)
msg.set_charset(‘utf8‘)
me=‘xxx@163.com‘
you=‘xxxx@qq.com‘
msg[‘Subject‘]=..
分类:
编程语言 时间:
2014-07-04 06:41:33
阅读次数:
325
ruby on rails创建的页面访问非常慢
用rvm安装的ruby1.9.3
解决:cd ~/.rvm/rubies/ruby-1.9.3-p547/lib/ruby/1.9.1/webrick
vim config.rb
将 :DoNotReverseLookup 改为true
rails s 重启项目...
分类:
其他好文 时间:
2014-07-03 15:52:46
阅读次数:
149