09/23/06

Sometimes you just get luckly…

Decided to finally make the jump to HDTV. Lots of reasons really (quality up, prices lower, etc). Did all my research, and narrowed it down to the Sony KDS-55A2000 55″ SXRD rear projection set.

Did a lot of price shopping:

On Amazon: $2,500
On Crutchfield: $3,000
At Magnolia: $2,700
On Best Buy’s website: $3,000
At the Best Buy down the street from my house: $2,000 <--- Woah! Turns out the CompUSA around the corner was going out of business, and had a huge blowout sale on the 55" Sony (but not the 50 or 60") so Best Buy with their price match guarantee was actually selling it BELOW COST. The 55" was actually $500 cheaper then the 50". Sale ended that day. I bought one (duh). Then I saved another $100 by agreeing to upgrade to HD cable with Comcast which I was going to do anyways. So anyone want a Sony 32" Trinitron on the cheap? Nice solid wood entertainment center cabinet too.

09/20/06

Why methods shouldn’t replace a language

There’s been a big push for OO scripting languages like Python and Ruby over older procedural languages like Perl. While I used to be quite the Perl bigot, lately I’ve learn to appreciate other languages like Ruby. But while OO techniques can make some things much much easier, strict adherence to the OO concepts can be more trouble then it’s worth.

Take for example this common case of a for loop:
for ($i = 0; $i < = 10; $i++) { &lt;do something with $i&gt; }
In Ruby you’d use:
1.upto(10) { |x| &lt;do something with x&gt; }

I’ll give the win to Ruby here for being more concise, even though those people coming from most procedural languages will be taken back by the syntax. Now lets make a simple change and increment by 2 instead of 1:

If you read the first Perl example, this should be obvious:
for ($i = 0; $i < = 10; $i += 2) { .... }
Ruby, however isn’t quite so obvious:
1.step(10, 2) { |x| ... }

Wtf? It’s a different method? For the record, I had to ask 3 people who write Ruby code how to do that because the first two didn’t know the magical method name. Sure it’s a small thing, but it’s really fustrating when the “obvious” solution isn’t correct and doesn’t lead you to the answer.

09/19/06

No more head-hunters please.

Usually when I’m talking about head-hunters I’m either ranting or making fun of them… or in some cases both.

But this post isn’t about that. This post is about something simple. If your company is interested in me, then contact me yourself. Do not under any circumstances use a head-hunter. I won’t talk to them.

You’d be surprised how many head-hunters call me with statements like, “My client has specifically asked me to contact you about an opportunity with them. I can’t tell you who they are, but trust me they’re great. Please send me your resume so I can give it to them to start the process.”

Now occasionally (once) they’re being honest. But most of the time, they’re full of shit since this is one of the oldest ploys in the book to get your resume in their system so they can call you every 6 months about “great opportunites” which suck.

So instead of paying a head-hunter 30% to call me and setup an interview… just contact me yourself.

09/17/06

Not even I thought the number was 14,000

According to this AP article on Yahoo, 14,000 is the number of people being held without access to a lawyer or being charged with a crime that are being held against their will in U.S. run overseas prisons. 13,000 of them in Iraq.

One such example is of Bilal Hussein, an Iraqi citizen and AP photographer.

[Update: Here’s another great example of the “enemy combatants” who are so dangerous they must be held in Gitmo.]

Already, over 18,000 people have been released because they were deemed innocent. But one wonders after being held in a prision for months and even years, how this endears us to them after they are set free. More then likely, those that already hated us, hate us even more and those that were on the fence now see us as their tormentors. While “radical islamists” are telling the world we are evil, we go out of our way and prove it. In effect, our own actions only serve to create more of the enemy.

Bush tells us this is to protect us from those evil-doers who wish us harm. But you can’t fight evil by becoming it. The “war on terror” shouldn’t be fought by instilling terror in the hearts of innocent people. We as Americans need to stand up for what is right before the world can’t tell which side are the real terrorists.

09/15/06

OpenPacket a reality?

Well looks like Richard may have actually gotten OpenPacket off the ground. A public pcap repository is something I’ve often thought about doing since starting work on tcpreplay, but I’ve never had the time.

Limited access to quality pcaps has always been a limitation for users of tcpreplay, so this project may be the perfect companion. I’ll be keeping a close eye on how it develops. Hopefully they’ll have something to look at in a few weeks.

09/15/06

1,000th comment!

Just reached the 1,000th attempted comment spam which was picked up by Askimet. So I guess the good news is that Askimet is very effective at combating comment spam. I guess the bad news is the near complete lack of actual comments. :)

On a side note, I tried signing up for a class over the web. Filled out the form, gave them my CC# and everything. Then I got an email saying that the class was full. After being put on the waiting list, I suggested they change their website to indicate which dates have availability… not something I would consider difficult nowadays. Imagine my surprise when I got this in reply:

Unfortunately because our availability changes constantly it
would likely be a full time job for someone to update the school
availability on the site and we just can’t do that. This is why there is
a note that comes up after you register that says you aren’t actually
registered until one of our staff contact you.

Hello? Is it still 1998?