Related Posts
How to change the default page when you open a new tab in Chrome
Install the “New Tab Redirect” Chrome extension. Evil Chrome developers (or evil product managers forcing good developers) have hidden an old setting that used to be in chrome://flags, so now the simplest way to change it is with this extension Once installed configure it to whatever you like, if you want it to open a […]
[TUTORIAL] HOW TO PAUSE AN AWS ELASTIC BEANSTALK ENVIRONMENT USING THE DASHBOARD
So you have set up a test elastic beanstalk environment because you don’t want to put at risk your production elastic bean. You don’t want to pay for the time you’re not using it, and there’s no freaking “Pause Environment” option. all you can do is “Terminate Environment”? but then to crete the damn environment […]
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 […]
