舌戰
邵家臻大戰鄧小樺
由於長期在抵抗中成長,並潛心於弄清楚自己的限度與目標,一個自我離散而且非常causal的人如我,竟爾被視為擁有很肯定的自我。這個說法的誤會之處及它確實說中的地方,看來可能永
Why I don't file bug reports very often
I just finished filing Fedora Core Bugzilla #217080 . Betweendoing research to see if this was already a solved or known problem,gathering all the information, and actually writing everything down,it probably took me around three hours. (And I already have a Red HatBugzilla account and know how to use Bugzilla, or it would have takenlonger.)
This isn't particularly atypical; writing even decent bug reports issimply a lot of work, much of it tedious and/or
2+2=5
2+2=5 (The Lukewarm)
聽歌吧~
生命要進入小說
Why ssh validates host keys using the exact name you supplied
One of the little things that ssh does is that it checks and maintainshost keys using exactly and only the name you used on the command line;it doesn't canonicalize the name. (Well, not much; these days it willalso try the IP address that the name resolves to.)
The problem around here is that the names of machines can be specifiedin all sorts of different ways, because of domain search paths; oftenwe have bare name, bare name plus the subdomain, and then two
創作100問
在 森月靈 那邊看到的,我覺得我非答不可。
2. 你的筆名是?
寂然
3. 將自己當成小說中的人物,介紹一下自己吧。
阿力、阿傑、芊芊、素素,都是一個普通人。
4. 你的職業是?
文字苦力。
5. 請說一下你的打工經歷
A small script: bsearch-nums
Sometimes I write little scripts partly in order toplay around with a command I haven't used before. Such is the case withtoday's script, which I have unimaginatively called bsearch-nums . Hereit is:
#!/bin/sh# usage: bsearch-nums START ENDlo=$1; hi=$2while [ $lo -lt $hi ]; do mid=`echo $lo $hi +2/p | dc` echo "try: $mid"