Musings of a Product Manager
Kevin Schmidt's Blog
About Me
Archives
« August 2009 »
SunMonTueWedThuFriSat
      
1
2
3
5
6
7
8
9
11
15
16
17
18
20
21
22
23
27
31
     
Today
Click me to subscribe
Search

Links
 

Today's Page Hits: 322

Locations of visitors to this page
View My Stats
« Previous month (Jul 2009) | Main | Next page of month (Aug 2009) »
Sunday Aug 30, 2009
It's Football Season! Schmidt Computer Rankings Have a New Home

The calendar says it is almost September, the days are getting shorter, the nights are getting cooler.  It must be football season!  And with football season comes me spending my weekends trying to get my computer ratings going again.

This year, rather than muddling up this blog with the occasional entry on my computer's ratings, I've created a computer ratings blog that I'll do my best to diligently keep updated each week.  I've already posted last years season ending college ratings and the NFL will be there soon.

Go take a look and let me know what you think! 

Posted at 06:40PM Aug 30, 2009 by Kevin Schmidt in Sports  |  Comments[0]

links for 2009-8-30: More on HTML5; AnyShell.net

Posted at 06:33PM Aug 30, 2009 by Kevin Schmidt in Links  |  Comments[9]

Saturday Aug 29, 2009
Snow Leopard is here! My initial review.

My Snow Leopard DVD arrived yesterday but I didn't have a chance to install it until this evening.

I actually did an upgrade, upgrading a MacBook Pro from 10.5, and the upgrade itself took about 45 minutes.  One strange thing was during the middle of the upgrade the screen went 90% dim and I could hardly read how much longer it would take.  But alas everything completed without a hitch and the machine rebooted.

Since one of the perks of the new OS is improved performance, I had done a few very unscientific tests on the machine prior to upgrading and then did the same tests post upgrade.  The tests I performed and timed were:

After these tests I also looked at memory usage to see where things stood.

I did perform the tests on Snow Leopard twice since I was a bit surprised by a few the first time.  Note that in each case the tests were performed in order so everything started from a fresh reboot.

Action Leopard Snow Leopard (1) Snow Leopard (2)
Boot to login screen 40 33 35
Start NeoOffice 23 17 20
Open .ods in NeoOffice 10 12 9
Start Safari (apple.com) 8 5 4
Start Firefox (google.com) 8 8 6
Open Eclipse 17 36 19
Re-open Eclipse 7 7 7
Transcode WMV to OGV (wall clock)
4:52 5:14 4:51
Transcode (user time) 4:48 4:55 4:46
Free (GB)
2.43 2.03 2.14
Wired (MB)
153.5 304.4 162.8
Active (MB)
376.68 524.7 403.3
Inactive (MB)
45.21 157.3 310.7
Used (MB)
575.39 986.4 876.8
VM size (GB)
30.2 104.04 107.73
Page ins (MB)
243.07 916 224.6
As I said at the beginning, not terribly scientific, but at the end of the day it appears the only noticeable improvement is in the Safari initial start time which is less than I had hoped for.  I'll certainly be reading other reviews and looking for other improvements there might be in the coming days.
Posted at 06:51PM Aug 29, 2009 by Kevin Schmidt in Technology  |  Comments[4]

links for 2009-8-29: 75% don't upgrade Office; PayPal beef; Don't give Obama keys to internet
Posted at 07:56AM Aug 29, 2009 by Kevin Schmidt in Links  |  Comments[0]

Friday Aug 28, 2009
links for 2009-8-28: Flight Delay Predictions; Store wind power as compressed air; WPA cracked; iPhone App Store trevails

Posted at 07:21AM Aug 28, 2009 by Kevin Schmidt in Links  |  Comments[0]

Wednesday Aug 26, 2009
HTML5 in Action; Plugin-free video and browser geolocation

I mentioned HTML5 in my links entry from yesterday and reading about what is coming is great, but seeing some of it in action is even better.  So I've created a few examples of a couple new features that I describe below.

The first is the ability to have video in web-pages without requiring any plug-ins.  This is done with the new <video> element, an example of which can be viewed below or here which happens to show Galen Rupp going sub-4:00 earlier this year.  But take a look at the source of that page and see how simple it is:

    <video src="RuppMile.ogv" controls/>

