2020年1月1日 星期三

new year's resolution update

上一篇三年後來更新一下……
phone: 1080×2160
laptop: 1920×1080

vimrc

自己用的 .vimrc 備忘

set encoding=utf-8
set fileencodings=ucs-bom,utf-8,ucs-2,ucs-le,taiwan,japan,prc
set number
syntax on
map <F2> :up<Space>
map! <F2> <Esc>:up<Space>
map <F3> :x<CR>
map! <F3> <Esc>:x<CR>
map <F4> :conf q<CR>
map! <F4> <Esc>:conf q<CR>
map <F8> <C-W>w
map! <F8> <Esc><C-W>w

2017年1月2日 星期一

2016年3月24日 星期四

2013年3月25日 星期一

2009年7月28日 星期二

臺灣不是只有博客來一家網路書店,還有金石堂誠品三民及其他很多家。
怎麼很多人講到書都在那邊貼博客來的連結啊?
如果沒有加入博客來的AP策略聯盟的話,實在是不必免費替博客來打廣告了。
我貼書籍連結的時候,除了作者或出版社這本書的官方網頁(如果有的話)之外,就是 aNobiiFindbook 的書籍頁面。

2009年7月15日 星期三

用 cURL 發 twitter

在搜尋 linux twitter client 的時候
找到這個: Twitter Clients for Ubuntu Linux
這篇的第7項:
curl -u yourusername:yourpassword -d status="Your Message Here" http://twitter.com/statuses/update.xml

這個是測試的twit

2009年4月8日 星期三

cURL

嗯…… 記一下比較用得到的 option
-f/--fail Fail silently (no output at all) on HTTP errors
-g/--globoff Disable URL sequences and ranges using {} and []
--limit-rate <rate> Limit transfer speed to this rate
--max-filesize <bytes> Maximum file size to download
-o/--output <file> Write output to <file> instead of stdout
-#/--progress-bar Display transfer progress as a progress bar
-e/--referer Referer URL
-O/--remote-name Write output to a file named as the remote file
-R/--remote-time Set the remote file's time on the local output
-A/--user-agent <string> User-Agent to send to server


大概最常用的: curl -fRO <url>

cURL