Chewie and Leia
Posted: September 27th, 2007 | Author: steve | Filed under: Uncategorized | No Comments »

I’ve taken the plunge and bought a page on Wordhugger. What’s WordHugger?
“Word Hugger is a website about micro investments, which are the internet’s newest virtual real estate gold. Investors can pick a word based on their hobby, business, interests, or expertise in a particular field. For a one time investment of $60, you own a page on the Word Hugger site for 10 years.”
Will WordHugger work? Who knows, only time will tell. I previously wrote about why I thought MillionDollarWiki will not work - so why would I take a chance on WordHugger, which is very similar? Firstly, Collin (the guy running it) says that he will manually check each submission and will not allow spam keywords. Secondly, half of the $60 per page goes to charity. And finally, the site has a real nice look and Collin seems like a nice guy!
I bought the hearing aids keyword. Lets see what I can do with it.
In the past, I’ve been for many interviews and I’ve been nervous as hell. Even when I’ve gone for jobs that I knew I was full qualified to do, I still got myself into a bit of a panic as I went into the interview room.
Recently, I’ve been doing some interviewing and I’ve found that a majority of the candidates have been nervous too. I think the interviewer should take the initiative and try and put the interviewee at ease - the interviewer is in familiar surroundings and is holding all the cards, they must be the one to ease the tension. Also, it’s in the interviewers interests as the candidate is more likely to show their skills, and suitability for the job, when they are relaxed and happy.
So, a few things I’ve found that are good ways to put the interviewee at rest:
This code snippet comes from the Worse Than Failure blog. Someone wanted to make super-sure that an enum contained a valid value:
public enum EmailsFormat
{
HTML,
Text
}
...
public static EmailFormat FromEmailsFormat( EmailsFormat emailsFormat )
{
switch ( emailsFormat )
{
case EmailsFormat.HTML:
return EmailFormat.HTML;
case EmailsFormat.Text:
return EmailFormat.Text;
default:
throw new Exception( "Unknown EmailsFormat enum value!" );
}
}
Eric Bailey from NeuroLogica Inc, a Danvers, MA company, recently brought his miniaturized CereTomâ„¢ CT scanner to a boxing match. He positioned it just off the ring, and offered the organizers the ability to diagnose anything that might happen, right on the spot. Lo and behold, after a match that ended with an off the ring CT scan, Lorenzo Bethea was rushed by ambulance to a hospital for diagnosed intracranial bleeding. His life was saved. American football teams have taken notice and some are purchasing the relatively mobile and affordable CereTom scanners for their fields.
… the Las Vegas incident intrigued enough teams in the NFL that two — the Oakland Raiders and Indianapolis Colts — have agreed to use the CereTom in their home stadiums. The hope, Bailey said, is that teams can use the CereTom to immediately examine players for serious underlying conditions that might not register in regular screenings.
“This should help advise the physicians and help make decisions in real time,” Bailey said.
From MedGadget.
I was following through some links from the Blogrush widget on this page and noticed that all links are, by default, opened in a new window. This sucks. I need to go back to the Blogrush site and see if that can be configured - if not, it needs to be.
Interviews, they’re evil. They seem to bring the worst out in people. Personally, I manage to forget everything I know the second I step into an interview room and spend the next hour or so waffling rubbish about nothing in particular. Here’s some tips to nail that interview:
I’ve been mulling over buying a page on MillionDollarWiki. Yeah, it’s only $100 but I just can’t convince myself that this site is gonna work.
At the time of writing, the site has sold 765 pages. That’s 76.5k for the site owner, very very nice. A great idea and already a nice earner for them - question is though, would it be a nice earner for me if I bought a page?
Most people are going to be using their pages to act as a portal to drive traffic to their other sites. Shoe has done this and has seen some clickthroughs to his ringtone site almost straight away. So it has worked on a small scale for him.
Way I see it, the only chance that MillionDollarWiki has of driving real traffic is if a lot of pages are put up that will, over time, start to get inbound links and rank in organic searches. Given enough time this may work. But there’s a few reasons why I don’t think this is gonna work:
But, as Shoe says, “Are you going to take a chance for only $100 that you missed the boat on your niche?”
Some new titles were announced for XBLA at the Tokyo Games Show and it looks like Microsoft are aiming for some retro-cool to try and sell some consoles to the Japanese. And when the releases include gaming-gold like Rez, I’m not complaining.
Ikaruga is the other big name on the release list, but that’s probably old news to most people now.
As if those two classics was not enough, Triggerheart Exilica and a version of Every Extend was also announced.
If Bangai-O and Psyvariar 2 get a release I’d be able to finally put my Dreamcast to bed for a well earned rest.
There’s a great article at Coding Horror that makes an interesting proposal for strengthening passwords: using pass-phrases rather than pass-words.
The idea is to use a phrase rather than a single word. For example, a worst-case scenario would be:
old password: password
new password: this is my password
Whilst I agree that a passphrase may be marginally stronger than a password, I still think they will suffer the same weakness: the user. User’s pick passwords that they can remember and these are nearly always weak - their dog’s name, their favourite book, etc. A phrase would be no different, people would use a quote from a film, a common saying or something else easily recognisable.
As stated in the comments of the Coding Horror post, the problem with passwords will always exist: a user needs to remember a password and because of that they will nearly always choose weak ones.