Module # -------- --------------------- # 6.86 ExtUtils::MakeMaker # 1.23 File::Find # 3.40 File::Spec::Functions # 0.2304 File::Temp # 1.35 List::Util # 0.28 Module::Load # 1.001002 Test::More # 1.07 strict # 1.03 vars # 0.9906 version # 1.18 warnings t/00-report-prereqs.t ........... ok t/compile-time-file.t ........... ok t/compile-time.t ................ ok t/inherit-classfromclassfile.t .. ok t/inherit-classfromfile.t ....... ok t/inherit-pmc.t ................. ok t/inherit-returns-false.t ....... ok t/inherit.t ..................... ok t/version-check.t ............... ok t/pod-syntax .................... not ok ha ha ha sucker
=> 3); @hash{ qw( a c ) } ➜ (1, 3) %hash{ qw( a c ) } ➜ (a => 1, c => 3); @array = qw( a b c d ); %array[ 0, 2, 1 ] ➜ (0 => 'a', 2 => 'c', 1 => 'd' ); 5.20's Best Change??
turn off optimizer 0x008 save more stuff 0x010 keep sub definition info 0x020 single-step 0x040 use subroutine addrs 0x080 report "goto &sub" 0x100 better eval names 0x200 better sub names 0x400 source in @{"_<$file"}
turn off optimizer 0x008 save more stuff 0x010 keep sub definition info 0x020 single-step 0x040 use subroutine addrs 0x080 report "goto &sub" 0x100 better eval names 0x200 better sub names 0x400 source in @{"_<$file"}
turn off optimizer 0x008 save more stuff 0x010 keep sub definition info 0x020 single-step 0x040 use subroutine addrs 0x080 report "goto &sub" 0x100 better eval names 0x200 better sub names 0x400 source in @{"_<$file"}
LocalPort => 3030, MultiHomed => 1, ); while (1) { my $addr = $sock->recv(my $data, 1024); my (undef, $remote) = sockaddr_in($addr); my $ip_addr = inet_ntoa($remote_addr); ! ## log data and ip_addr to file }
while ($f--) { if (fork) { next; } else { require Dist::Zilla; sleep 30; exit; } } ! while (1) { my $pid = wait; last if $pid == -1; say "$pid exited"; }
while ($f--) { if (fork) { next; } else { require Dist::Zilla; sleep 30; exit; } } ! while (1) { my $pid = wait; last if $pid == -1; say "$pid exited"; }
= cherry-pick ff = merge --ff-only fx = commit -a --amend -C HEAD ix = diff --cached st = status -sb fap = fetch --all --prune wip = commit -a -m WIP git = !git
…and shared between your computers • …but still with per-host-specific stuff • …and split between shareable and private • …so you can share your config!
…and shared between your computers • …but still with per-host-specific stuff • …and split between shareable and private • …so you can share your config! • …and maybe do more pairing!
is the number of items that were 14 days old yesterday. The # number of items 15 days old today should be fewer. my %count; # stupid passing of $self is a temporary situation -- rjbs, 2013-11-04 my @bookmarks = Ywar::Instapaper->bookmark_list($self); my $old_14 = grep { $_->{time} < $^T - 14 * 86_400 } @bookmarks; my $old_15 = grep { $_->{time} < $^T - 15 * 86_400 } @bookmarks; my $last = $prev->{measured_value}; my %result; if ($old_15 < $last) { my $closed = $last - $old_15; @result{ qw(note met_goal) } = ("items read or deleted: $closed", 1); } $result{value} = $old_14; return \%result; }