Thursday, November 08, 2007

Being Overweight Isn't All Bad, Study Says - washingtonpost.com

Being Overweight Isn't All Bad, Study Says - washingtonpost.com: "data from decades of federal surveys concluded that people who were overweight -- but not obese -- had lower overall mortality rates than those of normal weight."

Thursday, September 27, 2007

14886 Days till I die (if I'm lucky)

A colleague introduced me to this blog post today. I have placed a non-repeating appointment in my Google calendar for the day I die and will see, on a regular basis, how much time I have left to get my shit together and have a good time:

Conceptual Trends and Current Topics

Tuesday, September 25, 2007

Don't have TiVo? Want to know what you're missing on the web?

Couldn't help but to lift this chart from a good article over on Macworld.com
It's good for more than just the Mac too:

What’s streaming on the web

Site Technology Quality What’s on
ABC Move Video Very good Select prime-time shows including Lost, Desperate Housewives, and Ugly Betty; previous two to five episodes

BBC News Windows Media, RealVideo Very poor Headline news updated 24 hours a day

CBS RealVideo Fair Select prime-time and daytime shows, including the CSI franchises, The Unit, and As the World Turns; select episodes

Channelchooser Windows Media, RealVideo Poor Live streams of television stations, including movie classics, cartoons

The CW Move Video Good Select prime-time shows such as Supernatural and Everybody Hates Chris; four to six episodes per show

Dailymotion Flash video Fair to poor, depending on the source Some television shows, including many classics from the 1940s and 1950s

Fox Move Video Good Select prime-time shows, such as Bones, Prison Break, and Hell’s Kitchen; some with all episodes, some with select episodes

Google Video Flash video Fair to poor, depending on the source Some television shows such as Charlie Rose, public domain films

Joost P2P software Very good to poor, depending on the source Shows from a variety of content providers, including Babylon 5 and The Ben Stiller Show and movies such as Dragonslayer

MLB Windows Media Fair Live baseball games, highlights

NBC Flash video Poor Select prime-time shows such as Friday Night Lights and The Office; all episodes

NHL.com Windows Media Fair Live hockey games, highlights

wwiTV Windows Media, RealVideo Poor Live streams of stations from around the world, including movie classics, cartoons

Wednesday, September 19, 2007

Google Docs Is Inspiring

Kudos to the folks at Google for making this simple presentation on how to use Google Docs for simplifying the creation and sharing of and the collaboration on word processing, spreadsheet and presentation documents.

Watch and listen to this video for more. Even if you're not into Google, the presentation technique alone is worth the time:

Official Google Blog: Our feature presentation

Thursday, September 06, 2007

I got a widescreen monitor at work and new software. . .

So, the boss decided that no one should be stuck staring at a CRT in the office anymore.

My colleague, David, was given a budget and the authority to eliminate as many CRTs as possible. I got a new wide screen monitor in the shuffle!

So, I read on LifeHacker about this free software for taking advantage of the valuable new space on the screen. Sizer let me customize the "resize window" options on my computer so I can click on a window and instantly set it to take only half of the screen width and reposition it to the left or right side of the screen. It's fast and, now that I have so much more screen space, I can have two different windows on my screen at the same time.

Unread Items in Google Reader Has Changed -- Finally!!

I always found it ridiculous that Google Reader did not show the count for unread items in my reader account for anything higher than 100. They would just show "100+" I noticed this morning that they now show the actual count.

So now I know how far behind I am on my reading and can also gauge a bit better whether I'm subscribed to too many feeds.

Not sure why I didn't hear about this on the blogosphere already. . .maybe it's because I'm behind on my reading!

Tuesday, September 04, 2007

Case Sensitive Name Attribute for Radio Buttons in FireFox

So a customer of mine discovered this problem for me today. I have a pair of radio buttons on some search fields for an AND/OR choice. When he clicked OR (the default is AND) the AND stayed selected and his search threw an error.

Here's a code example:
<input type="Radio" 
name
="search_recipient_group_ao"
value
="And"
checked
>
&nbsp;Or&nbsp;
<input type="Radio"
name
="SEARCH_RECIPIENT_GROUP_ao"
value
="Or" >
So, in IE, this works just fine--only one selection is allowed. In FireFox though, both can be selected at the same time. I'm guessing FireFox is relying on JavaScript for the functionality and is, therefore, case sensitive for form field groups.