正则表达式的入门学习

12月 27, 2012

一、正则表达式简介 正则表达式(Regular expression,简写为Regexes)是一种用来操作和检 […]

Read the full article →

Python开源爬虫框架:Scrapy架构分析

12月 20, 2012

所谓网络爬虫,就是一个在网上到处或定向抓取数据的程序,当然,这种说法不够专业,更专业的描述就是,抓取特定网站网 […]

Read the full article →

Python: import 导入库文件错误

11月 15, 2012

运行python总是出现如下错误: File “/usr/local/lib/python2.7/urllib […]

Read the full article →

Python:no encoding declared 错误

11月 14, 2012

使用Python编译的时候出现如下错误: SyntaxError: Non-ASCII character & […]

Read the full article →

QPS、PV和需要部署机器数量计算公式

10月 12, 2012

QPS每秒查询率(Query Per Second) 每秒查询率QPS是对一个特定的查询服务器在规定时间内所处 […]

Read the full article →

Nginx配置规则示例一

9月 22, 2012

server {     listen 80;     server_name www.magentonote […]

Read the full article →

Backbone.js 0.9.2 源码解析

9月 15, 2012

Backbone.js 英文最新版本及其注释: https://github.com/jashkenas/ba […]

Read the full article →

使用inline-block实现自适应等宽布局

9月 12, 2012

自适应宽度布局思路:使得一个元素宽度固定,另外一个元素宽度自适应来填充父元素的宽度 .outer { font […]

Read the full article →

等分布局的常见问题

9月 12, 2012

横向等分布局是一个很常见的布局,按照常规思路都是使用百分比解决,比如使用三个div,每个div设置宽度为33. […]

Read the full article →

Nginx 配置 返回字符串

9月 11, 2012

返回字符串 nginx配置如下: server { server_name www.magentonotes. […]

Read the full article →