2008-02-13
Life at Microsoft
The guys over at Channel 10 made an awesome video to show what life at Microsoft is really like. Very funny. Go watch it.
2008-02-07
Video: 12 years of Opera
Daniel Goldman has posted a cool little video of Opera's 12-year history. In just 2 minutes it shows the long road Opera has walked, the many versions of its desktop browser, mobile browser, mini browser and browser for devices.
2008-02-01
PowerShell + Speech API
I just read a blog post about using the Speech API in command-line scripts on Marcelo's Weblog. So I had to try it but instead of using JScript, I wrote it in PowerShell. It's so easy and fun:
$v = New-Object -ComObject SAPI.SpVoice
$v.Speak("Who let the dogs out?")