AC3Filter
http://ac3filter.sourceforge.net/XviD Binary
http://xvid.hopto.org/DivX 5.1
http://www.divx.com/divx/zsh 関連
各シェル比較表
http://www2u.biglobe.ne.jp/~hsaka/docs/shell.htmlIntroduction of the ZSH
http://www.gentei.org/~yuuji/rec/pc/intro-zsh.htmlzshのある暮らし
http://hiki.ex-machina.jp/zsh/zsh for the working researcher
http://cl.aist-nara.ac.jp/student/daiti-m/text/zsh-intro.htmlSpreading Zsh Project - Z shell(zsh) へ乗り換えよう
http://www.sol.cs.ritsumei.ac.jp/~sawaki/comp/zsh/tips for zsh -- zshの覚書
http://www.ayu.ics.keio.ac.jp/members/mukai/tips/zsh.htmlZsh ドキュメント和訳
http://dengaku.org/naoki/zsh/Reference
Sourceforge - Zshhttp://zsh.sourceforge.net/
東プレのキーボード `Realforce' シリーズにテンキーレスが登場
USB モデルも出るとか
Reference
ITMedia:東プレの“あのキーボード”がテンキーレスで登場http://www.itmedia.co.jp/news/0309/22/nj00_topre_new.html
via
On the Bound - 2003-09-23http://cibicc.org/m/20030923.html#p04
気になるスレッド
UNIX - おれは操作ミスでこんな被害を出したぞ!
http://pc.2ch.net/test/read.cgi/unix/1021905664/UNIX - 懺悔の部屋 (in UNIX板)
http://pc.2ch.net/test/read.cgi/unix/1017223155/UNIX - 【へぇ】トリビアの泉@UNIX板【へぇ】
http://pc.2ch.net/test/read.cgi/unix/1045381392/変数に値が設定されていなかったら値を設定する
問題例
$name が設定されていなかったら $name='nobodyさん';解答例1
$name ||= 'nobodyさん';
ただし $name = 0; のときも $name = 'nobodyさん'; となってしまう罠
解答例2
$name = 'nobodyさん' unless defined $name;
自分なら
if (!(defined $name)){
$name = 'nobodyさん';
}
結局 好みみたい.
参考
2ch - WebProg板 - Perl コーディング初心者質問コーナー Part28 - 326http://pc2.2ch.net/test/read.cgi/php/1063562491/326
2ch - WebProg板 - Perl コーディング初心者質問コーナー Part28 - 335
http://pc2.2ch.net/test/read.cgi/php/1063562491/335