`
hanyh
  • 浏览: 237433 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论
文章列表

DJP Hash

    博客分类:
  • php
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 ...

进度条class

#!/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 ...
引用 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 ...
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 ...
把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.
读配置文件 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', ...

php引用

    博客分类:
  • php
引用 <?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 ...

python时间操作

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 ...

cups printer

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见面能提供的信息是那么的多:)
关注的不是语言,不是库 关注的是参与者和规则产生器 关注的是大的环境下的业务前景 关注的是自身内在素质、为人 关注的是人
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
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 ...
Global site tag (gtag.js) - Google Analytics