Programming

dotCloud first test

2011/05/23
By

% pip install -U dotcloud % dotcloud create wall Enter your api key (You can find it at http://www.dotcloud.com/account/settings): Created "wall" % dotcloud deploy -t python wall.ffstream Created "wall.ffstream". % dotcloud push wall.ffstream . # upload . ssh://dotcloud@uploader.dotcloud.com:1060/wall.ffstream # git Warning: Permanently added ‘:1060,:1060′ (RSA) to the list of known hosts. Counting objects: 17,...

Read more »

A Python Script to test Plurk OAuth API

2011/05/19
By

Plurk has released API 2. Instead of using their test console, I decided to write a command line console script…

Read more »

[python] 新手玩 virtualenv + pip + yolk

2011/04/04
By

Python 提供了 pip 可以安裝 python packages,也提供了 virtualenv 可以把 develop 環境獨立出來,所以就在我的 MBP 上試看看。

Read more »

[utf8] perl -C?

2010/04/29
By

以前程式碼遇上 utf-8 資料時總是比較麻煩,不是資料是 utf-8 或 big5 ,就是程式碼內含 big5 或 utf-8 字元。這些有了 use utf8; 後,都算比較好處理一點。

Read more »

Perl 5.12.0

2010/04/22
By

Perl 5.12.0 is available here.

Read more »

[Python] Natural Language Toolkit (NLTK) – Part I

2009/12/07
By

對於自然語言處理有興趣的人一定要碰的 Natural Language Toolkit (NLTK) 是用 Python 寫的….

Read more »

Python Modules Intro 20091123

2009/11/23
By

神奇的 PyMOTW 模組…

Read more »

google test 1.4.0 is buggy

2009/11/18
By

It raises lots of error about … testing::internal::AssertHelper::AssertHelper(testing::TestPartResultType, char const*, int, char const*)… More Info

Read more »

From UnitTest++ to GoogleTest

2009/06/25
By

We’ve decided to replace UnitTest++ with googletest

Read more »

Passing UTF-8 String from C# to Unmanaged C++ DLL

2009/02/05
By

我有個 DLL ,輪入 keystroke 可以傳出文字(不限英文中文)。今年寫了個應用程式,還可以把選出來的文字再傳回去算詞頻。

Read more »