Related Posts
svn gotchas: Importing a Folder in one step
Up until this day when my friend Gabe told me how, I didn’t know how to import a folder, without doing this first: svn mkdir svn+ssh://server.com/path/to/repo/myfolder svn import myFolder svn+ssh://server.com/path/to/repo/myfolder If I didn’t do that, If I just imported the local “myFolder”, it would end up adding all the files inside the folder and it […]
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 […]
Programming Languages Popularity by the number of Tagged Questions at StackOverflow.com
1. C# 73,833 2. Java 43,006 3. PHP 35,371 4. Javascript 31,244 5. C++ 27,340 6. Python 22,070 7. Objective-C 10,350 8. Ruby 8,773 9. VB.net 7,778 10. ActionScript (Flash) 5,230 11. Perl 4,496 What do these numbers mean to you? Languages on the rise of popularity among programmers, or lack of good documentation? [buzz […]