发布时间:2015-01-22 10:43:22
新建一个环境变量:MWLOCALE_TRANSLATED然后设置成:OFF2014以后增加了中文界面,但是我感觉还不如英文的界面呢。......【阅读全文】
发布时间:2015-01-09 16:21:34
#!/usr/bin/perl -wuse strict;use threads;sub say_hello{ my $index = 0; my $tmp = 0; foreach $index (1 .. 100) { printf("Hello thread! @_.\n"); .........【阅读全文】
发布时间:2015-01-09 16:18:59
#!/usr/bin/perl -wuse strict;use LWP::Simple;use Time::HiRes qw(gettimeofday tv_interval);my $url = 'http://127.0.0.1/';foreach my $index (1 .. 10000){ my $t_01 = [gettimeofday]; my $content = get $url; my $t_02 .........【阅读全文】
发布时间:2015-01-09 15:54:15
#!/usr/bin/perl -wuse strict;use Getopt::Long;my $file_name = "";my $verbose = 1;GetOptions( "file_name=s" => \$file_name, "verbose" => \$verbose,);print $file_name;print "\n";print $verbose;print "\n";.........【阅读全文】
发布时间:2015-01-04 13:51:12
http://www.mathworks.com/matlabcentral/fileexchange/23393--another--json-parser......【阅读全文】