Joined July 2014
·
Posted to
An elegant Perl quick sort with inspiration from Haskell
over 1 year
ago
A similar self explanatory implentation in Perl:
sub sort_ {
@_ and return (
sort_ (grep { $_ < $[0] } @),
grep ({ $_ == $[0] } @),
sort_ (grep { $_ > $[0] } @)
);
();
}
Posted to
The best todo list app for any developer
over 1 year
ago
My personal favorite todo list manager still 't'.
http://stevelosh.com/projects/t/
Achievements
7 Karma
0 Total ProTip Views
Python
Would you expect anything less? Have at least one original repo where Python is the dominant language
If you need a bit more than a simple TODO list, I highly recommend Watson for inline issue/todo handling. It's able to post issues to GitHub/Bitbucket/GitLab/Asana, it has colorized output and other neat features :)
http://goosecode.com/watson/