浙江省高等学校教师教育理论培训

微信搜索“毛凌志岗前心得”小程序

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理
上一页 1 ··· 581 582 583 584 585 586 587 588 589 ··· 630 下一页

2010年9月6日

摘要: http://www.lockice.com/blog/2010/03/nginx-gzip-static-commpress.htmlnginx gzip 静态文件压缩nginx gzip 静态文件压缩能很大程度上提高网站的访问速度,但是文件的压缩会占用很大的内存,如果将网站的静态的文件提前用gzip压缩后再配置nginx的rewrite规则来转向到压缩后的文件将会对网站的性能有很大的提高。思路... 阅读全文
posted @ 2010-09-06 09:49 lexus 阅读(1449) 评论(0) 推荐(0)

摘要: Nginx 自从 0.7.53 版本之后新增了一些命令行参数,请看:[oschina@liubc oschina]$ /opt/ngx/sbin/nginx -hnginx version: nginx/0.8.45Usage: nginx [-?hvVt] [-s signal] [-c filename] [-p prefix] [-g directives]Options: -?,-h : ... 阅读全文
posted @ 2010-09-06 09:46 lexus 阅读(1086) 评论(0) 推荐(0)

摘要: Ubuntu支持GBK,GB2312编码2009-09-19 11:48修改/var/lib/locales/supported.d/local文件,在文件中添加zh_CN.GBK GBKzh_CN.GB2312 GB2312sudo dpkg-reconfigure --force locales然后在输出的结果中会出现zh_CN.GB2312 donezh_CN.GBK done1)为gli... 阅读全文
posted @ 2010-09-06 08:40 lexus 阅读(785) 评论(0) 推荐(0)

摘要: error_page 404 500 502 503 504 /500.html; # redirect server error pages to the static page /50x.html # #error_page 500 502 503 504 /50x.html; location = /500.html { root /home/mlzboy/my/idea2/search... 阅读全文
posted @ 2010-09-06 07:53 lexus 阅读(319) 评论(0) 推荐(0)

摘要: http://motian.org/post/ubuntu-10-04-install-552.html 阅读全文
posted @ 2010-09-06 00:10 lexus 阅读(311) 评论(0) 推荐(0)

2010年9月5日

摘要: http://www.google.com/realtime?tab=mY 阅读全文
posted @ 2010-09-05 22:47 lexus 阅读(137) 评论(0) 推荐(0)

摘要: http://seohelper.cn/tools/topcompetitortool 阅读全文
posted @ 2010-09-05 19:47 lexus 阅读(128) 评论(0) 推荐(0)

摘要: url中含有中文 baidu VS google的处理方式! (1 篇回复)http://220.181.85.144/dataout/bbpress/topic.php?id=17good article 阅读全文
posted @ 2010-09-05 19:33 lexus 阅读(353) 评论(0) 推荐(0)

摘要: http://www.cnblogs.com/zhengyun_ustc/archive/2010/05/18/1738340.html 阅读全文
posted @ 2010-09-05 18:57 lexus 阅读(128) 评论(0) 推荐(0)

摘要: edc9378e 阅读全文
posted @ 2010-09-05 18:47 lexus 阅读(115) 评论(0) 推荐(0)

摘要: http://www.renrenso.com/ 阅读全文
posted @ 2010-09-05 17:43 lexus 阅读(196) 评论(0) 推荐(0)

摘要: 大多数Google Analytics用户都知道,GA是通过Javascript标记来进行流量监控,是无法跟踪到搜索引擎爬虫记录的。唯一能够跟踪和分析爬虫的状况的是 分析Web日志。有两个法国朋友发现了一个解决办法,可以在Google Analytics里监控到爬虫动态,爬虫什么时候访问了网站、爬行了什么网页等等。以上摘之前一直希望统计功能具有分析爬虫的功能,结果没有,现在想想也是,js没办法... 阅读全文
posted @ 2010-09-05 17:40 lexus 阅读(462) 评论(0) 推荐(0)

摘要: orcopy2 is also often useful, it preserves the original modification and access info (mtime and atime) in the file metadata. 49 down vote acceptedshutil has many methods you can use. One of which is:C... 阅读全文
posted @ 2010-09-05 17:10 lexus 阅读(691) 评论(0) 推荐(0)

摘要: datetime.strftime("%Y-%m-%d") 阅读全文
posted @ 2010-09-05 16:53 lexus 阅读(249) 评论(0) 推荐(0)

摘要: c#中是否有javascript中的jQuery类库?http://www.cnblogs.com/itmuse/archive/2010/05/27/1745040.html 阅读全文
posted @ 2010-09-05 00:04 lexus 阅读(183) 评论(0) 推荐(0)

2010年9月4日

摘要: 耕者着意耕耘,自有收获Ubuntu 修改IP地址1、ubuntu系统修改IP地址:sudo gedit /etc/network/interfacesauto eth0iface eth0 inet staticaddress 219.218.122.168netmask 255.255.255.0gateway 219.218.122.2542、ubuntu系统修改DNS: sudo gedit... 阅读全文
posted @ 2010-09-04 23:56 lexus 阅读(8379) 评论(0) 推荐(0)

摘要: 强大的 sqlalchemyhttp://www.soidc.net/articles/1215485053489/20081007/1215945554351_1.htmlmany-to-many 关系都是通过增加一个中间表来实现,映射到对象后,这个中间表就不需要我们再操心了,会隐式地进行处理。不过对于多个实体两两之间多对多关系,往往另外再增加一个关联对象会更方便。这样的例子其实也不少,比如:u... 阅读全文
posted @ 2010-09-04 23:21 lexus 阅读(192) 评论(0) 推荐(0)

摘要: 一、CSS控制ul缩进间距的方法: <styletype="text/css">ul{margin-left:-10px;}</style><ul><li>中国站长天空www.zzsky.cn</li></ul>二、CSS去掉li点的三种方法:方法一: <ul><listyle="list-style-typ... 阅读全文
posted @ 2010-09-04 22:19 lexus 阅读(8078) 评论(0) 推荐(0)

摘要: http://www.elharo.com/blog/software-development/web-development/2005/12/08/post-vs-put/chinse version 易懂http://www.cnblogs.com/stalwart/archive/2010/05/15/1735971.htmlvery good good articlehttp://www.... 阅读全文
posted @ 2010-09-04 20:06 lexus 阅读(723) 评论(0) 推荐(0)

摘要: http://code.google.com/p/pylibrarian/source/browse/bottle - wiki 阅读全文
posted @ 2010-09-04 19:59 lexus 阅读(138) 评论(0) 推荐(0)

上一页 1 ··· 581 582 583 584 585 586 587 588 589 ··· 630 下一页