- 浏览: 237433 次
- 性别:
- 来自: 北京
最新评论
-
hnraysir:
必须登录评论下,谢谢。by elesos.com
分库和分表 -
化蝶自在飞:
命运使然.前生来世都注定了的.
贫穷是罪恶之源 -
Kidwind:
出现这样的错误ViewDoesNotExist at /con ...
django的jsCalendar的widget -
hanyh:
我的项目比较小,就直接写在views.py里面了。你出现的是什 ...
django的jsCalendar的widget -
Kidwind:
请问JsCalendarWidget应该放在哪个位置,我的是放 ...
django的jsCalendar的widget
文章列表
HASH_OU_NUMS-->函数
function hash_use($username)
{
$mask = pow(2, 32) - 1;
$micId = 5381;
$micChar = 0;
for ($i = 0; $i < strlen($username); $i++)
{
$micId += ($micId << 5) + ord($username[$i]);
if($micId < 0)
{
$micId += pow(2, 32);
}
$micI ...
- 2009-05-26 14:52
- 浏览 990
- 评论(0)
#!/usr/bin/env python
'''
NAME: progressBar.py
AUTHOR: Augix
DATE: 2009-05-20
FUNCTION: this module prints a progress bar to show how much time you have to wait until the program finish.
It simply reads a percentage to update the progress bar.
USAGE: from progre ...
- 2009-05-26 14:00
- 浏览 843
- 评论(0)
引用
os:ubuntu 32bit
cpu:model name : Intel(R) Pentium(R) Dual CPU E2160 @ 1.80GHz
memory:512M
普通7200 rpm:sata硬盘
BEGIN;
/**
*分组表
*order为了自定义排序
*create_time简化时间排序
*/
CREATE TABLE `contactgroup` (
`id` integer AUTO_INCREMENT NOT NULL PRIMARY KEY,
`email` varchar(64) NOT NULL,
`name` var ...
- 2009-05-25 16:27
- 浏览 1248
- 评论(0)
contactgroup_contact
import string
rstr = ''.join(random.choice(string.letters) for i in xrange(len))
import os
random_string = os.urandom(string_length)
#urandom()
# Return a string of n random bytes suitable for cryptographic use.
import random
junk_len = 1024
junk = (("%%0 ...
- 2009-05-22 15:17
- 浏览 1605
- 评论(0)
把django doc本地化
sphinx最新版本会有问题,使用库里面的就OK了。
#!/bin/sh
apt-get install subversion python-sphinx make
mkdir django && cd django
svn co http://code.djangoproject.com/svn/django/trunk/docs
cd docs
make html
Build finished. The HTML pages are in _build/html.
- 2009-05-22 10:59
- 浏览 1005
- 评论(0)
读配置文件
import ConfigParser
config = ConfigParser.RawConfigParser()
config.read(pconf)
combine = config.getboolean('default', 'combine')
filter = config.getboolean('default', 'filter')
distinct = config.getboolean('default', 'distinct')
src = config.get('default', ...
- 2009-05-18 15:41
- 浏览 925
- 评论(0)
引用
<?php
function foo($bar){
$bar='111111111';
}
$str='2222222222222';
foo($str);
echo $str; //output is 2222222222222
$str2='xxxxxxxxxxxx详详细细2222222222222';
foo(&$str2);
echo $str2; //output is 111111111
//即使函数的参数定义不是&$arg,引用传过去也能修改原值
function foo(&$bar){
$bar='111111111';
}
$s ...
- 2009-05-06 10:58
- 浏览 907
- 评论(0)
from datetime import datetime
import time
from datetime import timedelta
"""
timestamp:111111111
对应:
GMT Dates
Tuesday 10th July 1973 @ 0:11:51am GMT
10/7/1973, 0:11:51am(d/m/y)
7/10/1973, 0:11:51am(m/d/y)
1973-07-10T00:11:51+00:00(ISO 8601)
Tue, 10 Jul 1973 00:11:51 +0 ...
- 2009-05-06 09:48
- 浏览 2036
- 评论(0)
http://127.0.0.1:631/printers/
Description: hp
Location: http://10.218.98.2:9100
Printer Driver: HP LaserJet Series PCL 4/5, 1.3
Printer State: idle, accepting jobs, published.
Device URI: socket://10.218.98.2:9100
1,没想到随便用了个驱动也能用啊:)
2,没想到是直接使用socket,不是ipp协议
3,web见面能提供的信息是那么的多:)
- 2009-05-05 15:03
- 浏览 895
- 评论(0)
关注的不是语言,不是库
- 博客分类:
- 学习
关注的不是语言,不是库
关注的是参与者和规则产生器
关注的是大的环境下的业务前景
关注的是自身内在素质、为人
关注的是人
- 2009-04-28 17:45
- 浏览 843
- 评论(0)
PHP参考手册中的openlog函数说明如下:
openlog — Open connection to system logger
Description
bool openlog ( string $ident, int $option, int $facility )
openlog() opens a connection to the system logger for a program.
......
Return Values
Returns TRUE on success or FALSE on failure.
手册里面对openlog这样介绍,让人误认为如果" ...
前些天wxpython做得简单代码,目标是:
比如说c:\photos\....下面有很多头像图片,这些图片在上面或下面有一个圆点,呈现图片一段时间,判断圆点在上面还是下面,按1,2进行反应,记录反应时间。
注:是帮朋友进行孤独症儿童注意力分配实验写的,后面因为在处理*.gif图片的时候响应速度不够好,改为用delphi7写了。
程序涉及:
wxpython
事件响应
图片缩放和GIF动画操作
# -*- coding: cp936 -*-
import time
import wx,os
import wx.animate
from operator import or_
...
因为要测试一程序在重负载下的表现,所以需要简单的模拟负载:
一,CPU负载模拟
dd if=/dev/zero bs=128M | gzip | gzip-d | gzip | gzip -d > /dev/null
多开几个,就不行搞不死你的CPU
二,网络负载模拟
使用nc
server.sh
#!/bin/sh
while [ 1 ]
do
echo "server is running"
cat /home/hanyh/win.iso | nc -l -p 5000 -q 0 -w 1
done
client.sh
...
用来测试你网站各项性能的免费在线工具
http://www.blogjava.net/tufanshu/archive/2009/02/18/255290.html
HTTP:
http://www.yuanma.org/data/2008/0827/article_3143.htm
- 2009-03-30 09:55
- 浏览 760
- 评论(0)
How to generate a shared object: (Dynamically linked object library file.) Note that this is a two step process.
1. Create object code
2. Create library
3. Optional: create default version using a symbolic link.
gcc -Wall -L/home/hanyh/workspace/cplusplus/linux prog.c -lctest -o prog
expo ...
- 2009-02-24 17:02
- 浏览 882
- 评论(0)