This proposal is not longer active. Context: https://twitter.com/siddharthkp/status/909818777314902016
| # Package to install, to get an open terminal in Right-Click context menu. | |
| sudo apt-get install nautilus-open-terminal | |
| # To move window controls in your Ubuntu from left to right… | |
| gconftool-2 --type string --set /apps/metacity/general/button_layout "menu:minimize,maximize,close" | |
| # To switch back | |
| gconftool-2 --type string --set /apps/metacity/general/button_layout "close,maximize,minimize:menu" | |
| # Repeat last command with sudo | |
| sudo !! |
| "" Vim, not Vi. | |
| " This must be first, because it changes other options as a side effect. | |
| set nocompatible | |
| filetype off | |
| "" General Settings | |
| " Enable syntax highlighting. | |
| syntax on | |
| " Line endings should be Unix-style unless the file is from someone else. |
| /************************************************************************** | |
| * OSM2GEO - OSM to GeoJSON converter | |
| * OSM to GeoJSON converter takes in a .osm XML file as input and produces | |
| * corresponding GeoJSON object. | |
| * | |
| * AUTHOR: P.Arunmozhi <aruntheguy@gmail.com> | |
| * DATE : 26 / Nov / 2011 | |
| * LICENSE : WTFPL - Do What The Fuck You Want To Public License | |
| * LICENSE URL: http://sam.zoy.org/wtfpl/ | |
| * |
This proposal is not longer active. Context: https://twitter.com/siddharthkp/status/909818777314902016