TODO: Write a project description
TODO: Describe the installation process
/* | |
Purpose: Export the configuration settings for GitHub Labels. | |
(c) James Perrin, CC0 1.0 Universal License, https://github.com/jamesperrin | |
Exporting Instructions: | |
1. Open a web browser. | |
2. Navigate to the desired GitHub repository. | |
3. Navigate to Issues tab. |
How to Completely Remove Android Studio | |
Execute these commands from the terminal | |
rm -Rf /Applications/Android\ Studio.app | |
rm -Rf ~/Library/Preferences/AndroidStudio* | |
rm ~/Library/Preferences/com.google.android.studio.plist | |
rm -Rf ~/Library/Application\ Support/AndroidStudio* | |
rm -Rf ~/Library/Logs/AndroidStudio* |
# Torndb is a very thin wrapper around MySQLdb that makes it even easier to use MySQL. | |
# Because it is very light, one can just go through the one-file python source | |
# to learn how to use it. | |
# Installation: pip install torndb | |
# Official doc: http://torndb.readthedocs.org/en/latest/ | |
# Source: https://github.com/bdarnell/torndb/blob/master/torndb.py | |
from torndb import Connection |
<script> | |
angular.directive('tj:focus', function(){ | |
return function(scope, element){ | |
element[0].focus(); | |
}; | |
}); | |
</script> | |
<div> | |
<input type="text" ng:model="model" tj:focus /> |