Google Voice web app… finally.

Jan 26
2010

Today Google finally announced an iPhone friendly web app for the great Google Voice. I’ve already given out all my invitations to the invite-only beta, sorry.

Share

Playing with HTML5′s video tag. So long flash!

Jan 24
2010

Below is a video posted using just the new video tag in HTML5. You need a recent Safari, Chrome, or Firefox to make it work. Video is from the great MILapse on Vimeo.

Share

John Mayer provides tech support that hits too close to home.

Jan 03
2010

Here is John Mayer giving tech support to his Dad over the phone, been there done that – almost word for word by the way.

For all you non-techies out there he is trying to explain to his dad how to open the email client Entourage on his Mac.

Share

Must have…

Jan 02
2010

The new Audi e-tron.

Share

My largest MySQL SELECT statement.

Dec 31
2009
 
SELECT id, name, fullname, birth1, death1, deathplace, is_divorced, 
wedding1, ann_name, MONTH( birth1 ) AS bday_month, 
DAYOFMONTH( birth1 ) AS bday_day, YEAR( birth1 ) AS event_year, 
DATE_FORMAT( birth1, '%m %d' ) AS event_date, 
DATE_FORMAT( birth1, '%Y-%m-%d' ) AS event_date_comp, 
DATE_FORMAT( birth1, '%b %d' ) AS event_date_display
FROM armer_individuals
WHERE (
MONTH( birth1 ) > '$c_month'
)
OR (
(
MONTH( birth1 ) = '$c_month'
)
AND (
DAYOFMONTH( birth1 ) > '$c_day'
)
)
ORDER BY event_date
)
UNION (
 
SELECT id, name, fullname, birth1, death1, deathplace, is_divorced, 
wedding1, ann_name, MONTH( wedding1 ) AS ann_month, 
DAYOFMONTH( wedding1 ) AS ann_day, YEAR( wedding1 ) AS ann_year, 
DATE_FORMAT( wedding1, '%m %d' ) AS event_date, 
DATE_FORMAT( wedding1, '%Y-%m-%d' ) AS event_date_comp, 
DATE_FORMAT( wedding1, '%b %d' ) AS event_date_display
FROM armer_individuals
WHERE (
(
MONTH( wedding1 ) > '$c_month'
)
OR (
(
MONTH( wedding1 ) = '$c_month'
)
AND (
DAYOFMONTH( wedding1 ) > '$c_day'
)
)
)
AND (
is_divorced <> 'yes'
)
AND (
YEAR( death1 ) = '0'
)
ORDER BY event_date
)
ORDER BY event_date
LIMIT 5 "

—————————————————–

And here is the result, happen to have no anniversaries in the nest 5 events.

Share
Get Adobe Flash playerPlugin by wpburn.com wordpress themes

Videos, Slideshows and Podcasts by Cincopa Wordpress Plugin