摘要: logcat会出现无法输出log信息的情况,改正方式如下:(绿色部分基本就解决问题了,注意要在模拟器启动后修改) 1. Logcat没有显示log 在window, show view, other.., android中调出device. 如果device有显示device信息,那么选中这个device,再回到Logcat就可以看到log了。 如果没有device,只能拔掉数据线再连... 阅读全文
posted @ 2013-04-19 11:35 no13bus 阅读(252) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2013-04-12 09:47 no13bus 阅读(8) 评论(0) 推荐(0) 编辑
摘要: 具体的安装说明在C:\Program Files\Autodesk\Maya2013\devkit\pluginwizard里面的text文件里面有说明,需要注意的一点就是MayaPluginWizard.vsz这个文件里面的路径要设置正确,不然再用vs2010创建插件的时候会创建不成功,窗口会一直弹。 文件中的内容由VSWIZARD 7.0 Wizard=VsWizard.VsWizard... 阅读全文
posted @ 2013-04-05 17:05 no13bus 阅读(266) 评论(0) 推荐(0) 编辑
摘要: 首先要确定一个问题,任何的编码转化都是要先将字串decode为unicode 然后再encode为你想要的编码 注意这个encode的参数不能是unicode 原因很简单,你总不能讲unicode再次转化为unicode吧 首先在ide eclipse里面 文件本身都是有文件格式的 windows下面默认是anci 也就是gbk 文件在开头的时候可以写上文件的代码的编码#coding: ... 阅读全文
posted @ 2013-03-15 17:04 no13bus 阅读(685) 评论(0) 推荐(0) 编辑
摘要: >>> class counter:... count = 0 ... def __init__(self):... self.__class__.count += 1 ... >>> counter<class __main__.counter at 010EAECC>>>> counter.count ... 阅读全文
posted @ 2013-03-14 20:23 no13bus 阅读(256) 评论(0) 推荐(0) 编辑
摘要: pydev debugger: starting ******************** Tactic Installation ******************** Verifying the database is installed. The default is no password if you have followed the instructions to... 阅读全文
posted @ 2013-03-14 11:44 no13bus 阅读(797) 评论(5) 推荐(0) 编辑
摘要: http://tiffanylam2010.blog.163.com/blog/static/17078035120116250553238/ython以目录来组织模块, 就是所谓的包. 用包的一大好处: 可以解决名字空间冲突的问题, 即文件重名问题. 下面主要说3点: 1. 如何使一个目录变成包,如何import 目录下放一个__init__.py文件(内容可以为空), import包内模块的时候使用"."分割, 比如import Apackage.Amodule 2. __init__.py的__all__变量 __all__指定的是指此包被import * 的时候, 阅读全文
posted @ 2013-03-14 00:04 no13bus 阅读(6697) 评论(0) 推荐(1) 编辑
摘要: "HTTP/1.1 302 Found Cache-Control: private, no-cache="Set-Cookie Content-Type: text/html; charset=utf-8 Location: http://www.cnblogs.com/ Server: Microsoft-IIS/7.5 X-AspNet-Version: 4.... 阅读全文
posted @ 2013-02-25 09:18 no13bus 阅读(275) 评论(0) 推荐(0) 编辑
摘要: aaaaaa 阅读全文
posted @ 2013-02-25 08:43 no13bus 阅读(92) 评论(0) 推荐(0) 编辑
摘要: 下面要列出2段内容,一个是目前做的工作,一个是之后要继续进行的工作.(以后完成一部分工作就将后者放到前者内容里面去更新) 1.目前进行的工作: 其实模拟自动登录就是用httpwatch软件进行抓包,,找到你想要的页面,分析post get请求,然后用程序进行模拟就好了,难点就是这个分析抓包的内容, 你想抓取什么,你的抓取信息是通过提交哪个页面的请求的来的,有的时候,得到的结果需要跟当前的网页... 阅读全文
posted @ 2013-02-20 13:31 no13bus 阅读(1430) 评论(0) 推荐(0) 编辑