A piggy bank of commands, fixes, succinct reviews, some mini articles and technical opinions from a (mostly) Perl developer.

Jump to

Quick reference

Showing posts with label fast. Show all posts
Showing posts with label fast. Show all posts

Install perl really fast

Fastest way to install perl:

perlbrew install -j 5 --notest perl-5.16.3

Only takes about 2 mins.

Thanks perlbrew.

Simplest easiest quickest web server script

cd ~
python -m SimpleHTTPServer 8080

(source)