显示标签为“tips”的博文。显示所有博文
显示标签为“tips”的博文。显示所有博文

星期三, 三月 11, 2009

File::basename使用时需要注意的问题

File::basename使用时,取上传文件的文件名时,当文件名中含有下列字符时,不能正确的解析。

SHIFT-JISコードに 5C が含まれる漢字 [―](815C) [ソ](835C) [Ы](845C) [Ⅸ](875C) [噂](895C) [浬](8A5C) [欺](8B5C) [圭](8C5C) [構](8D5C) [蚕](8E5C) [十](8F5C) [申](905C) [曾](915C) [箪](925C) [貼](935C) [能](945C) [表](955C) [暴](965C) [予](975C) [禄](985C) [兔](995C) [喀](9A5C) [媾](9B5C) [彌](9C5C) [拿](9D5C) [杤](9E5C) [歃](9F5C) [濬](E05C) [畚](E15C) [秉](E25C) [綵](E35C) [臀](E45C) [藹](E55C) [觸](E65C) [軆](E75C) [鐔](E85C) [饅](E95C) [鷭](EA5C) [偆](ED5C) [砡](EE5C)

原因:正则表达式对于SHIFT-JIS码的文字,不能很好的解析。

http://q.hatena.ne.jp/1202474647

星期二, 一月 22, 2008

perl tips

from Perl Online Document

split /PATTERN/,EXPR,LIMIT
split /PATTERN/,EXPR
split /PATTERN/
split

Splits the string EXPR into a list of strings and returns that list. By default, empty leading fields are preserved, and empty trailing ones are deleted. (If all fields are empty, they are considered to be trailing.)

If LIMIT is specified and positive, it represents the maximum number of fields the EXPR will be split into, though the actual number of fields returned depends on the number of times PATTERN matches within EXPR. If LIMIT is unspecified or zero, trailing null fields are stripped (which potential users of pop would do well to remember). If LIMIT is negative, it is treated as if an arbitrarily large LIMIT had been specified. Note that splitting an EXPR that evaluates to the empty string always returns the empty list, regardless of the LIMIT specified.


my $hoge = 'a,b,c,,';
my @foo = split /,/, $hoge; # @foo = ('a', 'b', 'c')
my @bar = split /,/, $hoge, -1; # @bar = ('a', 'b', 'c', '', '')

星期四, 十二月 20, 2007

How to Turn Off beep

笔记本上的beep声音确实够恐怖,把我郁闷的,关键我还是在办公室,想起来就尴尬。

①Windowsでビープ音を止める
デバイスマネージャで「表示 > 非表示のデバイスの表示」としてから「プラグアンドプレイでないドライバ」の「Beepのプロパティ」を停止して無効にすれば止まる。
一時的に止めるだけでよいなら、コマンドプロンプトでnet stop beepとすればよい。
特定の場合にのみ警告音を殺したい場合は、無音のWAVEファイルを用意して割り当てるというアイデアも見かけた。


②VMwareでビープ音を止める
VMware設定ファイルに
mks.noBeep = "TRUE"
と追加してVMwareを再起動すれば止まる。

設定ファイル:
windowsの場合:C:\Documents and Settings\foxee\Application Data\VMware\preferences.ini
linuxの場合:  ~/.vmware/preferences

http://www.debuntu.org/how-to-turn-off-virtual-console-beep

如果还是不能禁止的话,可以把那句放在另一个设置文件里面
C:\Documents and Settings\All Users\Application Data\VMware\VMware Workstation\config.ini