Forgot your password?

typodupeerror

Comment: Re:The argument is miscast. (Score 4, Insightful) 807

by MadMartigan2001 (#38567832) Attached to: Why Richard Stallman Was Right All Along

Ron Paul is a joke and yes he probably would keep to the constitutional limits, the problem is that he would more or less abolish not just the bad aspects, but the good ones and would in all likelihood shrink the government far more than what is required to bring things back into control.

Translation: Yes, I believe in the constitution of the united states and I will follow its principles unless there is something I want from the government tit that it does not authorise. Then, I will quickly ignore the constitution and ridicule it as out of touch. Because I KNOW BETTER DAMN IT!

Comment: Re:Yet Another (Score 4, Informative) 132

by MadMartigan2001 (#37748602) Attached to: Mojolicious 2.0: Modern Perl For the Web
Mojolicious is a complete HTTP 1.1 stack. No mod_perl required. It has its own built in webserver, hypnotoad which can be used in production. You can install Mojolicous with a single curl command

sudo sh -c "curl -L cpanmin.us | perl - Mojolicious"

And three lines can make a complete "hello world" application....

use Mojolicious::Lite;
get '/' => {text => 'Hello World!'};
app->start;

Part of what make Mojolicous so powerful is Perl's syntax and expressiveness. I know it's hip to beat up on Perl these days, but perl is still way ahead of most languages in its ability to be expressive. The author of Mojolicous is a really good programmer and insanely picky about well structured code, consistency and test driven development. Hence, the framework is very easy to use and understand. This framework is definitely worth a look.

Silicon Valley billionaire funding creation of art->

Submitted by MadMartigan2001
MadMartigan2001 writes "Pay Pal founder and early Facebook investor Peter Thiel has given $1.25 million to an initiative to create floating libertarian countries in international waters. Thiel has been a big backer of the Seasteading Institute, which seeks to build sovereign nations on oil rig-like platforms to occupy waters beyond the reach of lat-of-the-sea treaties."
Link to Original Source

Comment: Re:If only Americans had heard of parks. (Score 5, Interesting) 514

by MadMartigan2001 (#37007376) Attached to: The Mathematics of Lawn Mowing
It's called peace and quite. Some crazy Americans believe that having enough space around you so that you cannot hear or see your neighbours is a good thing. Then, when YOU are ready to interact with people you simply go to some public space and interact. Just because some Americans don't want to live like rats in a city does not make them crazy. Some people don't mind the screaming kid next door, or the barking dog down the street but some do. Also, it's not a question of how much resources each person uses, it's a question of how many people are using them. No amount of conservation will offset unrestrained population growth.

"It's a summons." "What's a summons?" "It means summon's in trouble." -- Rocky and Bullwinkle

Working...