Hawaii seems to be a lucky place where Google has already released the “Public Transit Directions” feature for their Google Maps service. We wonder when they will release this for New York City.
Related Posts
JavaScript: Get how many digits are there in a decimal number
/** * 1 + Floor(LogBase10(number)) * */ function digits(n) { return 1+Math.floor(Math.log(n)/Math.log(10)); } Yes, javascript doesn’t have a Math.log10() function. I tried doing it by dividing by Math.ln10 constant but the function won’t return the correct number of digits when you pass numbers like 100,1000,10000,etc. So I just divided by Math.log(10) and it seems to […]
Episodio 0050 – VideoPodcast, DRM con Frio y Calor
DESCARGA el Video con mayor calidad (113 Mb) Digg-eanos Episode 0050 – First VideoCastUploaded by wedoit4you
[SOLVED] Eclipse can’t see my Android Device on Ubuntu
Are you seeing this on eclipse when you plug your Android device to your Ubuntu box? Serial Number: ?????????? AVD Name: N/A Target: unknown State: ?? Here’s the solution: 1. Create a script to fix this next time it happens, let’s call it “android_device_reset” and save it on a folder contained on your $PATH environment […]