- 浏览: 159779 次
- 性别:
- 来自: 北京
最新评论
-
Sasoritattoo:
GFS.fs.remove(name)新版本不支持这个接口了, ...
Python 分布式文件系统 Mongodb GridFS -
itdazhu:
嘿嘿。柳哥想不到这么细腻
我目前的创业心得 -
fx999:
听起来真的不错,尤其是文档化方面比ROR好多了,才发布就有两本 ...
构建于Rails之上的Hobo 1.0 -
huaywang11:
想创业没有好的项目。。。。
我目前的创业心得 -
mimicom:
没看懂........
Python 分布式文件系统 Mongodb GridFS
文章列表
使用例子:
>>> from django.http import *
>>> request = HttpRequest()
>>> request.__doc__
>>> help(request)
>>> request.META
29: {}
>>> request.is_ajax()
30: False
>>> request.GET
31: {}
>>> request.FILES
32: {}
以下是reque ...
Django framework 首页 http://www.djangoproject.com/The Django framework
介绍
Object-relational mapper
Define your data models entirely in Python. You get a rich, dynamic database-access API for free — but you can still write SQL if needed.
Automatic admin interface
Save yourself the ...
详细代码见附件
"""Unit test for odbchelper.py
This program is part of "Dive Into Python", a free Python book for
experienced programmers. Visit http://diveintopython.org/ for the
latest version.
"""
#加载单元测试模块
import unittest
#加载 你的编写的模块
import odbchelper
...
该博文涵盖了如下内容:
1. WSDL
2. SOAPpy
3.面向对象封装方法
#encoding=utf-8
"""
Search Google from the command line
url : http://pywebsvcs.sourceforge.net/
Install http://ncu.dl.sourceforge.net/project/pywebsvcs/SOAP.py/SOAPpy%200.11.0/SOAPpy-0.11.0.tar.gz
author : edison & dive in ...
该博文涵盖了如下内容:
1.正则表达式 re
2.url库 urllib
3.debug 方法
4.面向对象封装方法
#encoding=utf-8
'''
python learn regular express
url : http://docs.python.org/library/re.html
parse html url : http://www.boddie.org.uk/python/HTML.html
author : liuzheng
'''
import re
import urllib
#分析javaeye blog 频道
class ...
该段代码涵盖了如下内容:
1. 类的定义,类继承
2. 类和实例的属性定义
3. 类和实例的方法定义
4. 类的可见性定义 private public protected
5. rss lib学习
'''
python learn parse rss
url : http://wiki.python.org/moin/RssLibraries
Install feedparser
url : http://code.google.com/p/feedparser/
dowload install file
python setup install
''' ...
ITS(Issue Tracking System)
通过搜索,知道有以下 ITS :
Bugzilla : 基于 Perl。
Gemini : 非开源,基于 .Net,免费版可供5人使用, SharpDevelop 就是用的他。
JIRA : 基于 Java,重量级。
Mantis : 基于 PHP,轻量级。
Trac : 基于 Python。
安装 建立trac.sh
#安装 Trac
#!/bin/bash
##
#trac 安装
#安装手册 http://trac.edgewall.org/wiki/TracInstall
##
##install ...
require "rubygems"
##
#1.平衡点问题
# 平衡点:比如int[] numbers = {1,3,5,7,8,25,4,20}; 25前面的总和为24,25后面的总和也是24,25这个点就是平衡点;假如一个数组中的元素,其前面的部分等于后面的部分,那么这个点的位序就是平 ...
使用html 的新特性绘制的小丑鱼,的确很丑哦。
之前使用canvas做过复杂的应用,性能还不错 :)
小丑鱼图片:
<canvas> element 介绍
<canvas id="tutorial" width="150" height="150"></canvas>
<canvas id="stockGraph" width="150" height="150">
current stock ...
socket 之 ftp 应用与学习
require 'net/ftp'
begin
ftp = Net::FTP.new()
ftp.connect("localhost", 221)
ftp.login("******", "******")
#1.Download from server
server_files = ftp.chdir('/')
#显示a开头的文件和文件夹
server_files = ftp.list('a*')
puts server_files
...
##
#delegate 方法介绍,用delegate使对象更灵活
class TickSeller
def sell
return 'Here is a ticket'
end
end
#
class NoTickSeller
def sell
"Sorry-come back tomorrow"
end
end
class TicketOffice < SimpleDelegator
##
#程序初始化
def initialize
@seller = TickSelle ...
看了一下关于prototype的文章,但是,太书面化了,不易理解,我将prototype还原成类对象,和大家分享一下,如果不对,欢迎拍砖!
///原型对象
public class prototype
{
//attribute
public object constructor;
//init
public prototype(constructor)
{
self.constructor = constructor;
}
//调用 prototype
public object prototype()
{
return t ...
以下是ruby 使用pack进行密文解释
当然,这个密文是为学习pack而编写,解密有惊喜。
pack代码参考
["abc"].pack("a") => "a"
["abc"].pack("a*") => "abc"
["abc"].pack("a4") => "abc\0"
提示:是一种只有ASCII码出现的编码类型。
bW9jLjA1bHQud3d3OnB0dGg6c3Nlc ...
可以根据自己的需求自己改写:)
运行 bash mysql_backup.sh
#!/bin/bash
#This is a ShellScript For Auto DB Backup
#Powered by liuzheng
#系统变量定义
DBName=Bulletin_production
DBUser=root
DBPasswd=
BackupPath=/home/worker/mysql_backup/
NewFile="$BackupPath"db$(date +%y%m%d).tar.gz
DumpFile="$B ...
这个是通过抓取javaeye上的blog来学习rss。
我使用的是Simple-RSS来抓取。
Simple-RSS介绍:
Simple RSS is a simple, flexible, extensible, and liberal RSS and Atom reader for Ruby
gem install simple-rss
代码如下:
require 'rubygems'
require 'simple-rss' #gem install simple-rss
require 'open-uri'
require 'net/http'
##
#常量定义
...