An introduction to curl using GitHub's API
Makes a basic GET request to the specifed URI
curl https://api.github.com/users/caspyin
| #!/bin/bash | |
| # | |
| #This script is designed to install the Android SDK, NDK, and Eclipse in Linux Mint 11 and make it easier for people that want to develop for Android using Linux. | |
| #Script written by @ArchDukeDoug with special thanks to @BoneyNicole, @tabbwabb, and @animedbz16 for putting up with me and proofreading and/or testing the script. | |
| #I can be reached at [email protected], twitter, or linuxrandomly.blogspot.com | |
| #Script version: 1.0.5 | |
| #Changelog: 1.0.5 - Fixed the Android SDK search parameters to fit the new naming scheme on http://developer.android.com/sdk | |
| i=$(cat /proc/$PPID/cmdline) | |
| if [[ $UID != 0 ]]; then | |
| echo "Please type sudo $0 $*to use this." |
| #!/bin/bash | |
| set -o errexit | |
| # Author: David Underhill | |
| # Script to permanently delete files/folders from your git repository. To use | |
| # it, cd to your repository's root and then run the script with a list of paths | |
| # you want to delete, e.g., git-delete-history path1 path2 | |
| # | |
| # retrieved from: http://dound.com/2009/04/git-forever-remove-files-or-folders-from-history/ | |
| # |