Line 合併 whoscall 並開放專業版功能
Posted on Tue 07 January 2014 in note • Tagged with line, whoscall, apps
Posted on Tue 07 January 2014 in note • Tagged with line, whoscall, apps
Posted on Fri 25 October 2013 in note • Tagged with git, gitlab, rvm, ruby
Gitlab 安裝時若採用 rvm 的 ruby 而不是安裝在 system 上,在 push 的時候會被抱怨找不到 ruby 或是執行到系統的 ruby。
最簡單的解決方式:將 user …
Posted on Wed 14 August 2013 in note • Tagged with python, django
Django 的 settings.py
中要設定相關的 template, media 路徑都需要絕對路行。但是往往我們需要相對路徑來符合實際需求。
只要在 settings.py
加入簡單 …
svn 要回復已 commit 的修改很簡單。直接 merge backward diff 就可以了。
svn merge -r n:n-1 ^/trunk
參考 stackoverflow: How do I return to an older version of our code in Subversion? 與 SVN redbook
Posted on Tue 13 August 2013 in note • Tagged with python, pyenv
Posted on Tue 14 May 2013 in note • Tagged with redmine, ruby, sysadmin
最近要把 Redmine 從 1.1.0 升級到最新的 2.3.1。附帶將資料庫從 MySQL 換成 PostgreSQL。跑去了 serverfault 問這個應該怎麼做比較安全。配合一些工 …
Posted on Thu 28 March 2013 in note • Tagged with putty, windows
PuTTY 的 ssh 連線可以把 host key cache 起來。
HKEY_CURRENT_USER\Software\SimonTatham\PuTTY\SshHostKeys
上面這個就是 host key 存的地方。找到相對應的機碼就可以刪掉了。
Posted on Fri 08 March 2013 in note • Tagged with debian, squeeze, python
要配合 vitrualenv 有幾個重點:
Posted on Fri 08 March 2013 in note • Tagged with centos, debian, squeeze, chroot, wheezy
Posted on Wed 13 February 2013 in note • Tagged with mysql, utf8, utf8mb4, unicode
因為 debian 預設還是 latin1 所以找了一下如何設定。有一種設定在 5.5.x(不確定哪一版開始) 之後會讓 mysqld 開不起來。
[mysqld]
default-character-set = utf8
上面這 …