1. install linux
2. type "man perlintro" into the terminal
3. insert "#!/usr/bin/perl" into a empty textfile on 1st line and perlcode on 3rd line
4. ???
5. profit
the conviction of Sus and Alb is both amusing and inspirational!
Name:
Anonymous2013-08-31 17:17
I just got the limited edition Blu-ray collectors cut of Summer Wars.It came with a hanafuruda set using OZ characters,ehich was really neat but kind of useless since I don't play card games.The director's commentary disc was cool though.
Name:
Anonymous2013-08-31 18:48
In the end, you live in a monad transformer stack. At the bottom is IO. Above that, every major module (in the abstract sense, not the module-in-a-file sense) maps its necessary state into a layer in that stack. So if you have your database connection code hidden in a module, you write it all to be over a type MonadReader Connection m => ... -> m ... and then your database functions can always get their connection without functions from other modules having to be aware of its existence. You might end up with one layer carrying your database connection, another your configuration, a third your various semaphores and mvars for the resolution of parallelism and synchronization, another your log file handles, etc.