JSON(JavaScript Object Notation) 是一种轻量级的数据交换格式。易于人阅读和编写。同时也易于机器解析和生成。
JSON有两种结构:
第一种就是“名称/值”对的集合。在python中相当于字典类型,在其他语言中,它被理解为对象(object),纪录(record),结构(struct),字典(dictionary),哈希表(hash table),有键列表(keye...
分类:
编程语言 时间:
2015-05-12 23:08:36
阅读次数:
145
http://www.sitepoint.com/speed-wordpress/http://www.sparringmind.com/speed-up-wordpress/http://www.htmlgoodies.com/beyond/cms/10-ways-to-speed-up-your...
分类:
其他好文 时间:
2015-05-11 23:22:28
阅读次数:
137
报错:UnicodeDecodeError: ‘ascii‘ codec can‘t decode byte 0xb1 in position 34: ordinal not in range(128) 解决方式: 在python安装目录下Python26\Lib\site-packages新建一个文件,文件名为:sitecustomize...
https://leetcode.com/problems/decode-ways/A message containing letters fromA-Zis being encoded to numbers using the following mapping:'A' -> 1'B' -> 2...
分类:
其他好文 时间:
2015-05-09 01:10:52
阅读次数:
103
Although using the object constructor or an object literal are convenient ways to create single objects, there is an obvious downside: creating mult.....
分类:
其他好文 时间:
2015-05-08 21:47:10
阅读次数:
123
问题描述:
【测试步骤】1、桌面同时按住power与音量-截图
【测试结果】截图无声音
【预期结果】不应该无声音
这是一个google common问题,问题原因如下:
decode does not complete when first capture.
solution: for audio sound pool case, skip EOS delay time to fast...
分类:
移动开发 时间:
2015-05-08 13:05:52
阅读次数:
231
OverviewDesign patterns are ways to reuse design solutions that other software developers have created for common and recurring problems. The design p...
分类:
编程语言 时间:
2015-05-07 21:48:03
阅读次数:
178
问题描述:一个在Django框架下使用Python编写的定时更新项目,在一个Linux系统下运行没有问题,在另外一台Linux系统下测试,报如下错误:ascii codec can't decode byte 0xe8 in position 0:ordinal not in range(128)原...
分类:
其他好文 时间:
2015-05-07 16:28:05
阅读次数:
131
You are climbing a stair case. It takes n steps to reach to the top.
Each time you can either climb 1 or 2 steps. In how many distinct ways can you climb to the top?
解题思路:
动态规划,类似于斐波那契数列。
X X X....
分类:
其他好文 时间:
2015-05-07 14:28:31
阅读次数:
103
首先创建两个队列,queue队列存储要爬的网址,out_queue存储的是要取内容的网页源代码。
创建线程类,ThreadUrl的作用是从给定的网址上抓取网页内容,并将内容存储在out_queue队列上,而DatamineThread的作用是从网页源代码中通过正则来取想要的内容。
这个代码在window下运行的话就需要将.decode('utf8')那句话前面的#删除就ok了,编码方式需要改一...
分类:
编程语言 时间:
2015-05-07 10:35:30
阅读次数:
209