Unboxing and comparing the Nexus One to the Motorola Droid. Audio is in spanish but you’ll be able to see and tell a lot from my video even if you are an english speaker (use this opportunity to practice your spanish)
Related Posts
Droid vs Nexus 1: Who can calculate MD5 faster?
Nexus 1 indeed. 17 files get their MD5 calculated on the Droid and 17 files get their MD5 hash calculated on the Nexus 1 Nexus 1 pwns. Here’s the code in case you’re curious. [java] public void onClick(View v) { _logTextView.setText("MD5 Benchmark on " + Build.DEVICE + "nn"); if (GlobalVariables.APP_CONTEXT == null) GlobalVariables.APP_CONTEXT = getApplicationContext(); […]
FrostWire for Android Desktop Integration Demo
Very convenient way to send files back and forth to your Android Phone or Tablet. Absolutely free at frostwire.com All source code available on bitbucket.org
How to convert Android GPS coordinates into X,Y coordinates.
Without further math bullshit about all the conversion systems, when you have a bunch of Android GPS coordinates (which are compatible with Google Earth and Google Maps), and you want to draw them on a finite 2D plane, here’s what worked for me. [java] int x = (int) ((PLANE_WIDTH/360.0) * (180 + lon)); int y […]