笔者是Windows的使用者,由于Coding的需要以及在Linux下开发的方便,所以开始使用Linux。当然笔者还是割舍不下Windows的,毕竟很多通讯工具等软件以及游戏在Linux下是没有发行的,所以笔者使用了虚拟机啊。下面给出简单的安装过程。1、下载虚拟机软件,笔者比较喜欢VMPlayer,...
分类:
系统相关 时间:
2014-07-22 22:56:33
阅读次数:
211
#!/usr/bin/env python# -*- coding: utf-8 -*- import randomimport string #第一种方法 seed = "1234567890abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ!...
分类:
编程语言 时间:
2014-07-16 19:15:09
阅读次数:
262
这里讲的是Firefly《暗黑世界》碎片合成的流程部分的代码,这个主要是消息解析的部分,好吧上代码,代码路径app/game/gatenodeapp/compound.py。#coding:utf8'''Created on 2013-3-21物品合成@author: lan (www.9miao....
分类:
其他好文 时间:
2014-07-16 18:30:40
阅读次数:
197
#coding=utf-8from sys import argvscript,first,second,third = argvprint "the script is=",scriptprint "the first is=",firstprint "the second is=",second...
分类:
编程语言 时间:
2014-07-16 17:39:23
阅读次数:
416
上头要求设置TCP备案检查,给了个WEBSERVICE接口。查了2天,才确认还是python比较好用,我这水平也就写个脚本把数据导出,过滤检索还是用的shell。写此文备忘。WEBSERVICE接口脚本如下:#!/usr/bin/python#coding:utf-8importcodecsimportsudsdefmain(file_name,out_file):url=..
分类:
编程语言 时间:
2014-07-16 16:39:51
阅读次数:
219
#coding:utf8try: import qrcodeexcept ImportError: qrcode = Noneclass MakeQr: def onUseQrcode(self, value): qr = qrcode.QRCode(version=1,...
分类:
编程语言 时间:
2014-07-16 15:07:18
阅读次数:
214
Python批量修改一个目录文件名#!/usr/bin/envpython
#-*-coding:utf-8-*-
importre
importos
importtime
#str.split(string)分割字符串
#‘连接符‘.join(list)将列表组成字符串
defchange_name(path):
globali
ifnotos.path.isdir(path)andnotos.path.isfile(path):
returnF..
分类:
编程语言 时间:
2014-07-15 11:05:00
阅读次数:
309
之前用Android自带的VideoView播放在线视频一直没问题的,今天突然碰到无法播放。
MediaPalyer返回的错误代码是-1004,API文档上写的是:Bitstream is not conforming to the related coding standard or file spec.
最后查明是因为我用了Mac下的Charles,然后没有开代理服务导致的。。。
进入系...
分类:
移动开发 时间:
2014-07-14 20:35:56
阅读次数:
369
错误信息: SyntaxError:Non-ASCIIcharacter'\xe4'infile...解决办法: 在文件第一行或第二行添加:#-*-coding:utf-8-*-参考:http://blog.csdn.net/chen861201/article/details/7706535
分类:
编程语言 时间:
2014-07-14 17:46:46
阅读次数:
239
#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