- 浏览: 68943 次
- 性别:
- 来自: 杭州
最新评论
-
mlzboy:
博主,有没有im或是email的方式,想向您请教一下super ...
supervisor 管理后台进程
文章列表
http://stevelosh.com/blog/2009/01/deploying-site-fabric-and-mercurial/
http://www.saltycrane.com/blog/2009/10/notes-python-fabric-09b1/
1 mac上ipython 需要用 sudo easy_install -U ipython readline 来修正 中文显示问题
2 以下代码 ipython 终端中执行 和py文件直接执行 不一致:
u'中' == unicode('中', 'u8')
1 比较简单好用的 nginx + uwsgi
具体见这篇blog http://obmem.info/?p=703
要求: ubuntu10。04 +
2 用cherrypy
http://lincolnloop.com/blog/2008/mar/25/serving-django-cherrypy/
启动命令(后台):
./manage.py runcpserver host=0.0.0.0 port=1082 daemonize=True pidfile=crm.id
1 查看当前时区
cat /etc/timezone
2 重新设置时区
sudo dpkg-reconfigure tzdata
https://help.ubuntu.com/community/UbuntuTime
本文所记的插件是Validation
[url]
http://docs.jquery.com/Plugins/Validation#Validate_forms_like_you.27ve_never_been_validating_before.21[/url]
1
ord(s or unicode) 返回十进制 code point;
反函数 unichr chr
ord(unicode(str, 'u8'))
http://crazier9527.iteye.com/blog/411001
[url] http://docs.python.org/howto/unicode.html[url]
2 url 上的转义
原因:http://www.w3schools.com/TAGS/ref_urlencode.asp
import urllib
urllib.quote
反函数 unquote
3 html 中保留字符(eg: >< ...
bitbucket.com 最近提供免费的 不公开的代码 hosting 服务。所以试了下,准备作为私人代码库。
bitbucket.com采用 mercurial 版本管理工具。
mercurial教程
http://www.ibm.com/developerworks/cn/opensource/os-cn-mercurial/
在bitbucket.com开一个respo:
http://confluence.atlassian.com/display/BITBUCKET/Bitbucket+101
svn update 对应的git 操作
I use "git clone" to get the initial check out. After that I use "git pull"
inside the directory to update the check out, right?
Something like following, right?
git clone git://projects.reactivated.net/~dsd/libusb.git
cd libusb
git pull
For subversi ...
1 f.cleaned_data is dict
2 field可用widgetchoiceselect
摘自 http://book.douban.com/subject/3800093/
两步(存放path按default)
1 生成公匙
ssh-keygen -t rsa -C 'my key'
2 将公匙copy到server
ssh-copy-id -i .ssh/id_rsa.pub jay@server
3 如果是在macbook,没有ssh-copy-id这个命令,可以用
scp ~/.ssh/id_rsa.pub user@server:~/.ssh/authorized_keys
Keep in mind that will overwrite ~/.ssh/a ...
ssr.pl 是 http://www.gramene.org/db/markers/ssrtool 在线工具的local版本。
用于寻找DNA中的微卫星序列(perfect形式)
ubuntu下,使用方法如下:ssr.pl fasta格式文件
结果格式,从左到右,依次为:
gi,同一条序列的第几个ssr位点,motif的长度,motif,重复次数,起始位置,终点位置,序列长度.
squid tips
- 博客分类:
- 默认类别
1 检查squid运行状态
sudo squid -NCd1
2 让新设置生效,你可以关闭和重启squid,或者在squid运行时,重配置它。
重配置运行中的squid最好的方法是使用squid -k reconfigure命令。
3 NCSA密码认证
工具htpasswd
4 支持ssl
ubuntu上需要重新compile
http://www.d90.us/toolbox/2009/05/26/adding-ssl-support-to-squid-package-on-ubuntu/
https://wiki.ubuntu.com/PackagingGuide/Complete
h ...
在服务器上装 ubuntu server9.10(10.04) 碰到:
Gave up waiting for root device. Common problems:
-Boot args(cat /proc/cmdline)
-check rootdelay=(did the system wait long enough)
-check root=(did the system wait for the right device)
-Missing modules (cat /proc/modules;ls / ...
1
AccessRecord.objects.filter(r=r).filter(acessed_at__day='10')
2
问 null=True 和 blank=True 的区别?
答:
1、null 针对 db storage;blank 针对 admin site
2、null 用于非string类field,不建议用在string类field。
更为详细的请看 http://docs.djangoproject.com/en/dev/ref/models/fields/
3
django settings.py里的变量必须大写 要么访问不了