아직 블로그를 개설하지 않으셨습니다.친구 신청을 하시려면 먼저 블로그를 개설해 주세요.
지금 개설 하시겠습니까?
친구가 되시면 친구의 새글 및 활동에 대한 알림을 받아보실 수 있습니다.
gamza-net님에게 친구신청을 하시겠습니까?
친구 신청을 했습니다.상대가 수락하면 친구가 됩니다.
친구 신청을 실패했습니다. 잠시 후 다시 시도해 주세요.
친구 신청 가능 수를 초과했습니다.
echo 1 > /proc/sys/vm/drop_caches
FC /B [비교할 파일명 1] [비교할 파일명 2]
[ruby-function] def checkSyntax( script ); catch(:x) { eval("throw :x;"+ script ); }; return true; rescue Exception => e; return false; end; [ruby-expression] begin catch(:x) { eval("throw :x;"+ script ); };true; rescue Exception => e; false; end [C] // ruby 1.8.5 extern "C" void *rb_compile_cstr (const char*, const char*, int, int); bool checkSyntax( const char* script ..
#!/usr/local/bin/perl -w # perl recursive_rename.pl dirname findstring0 replacestring0 findstring1 replacestring1 ... # example> perl recursive_rename.pl gmaza/test MES_ NX_ 1998 2013 recursiveRename($ARGV[0]); # recursiveRename dirname findstring0 replacestring0 findstring1 replacestring1 ... sub recursiveRename { my $dir = shift; my $file ; my $oldfile; my $newfile; local..
class RandomNumberGenerator { public: RandomNumberGenerator( unsigned int seed=123456789 ) : randomSeed(seed) { } void setSeed( unsigned int seed ) { randomSeed = seed; } unsigned int get( void ) { randomSeed = MULTIPLIER * (randomSeed % Q) - R * (randomSeed / Q); return randomSeed; } private: enum { MODULUS = 2147483647 // DON'T CHANGE THIS VALUE ,MULTIPLIER = 48271 // DON'T ..