Monthly Archives: December 2007

Perl Tip Of The Day: “uniq” an Array

I can across a great snippet of code, posted on DZone, that provides a two line solution to uniq an array while maintaining order: # Input: @list # Output: @uniqed   my %seen; my @uniqed = grep !$seen{$_}++, @list; #From … Continue reading

Posted in Software Development | Tagged , , | Leave a comment

My New PC

I just realized the other day that I’ve never posted about the new system I put together.  Towards the latter part of summer, lightning stuck near our home blowing out our garage door opener, A/C, TV, and my desktop PC’s … Continue reading

Posted in Computing | Tagged , , , , , , , , , , | 1 Comment

I’m In The News!

I’m always up for a great deal, especially when it comes to computer upgrades that I need. So, on Black Friday I decided to go to the local Staples for their deal on an external 500gb HDD. While waiting in … Continue reading

Posted in General | Tagged , , | Leave a comment

Better Not Write Bad Reviews

Earlier this year I posted Better Not Bash Your Advertiser about an incident where a Editor-In-Chief of PC World had resigned because the CEO of PC World wouldn’t allow him to publish his article, “Ten Things I Hate About Apple”. … Continue reading

Posted in Computing | Tagged , , , , | Leave a comment

Spam User Accounts?

I’ve recently noticed a sharp increase in new user registrations, all of which do not appear to be users genuinely interested being a “registered user”. Most of these accounts with involve random characters the names, end with the Russia country … Continue reading

Posted in Computing, General, Internet, Wordpress | Tagged , | 1 Comment