-
My Recent Posts
My Recent Tweets
- The Geolocation API specification has now been published as a Candidate Recommendation. Congrats to everyone who has worked on it! 07:32:52 AM September 08, 2010 from web
- Get your game on! http://mozillalabs.com/gaming/2010/09/07/welcome-to-mozilla-labs-gaming/ 04:18:23 AM September 08, 2010 from web
- EFF is hiring an activist. Got what it takes? http://eff.org/r.q97 11:02:21 PM September 07, 2010 from web
- 55 page legal agreement to turn enable Genius for Apps. Apple, rly? 01:27:46 AM September 07, 2010 from Twitter for iPhone
- Staff at Apple store valley fair isn't as helpful as I recall. 01:48:59 AM September 06, 2010 from Twitter for Android
- Snoop Dogg is on our side, leading the charge against cyber crime! http://www.hackiswack.com/ shanizzle! 01:32:37 AM September 04, 2010 from web
- Apple Showtimes movie website uses html5 geolocation. 10:15:29 PM September 03, 2010 from web
- itune 10 looks so nice. i really like how they integrated the album art into my music. It sorta makes me want to complete albums. 10:11:06 PM September 03, 2010 from web
- hg qnew --read-my-throughts for patches that you were suppose to write, but didn't know about it. 11:01:04 PM September 02, 2010 from web
- I used 975 GB @ comcast last month. My unlimited plan only allows 250 GB. 08:07:02 PM September 02, 2010 from web
Category Archives: mozilla
how i made the 192 pushlog ugly
in other words, how i screwed up a hg push. I wanted to push changes from mozilla-central to mozilla-1.9.2. The standard way is to: ============================================================= how to apply a m-c committed patch to a release branch ============================================================= hg qimport http://hg.mozilla.org/mozilla-central/raw-rev/ hg qpush hg qref -e # add approval information hg qfin . hg push What [...]
CoreLocation in 10.6
I took a really quick look at the built-in location services on Mac 10.6. I wanted to determine what sort of accuracy the feature had out-of-the-box, and what the API looked like. The code is pretty simple. Just something like: CLLocationManager* locationManager = [[CLLocationManager alloc] init]; locationManager.delegate = self; locationManager.desiredAccuracy = kCLLocationAccuracyBest; [locationManager startUpdatingLocation]; The [...]
Using CoreWLAN on MacOS 10.5
When Apple’s OS X version 10.6 shipped, they broke compatibility will all 3rd party geolocation applications. This wasn’t entirely unexpected as we all were using a private framework which wasn’t documented. So, Firefox 3.5 and Gears, and probably Skyhook, are busted right now on OS X 10.6. Apple has provided, with limited documentation, a new [...]
Geolocation support in add-ons