Forgot your password?

typodupeerror

Comment: Re:no taxation (Score 1) 705

by trwww (#35803248) Attached to: Senator Wants to Tax Internet Shopping

When this happens, it is the civic responsibility of the person who feels underrepresented to get involved in politics and get constituents to vote for them.

If nobody votes for you, that is proof that your opinion is an extreme minority.

If you just sit on the couch and do nothing, you have no right to complain.

This is the way the U.S. government works.

Comment: Re:seriously (Score 1) 236

by trwww (#33768450) Attached to: 1,200 NASA Layoffs, Shuttle Fuel Tank Plant Shuts Down

> If the DoD budget was trimmed even by half (which is still too bloody much spending) and the monies redirected toward, infrastructure, education, health, technology research, etc.. Inside of a very few short years we'd be looking at realizing a Utopian society. I don't think anyone really understands just how bloody big their budget is relative to all other spending.

This is so true man. This is why I rarely comment on political discussion. Unless it is to talk about cutting defense spending, its pointless. Cut defense spending and... well... its pretty pointless pointing it out because no one seems to care.

It reminds me of burning the library in Alexandria a few millennia ago. What a waste of human effort.

Comment: Re:it's not hipness (Score 1) 220

by trwww (#33079140) Attached to: Perl 6, Early, With Rakudo Star

> Because this still works:

Sure. This is DWIW (Do What I Want). Why should the code to add a string and a number include a type conversion? You've used the + operator, so its obvious to everyone that you want to add. Why should the code have to be more verbose than that?

By your logic, this is better programming:

i = parseInt("25") + 10; # $i is 35

Thats better?

Comment: Re:Does anyone care? (Score 1) 220

by trwww (#33079108) Attached to: Perl 6, Early, With Rakudo Star

CPAN is overrated.

A customer came to me with an outlook express email database that needed parsed. 15 minutes later I had this stub working:

use Mail::Box::Dbx;
my $dbx = Mail::Box::Dbx->new(folder => 'c:/path/to/database.dbx');
foreach my $mid ( $dbx->messageIds ) {
my $message = $dbx->find($mid);
print $message->subject, "\n";
}

I looked around and no other language has anything like this.

A couple more shots of whiskey, women 'round here start looking good. [something about a 10 being a 4 after a six-pack? Ed.]

Working...