in reply to Ranking the Saints by XP Efficiency

++ Isn't there a place to gather these? I already have at least two related posts:

Update: If you don't want to install Number::Format and DateTime::Format::Strptime, you can use Time::Piece (in core since 5.10) and sprintf:

use Time::Piece; # ... $created = 'Time::Piece'->strptime($created, '%Y-%m-%d %R')->epoch +; # ... xp => sprintf('%d', $data->{$monk}->{xp}), level => $data->{$monk}->{level}, age => sprintf('%d', $data->{$monk}->{age}), by_age => sprintf('%.4f', $data->{$monk}->{by_age}), posts => sprintf('%d', $data->{$monk}->{posts}), by_posts => sprintf('%.4f', $data->{$monk}->{by_posts}), # ...
($q=q:Sq=~/;[c](.)(.)/;chr(-||-|5+lengthSq)`"S|oS2"`map{chr |+ord }map{substrSq`S_+|`|}3E|-|`7**2-3:)=~y+S|`+$1,++print+eval$q,q,a,

Replies are listed 'Best First'.
Re^2: Ranking the Saints by XP Efficiency
by Discipulus (Canon) on Jan 14, 2016 at 10:17 UTC
    thanks choroba, i hope the OP is updated with your patch because that DateTime::Format::Strptime wants a newer version of Params::Validate that does not install in my strawberry perls.

    L*
    There are no rules, there are no thumbs..
    Reinvent the wheel, then learn The Wheel; may be one day you reinvent one of THE WHEELS.