发布时间:2015-06-05 15:36:52
#! /usr/bin/env perluse DateTime;my $dt_01 = DateTime->new(year=> 2015, month=> 5, day =>3);my $dt_02 = DateTime->new(year=> 2015, month=> 5, day =>1);my $du = $dt_01->subtract_datetime_absolute($dt_02);print $du->seconds();print "\n";......【阅读全文】
发布时间:2015-06-05 08:42:37
SystemiptablesntpsshsshfsnmaptcpdumpXxorglightdmmate(mate-desktop-environment)EditorVim/gVimC/C++gccg++clangcmakeboos.........【阅读全文】
发布时间:2015-06-04 21:01:44
deb http://mirrors.aliyun.com/debian jessie main non-free contribdeb http://mirrors.aliyun.com/debian jessie-updates main non-free contribdeb http://mirrors.aliyun.com/debian-security jessie/updates main non-free contrib注:马云是个好同志,感谢马云搞了这么个开源镜像。......【阅读全文】
发布时间:2015-05-18 15:56:25
如果发现:what(): remote_endpoint: Transport endpoint is not connected那么试试:try{ // Do your job here. }catch(boost::system::system_error &ec) { // Show your warning message or do something else .........【阅读全文】
发布时间:2015-04-15 15:55:36
using namespace std;using namespace boost::posix_time;ptime current_date_time = second_clock::local_time();string current_date_time_string = to_iso_extended_string(current_date_time.date()) + " " + to_simple_string(current_date_time.time_of_day());.........【阅读全文】