與老弟討論最近 連續兩宗 Wii 脫手飛爆 mon 的事故。
我:玩 Bowling 至少沒有像網球那樣有激烈的揮拍,動作應該不大才對? 弟:但重點是,玩 Bowling 是要放手的… 我:係噃…
與老弟討論最近 連續兩宗 Wii 脫手飛爆 mon 的事故。
我:玩 Bowling 至少沒有像網球那樣有激烈的揮拍,動作應該不大才對? 弟:但重點是,玩 Bowling 是要放手的… 我:係噃…
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
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
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"