Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.
$ python -m SimpleHTTPServer 8000| #!/usr/bin/env bash | |
| DIR_NAME=$(dirname $(readlink -f ${0})) | |
| APP="$(dirname $(readlink -f "${DIR_NAME}/.."))/app" | |
| REPO="$(dirname ${DIR_NAME})" | |
| BRANCH="main" | |
| while read oldrev newrev ref | |
| do | |
| BRANCH=`echo $ref | cut -d/ -f3` |
| #include <stdio.h> | |
| /* | |
| * Calculates what Ada Lovelace labeled "B7", which today we would call the 8th | |
| * Bernoulli number. | |
| */ | |
| int main(int argc, char* argv[]) | |
| { | |
| // ------------------------------------------------------------------------ | |
| // Data |
| #!/bin/bash | |
| # --------------------------------------------------------- | |
| # Customizable Settings | |
| # --------------------------------------------------------- | |
| MOUNT_POINT="${CASE_SAFE_MOUNT_POINT:-${HOME}/casesafe}" | |
| VOLUME_PATH="${CASE_SAFE_VOLUME_PATH:-${HOME}/.casesafe.dmg.sparseimage}" | |
| VOLUME_NAME="${CASE_SAFE_VOLUME_NAME:-casesafe}" | |
| VOLUME_SIZE="${CASE_SAFE_VOLUME_SIZE:-60g}" |
| On the shared machine: | |
| Download http://code.google.com/p/selenium/downloads/detail?name=selenium-server-standalone-2.33.0.jar&can=2&q= | |
| $ brew install chromedriver | |
| $ java -jar selenium-server-standalone-2.33.0.jar | |
| On the local machine: | |
| Set `CHROME_HOSTNAME` in your `.env`, `.rbenv_vars`, or per run. |
Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.
$ python -m SimpleHTTPServer 8000