FreeGeoIP in its upgraded form. https://github.com/fiorix/freegeoip
All requests have to be HTTP GET requests in the following schema:
| #!/bin/bash | |
| # A script to back up all the program names. | |
| # Can be used to install them again later on | |
| TSTAMP=`date +%H:%M_%d-%m-%Y` | |
| # Get all the programs available in the repos | |
| # And paste them in a file | |
| pacman -Qentq > ./native-packages_${TSTAMP}.txt |
| var waitForEl = function (selector, callback) { | |
| jQuery.when(jQuery(selector)).then(callback); | |
| } | |
| // Example for adding an item to cart | |
| // in Amazon | |
| var element = '#add-to-cart-button'; | |
| waitForEl(element, function (self) { | |
| self.trigger('click'); |
FreeGeoIP in its upgraded form. https://github.com/fiorix/freegeoip
All requests have to be HTTP GET requests in the following schema:
| #!/bin/bash | |
| # A simple script to backup an organization's GitHub repositories. | |
| # NOTE: if you have more than 100 repositories, you'll need to step thru the list of repos | |
| # returned by GitHub one page at a time, as described at https://gist.github.com/darktim/5582423 | |
| GHBU_BACKUP_DIR=${GHBU_BACKUP_DIR-"github-backups"} # where to place the backup files | |
| GHBU_ORG=${GHBU_ORG-"<CHANGE-ME>"} # the GitHub organization whose repos will be backed up | |
| # (if you're backing up a user's repos instead, this should be your GitHub username) | |
| GHBU_UNAME=${GHBU_UNAME-"<CHANGE-ME>"} # the username of a GitHub account (to use with the GitHub API) |