rtl8192se new driver

http://www.realtek.com/


感謝螃蟹公司,還是有繼續把 Linux 的支援改好一點,希望這一版,可以提昇這一個晶片組在 Linux 下的穩定性,可以讓這一隻螃蟹活跳跳,在不同的 AP 下可以表現一致一點,不過這一版的沒有 Linux 的更新

http://www.realtek.com/downloads/downloadsView.aspx?Langid=1&PNid=21&PFid=48&Level=5&Conn=4&DownTypeID=3&GetDown=false&Downloads=true


ps: 很瞎的是,這一次的更新沒有 Linux 的驅動程式

Chrome 真快



Debian 上面直接裝,跟著更新,用一段時間,真的是快上癢了

體驗一下 javascript V8 engine 的飛快,這一個 V8 引擎的開發者真的強到一個不行

怎麼可以和其他的 VM 速度差這麼多,什麼時候 Python VM 也來換一下,不過光是,一些 c 或是 c++

的套件,就可以整死人了


將這一行,加到 /etc/apt/source.list

deb http://dl.google.com/linux/deb/ stable main


衝吧

aptitude install google-chrome-beta



還有 google-chrome-unstable google-chrome-stable

pip install from github

Example:

pip install -e git+http://github.com/jacobian/djangobench.git#egg=djangobench



PS: remember to use with virtualenv and virtualenvwrapper

vim autotag.vim




http://www.vim.org/scripts/script.php?script_id=1343

place autotag.vim under you ~/.vim/plugin/

touch a file tags under the working folder, or the filename you set up in .vimrc
via

let g:autotagTagsFile=“your_tags_file_name”


modify your code,

try

# move the cursor at the function want to lookup

Ctrl + ]

# back to edit
Ctrl + t



Good luck

舊版 ubuntu 裝 daemontools



舊版的 ubuntu 裝 daemontools 會有的問題,原本一直參考的網頁爛了,自己作一下筆記


sudo apt-get install daemontools daemontools-run


建立這一個檔案,讓他可以開機執行
/etc/event.d/svscanboot ,檔案內容


start on runlevel 2
start on runlevel 3
start on runlevel 4
start on runlevel 5

stop on runlevel 0
stop on runlevel 1
stop on runlevel 6

respawn
exec /usr/bin/svscanboot


執行一下

sudo initctl start svscanboot


其他在 /etc/service/ 下的設定,照舊即可

這是一個,簡單的 hudson 的 run file

#!/usr/bin/env bash
cd /home/hudson
su -s /bin/sh hudson -c “exec envuidgid hudson java -jar /home/hudson/hudson.war”



ps: 當然,很多時候,會用 Debian,用舊版的 ubuntu 當然也是因為在團隊工作的環境,不是你要用那一版就用那一版,沒有原因,沒有為什麼,大頭會決定

PyAMF django test client



有用 PyAMF 來和 flash 坐資料傳輸,在寫 Django 的 test case,還要另外把 dev server 跑起來,才可以跑測試,這是一個,Unittest 的 test client 直接可以像 Django django.test.client 裡的 Client 直接對應 url 的方式來跑

http://hg.io/madssj/pyamf-django-testclient/src/tip/client.py


如果,不用 unitetest 用簡潔的 nose 寫 test case 可以把他所有的 self.logger 的程式標成註解


from django.test.client import Client

client = PyAMFClient(Client(), ‘/your_gateway_url/’)
service = client.getService(‘your_service’)


也可以直接跑 test case

好電影就要看完電影片尾曲

現在大概找不到電影院,會真正的把電影放到完,一下子,就把畫片和音樂咔掉,希望人群趕快離開,好讓他們繼續下一場的前置作業

現在漸漸喜歡,自己放片子,看 ppstream 或是 pptv 或是其他來源的影片,好電影,就是要慢慢地看,看完,聽聽片尾曲,看看整部電影成員的努力,也可以讓有時候入戲太深的情緒,可以細細品味,漸漸地由導演要訴說的故事中,再回到現實

ORM level cache 的選擇

在寫 Django 的應用程式常常會自己硬作一堆 cache 或是 timeout 的機制,有時候,可以看看別人怎麼作

這兩的專案的 code 的等級都不錯,可以由程式學到很多觀念

Johny-cache

http://bitbucket.org/jmoiron/johnny-cache

http://packages.python.org/johnny-cache/

Django Cache Machine

http://github.com/jbalogh/django-cache-machine

http://jbalogh.me/projects/cache-machine/