- Linux免罪符始めました by SCO
http://slashdot.jp/articles/03/07/19/1328219.shtml?topic=17
- SCO readies new Linux licensing program
http://www.infoworld.com/article/03/07/18/HNscolicense_1.html
[
固定リンク|
Comments (View)
]
ftnk.jp -> ~fumi -> ChangeLog -> 2003-07 -> 2003-07-20
2003-07 / 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
- Linux免罪符始めました by SCO
http://slashdot.jp/articles/03/07/19/1328219.shtml?topic=17
- SCO readies new Linux licensing program
http://www.infoworld.com/article/03/07/18/HNscolicense_1.html
Ruby について Part 4
http://pc2.2ch.net/test/read.cgi/tech/1056944114/191-202 より
URI.decode を使う
require 'uri' $KCODE = 's' str = '\x95\x5c\x94\x5c' p URI.decode(str.gsub(/\\x/, '%'))
pack を使う
str = '\x95\x5c\x94\5c'
puts str.scan(/[0-9A-Fa-f]+/).collect{|x| x.hex}.pack('C*')
eval を使う
src = "\\x95\\x5c\\x94\\x5c" ; dst = eval("%(#{str})")