自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(23)
  • 收藏
  • 关注

推荐一个rails做的英语学习网站

推荐一个rails实现的英语学习网站: - [url=http://www.master.fm]www.master.fm[/url]后台使用rails2和rails3。rails3 比之前的版本都强很多.

2011-06-30 14:03:52 134

原创 Ruby on rails 实现的站点

网址 http://www.master.fm 欢迎大家多提意见 . .  

2011-06-16 21:25:46 141

原创 Tor on Ubuntu Lucid Lynx

Since Lucid Lynx is still in beta, tor isn’t packaged up at torproject.org yet but there is a PPA!https://launchpad.net/~sevenmachines/+archive/tor$ sudo add-apt-repository ppa:sevenmachines/t...

2010-08-04 14:17:56 171

原创 redis 键值存取效率测试i

require "rubygems"require "redis"require "json"redis = Redis.new(:host => "localhost", :port => 6379)module AutoJ def auto_j h = {} instance_variables.each do |e| o...

2010-07-16 14:26:26 363

解决了一个wsgi非常棘手的问题

Hi,It is needed by the COM infrastructure. When you don't use threads thisfunction call is needed too, but it is done by Python automatically.In a new thread before any COM call you have to call...

2009-09-11 01:45:18 218

原创 python 编码转换

http://www.pythonclub.org/python-basic/codec

2009-09-10 13:22:16 209

原创 Python字符串的encode与decode

首先要搞清楚,字符串在Python内部的表示是unicode编码.因此,在做编码转换时,通常需要以unicode作为中间编码,即先将其他编码的字符串解码(decode)成unicode,再从unicode编码(encode)成另一种编码。decode的作用是将其他编码的字符串转换成unicode编码,如str1.decode('gb2312'),表示将gb2312编码的字符...

2009-09-10 10:09:25 278

原创 django + MySQL + flup + Nginx 的一些相关配置文件的备份

备份是一种安全策略很大的一个问题是编码问题,全部utf-81.首先是/etc/mysql/my.cnf: ## The MySQL database server configuration file.## You can copy this to one of:# - "/etc/mysql/my.cnf" to set global options,# - ...

2009-09-09 15:22:27 146

原创 VNC 许可密匙

5D7L8-ZQXSA-2L5D4-4UFB4-PWDLA

2009-09-09 09:56:03 306

原创 linux下面的时间设置

以前一直用date设置,这次参考网上资料,终于整了个全的。Linux时钟分为系统时钟(System Clock)和硬件(Real Time Clock,简称RTC)时钟。系统时钟是指当前Linux Kernel中的时钟,而硬件时钟则是主板上由电池供电的时钟,这个硬件时钟可以在BIOS中进行设置。当Linux启动时,硬件时钟会去读取系统时钟的设置,然后系统时钟就会独立于硬件运作。Li...

2009-09-09 09:01:05 231

原创 http://wwwsearch.sourceforge.net/ClientCookie/

http://wwwsearch.sourceforge.net/ClientCookie/

2009-09-06 21:23:46 1807

原创 一句话建立SMTP测试服务器

python -m smtpd -n -c DebuggingServer 0.0.0.0:25from:http://initiative.yo2.cn/archives/636736

2009-09-06 17:33:59 432

MyDownloadProgressBar.as

http://www.pixelbox.net/demos/downloadProgressBar/MyDownloadProgressBar.aspackage com.example.preloaders{ import flash.display.Loader; import flash.display.Sprite; import flash.even...

2009-08-27 23:04:59 159

Flex 中 如何使 progressbar 垂直

flex 中的一些细节真是很难 全部掌握 。 记下来 可能以后用的到 。设置 routation 属性 为 90 即可 。

2009-08-12 14:05:08 127

原创 restful_authentication 中 单元测试问题

The tests installed by restful_authentication encounter undefined-method errors, starting with "undefined method fixtures'" for the unit tests. The problem seems to be that the tests derive only from ...

2009-07-16 10:11:05 182

Rails2.3中非常实用的新特点

rails2.3越来越实用了。 特别是 在处理 模型关系 的表单嵌套上,非常方便实用的特性http://ryandaigle.com/articles/2009/2/1/what-s-new-in-edge-rails-nested-attributes...

2009-07-15 17:20:18 103

多站点web应用平台搭建

Document and test By zhang qing hua,xanderzhang@live.com qq group:4733369说明多站点是高并发情况下,负载均衡的一种实现方案。通过将静态文件和动态请求, 各种资源的有效分离,实现均衡的目的 。从而达到提升网站性能的目的。实现方案: DNS 服务器负责网内的域管理。 当请求到来时...

2009-07-10 10:03:19 114

Flex 中的字符串 与 整数转换

直接贴代码如下:

2009-06-22 10:10:31 106

rspec的tutorial

http://www.elctech.com/tutorials/rspec-tutorial

2009-06-08 23:01:02 89

原创 Flex 中的Dictionary使用

http://blog.csdn.net/songhuanren/archive/2007/12/25/1966643.aspx建议多用Dictionary , 最好是取代object (object 不会被编辑器检测) ,下面是网上的关于DictionaryAS3中的Dictionary类(flash.utils.Dictionary)是一个新的AS类。Dictionary类和Obj...

2009-06-08 11:39:53 277

rails开源工程

http://www.opensourcerails.com/

2009-06-07 10:30:52 103

重新整理一下 restful-authentication的安装

有些东西忘的太快了 。 mysql 不知道安装过多少次 ,最终有些命令总是丢三落四的 。 最终 一个文档 把它全部终结 。首先 安装 状态机 state_machine安装地址:http://github.com/pluginaweek/state_machine/tree/master这个状态机 已经被 aasm 取代 ,建议安装后者 。 我这里 需求简单 ,仅仅是记录用...

2009-06-06 16:27:10 131

转载 开始一个新的环境

从今天开始尝试着在CSDN上按个新家  。希望大家能相互关照  。 欢迎加我给好友 ,我们一起学习和进步 。 也欢迎访问我的站点 快拾网 , http://www.kuaishi.net 

2008-06-01 09:30:00 197

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除