Isn't that easier than relying on plugins and or much more complicated HTML that has to download and use Flash? 

Now, a few caveats are that (to my knowledge) this only works in Firefox 3.5 and Safari 4 and the video has to be in Ogg Theora, Ogg Vorbis, or WAV format.  The Ogg media formats are not patent encumbered like other formats are so look for their growth and adoption to increase.  Learn more about it here.

The second is the use of some geolocation APIs that are not part of HTML5.  This can open a whole host of possibilities for applications to take advantage of location and deliver innovative applications for consumers.  I've created a simple example that uses the information provided to create a Google map centered on your location.  Try it here.

The source for this is a little more complicated due to the Javascript and use of Google's APIs but it boils down to the following:

navigator.geolocation.getCurrentPosition(showPosition);

function showPosition(position) {
    var latLong = position.coords.latitude + ',' + position.coords.longitude;
    document.getElementById('latLong').value = latLong;
    loadPage();
}

The first line of code registers a method to be called when the location is known and when that method is called it can retrieve the coordinates and do with it what it wants.  In my case I load the map.

Again, this requires Firefox 3.5 where it uses a service to get your location from your IP address which is somewhat accurate, or you can use Safari on your iPhone which tends to be much more accurate with its cell tower triangulation and GPS capabilities.

Grab Firefox 3.5 and start giving HTML5 a try!

Galen Rupp video requiring no Flash, Silverlight, or other plugin!

Posted at 05:31PM Aug 26, 2009 by Kevin Schmidt in Technology  |  Comments[0]

links for 2009-8-26: Amazon Virtual Private Clouds; File Systems Obsolete?
Posted at 12:11PM Aug 26, 2009 by Kevin Schmidt in Links  |  Comments[0]

Tuesday Aug 25, 2009
links for 2009-8-25: HTML5; Frustrated App Store Developers
Posted at 10:40PM Aug 25, 2009 by Kevin Schmidt in Links  |  Comments[0]

Monday Aug 24, 2009
GlassFish Hosting with Amazon

I mentioned Amazon.com lowering pricing for EC2 in my links entry today, but having great pricing is only useful if you have something to deploy on EC2.  And a great way to deploy applications is in GlassFish.

Now, anyone can install everything from scratch on their EC2 instance, but Amazon Machine Images (AMIs) are a great way to get a head start with a pre-installed/configured operating system and other software.  As you might expect, for someone wanting to use GlassFish there are several AMIs available.

My quick perusal came across the following GlassFish and related AMIs:

Find out more about GlassFish on EC2 here.
Posted at 09:15PM Aug 24, 2009 by Kevin Schmidt in Sun  |  Comments[0]

links for 2009-8-24: Apple responds on Google Voice; Amazon lower EC2 fees
Posted at 07:12PM Aug 24, 2009 by Kevin Schmidt in Links  |  Comments[0]

Wednesday Aug 19, 2009
links for 2009-8-18: CDs still sell; Gmail overtakes AOL
Posted at 07:27AM Aug 19, 2009 by Kevin Schmidt in Links  |  Comments[0]

Friday Aug 14, 2009
links for 2009-8-14: Microsoft revealed to spread FUD; Twitter as queueing service; Palm Pre slowing
Posted at 09:32AM Aug 14, 2009 by Kevin Schmidt in Links  |  Comments[0]

Thursday Aug 13, 2009
links for 2009-8-13: iPhone check deposit; Cheap is Expensive?
Posted at 04:33PM Aug 13, 2009 by Kevin Schmidt in Links  |  Comments[0]

Wednesday Aug 12, 2009
links for 2009-8-12: Apple a Monopoly?;Apple's Magic; VMware and SpringSource; MySQL.com
Posted at 01:04PM Aug 12, 2009 by Kevin Schmidt in Links  |  Comments[0]

Monday Aug 10, 2009
links for 2009-8-10: More Google Voice; Twitter replacing RSS?
Posted at 07:42AM Aug 10, 2009 by Kevin Schmidt in Links  |  Comments[0]