Street View sighting of a Street View car

A Google Street View car drives into Central Park in New York and then magically dissappears. Interesting. It almost seems as if the car had an out of body experience. See for yourself. Follow the cars path into Central Park for a surprise.

Screen_shot_2012-03-16_at_11

Good morning Miami

(download)

From -7C to +27C

It's great to be in Miami this week for MicroStrategy World

Today I went from -7C tempuratures in Totoronto to +27C in Miami. Pretty good for a Sunday.

Interesting things so far in Miami

  • 27C weather! FTW!
  • lazy lounging by the Ocean
  • Local version of Pizza Pizza
  • Wicked huge tree with super long haning vines (or whatever). There actually kids playing inside of this tree
  • The most ghetto petting zoo I've ever seen

All this only around the Bayside Marketplace just down the street from my room at the Viceroy Hotel. Plus a short stop in South Beach.

(download)

 

Ruby Rock Star

Who wants to work with a Ruby Rock Star? Whould one look something like this?

Ruby Rock Star is on Github

Ruby_rockstar

And, it seems like my Tux, the Linux Penguin pumpkin turned out nicely :)

317685_10150903879420626_524865625_21520237_620388241_n

What are my interests, Google?

Thanks Google. I will never again have to tabulate my interests 
myself. You've done it for me.

Screen_shot_2011-08-03_at_9

 

Canada Day in Ottawa

I've been planning a trip to Ottawa for Canada Day celebrations for as
long as I can remember. Finally this year was the one that we got the
opportunity to fulfill our Canuck duty and visit our beautiful capital
for the celebration of our nations birthday.

The trip was so great that we're already making plans for going back.
We've just got to decide if we want to go for Canada Day again, or
visit during the winter so we can go skating on the canal (if that's
where the skating happens). I'm craving Beaver Tails already, next
time I'll have to have the Nutella and banana flavoured kind.

(download)

Slides and Code From My Code Walkthrough talk

I'm be doing a Code Walkthrough talk showing some internals of my Green Parking Toronot Android App. You can check out the source code if you like. The slides are below.

A code walkthrough of my Green Parking Android App

Global_16771026

If you're interested in Android development, I encourage you to come out to this months meetup of The Toronto Android Users Group. I'll be presenting some of the code that I've put together for the Green Parking Android App in the Android Marketplace. I'll also be going through the steps necessary to check out the source of the app and contribute back if you like.

Check out the event here.

Here's a few points I'll try to cover:

  • Using Google maps in Android Applications
  • Using JSON data in Android App
  • Fetching and updating data in a background Service
  • Using github as a source code repository to share ideas and code
  • Cloning and forking the Green-Parking-Toronto source tree

 

 

#io2011 Galaxy 10.1 fix for wrong time zone

A quick little project to get the #io2011 Samsung Galaxy 10.1 to let you change your time settings. I'm sure this will be outdated when Honeycomb 3.1 is released for the device. But, maybe someone will find this usefull

https://github.com/adamw523/android-toggle-auto-date-time-setting

Direct link to the apk

Device

Expose your private port on a public server, tunneled over SSH

Paul shares a great solution for exposing your local port on a public server using pow and nginx. I took his idea and added support for specifying identity keys and dropped the need to configure up pow and nginx. You do need socat installed on the remote machine doing the port forwarding for my solution.

This works well for me when I need to expose an app running on my local development machine to the world. Especially helpful when working on Facebook Apps or other services that need to trick to talk to your localhost.

Install Thor Module:

thor install https://gist.github.com/raw/963052/700a484a9c2d6b0d6842ed2b65f6d3d7e066ecab/tunnel.thor

The tunnel.yml file:

development:
  username: user
  public_host: host.example.com
  public_port: 8088
  local_port: 8088
  identity_file: ~/.ec2/path_to_ssh_key<

Start the tunnel (execute in the same directory as the tunnel.yml file):

thor tunnel:start