For homebrew version 0.9.5.
brew -v # => Homebrew 0.9.5
Install the current version of mysql.
# Install current mysql version
brew install mysql
resourceTypes: | |
- collection: | |
usage: This resourceType should be used for any collection of items. | |
description: The collection of <<resourcePathName>> | |
get: | |
description: Get all <<resourcePathName>> | |
responses: | |
200: | |
body: | |
schema: <<resourcePathName>> |
#!/bin/sh | |
# @source: https://gist.github.com/ronanguilloux/11f6a788358577474ab4 | |
# @link http://tech.zumba.com/2014/04/14/control-code-quality/ | |
PROJECT=`php -r "echo dirname(dirname(dirname(realpath('$0'))));"` | |
STAGED_FILES_CMD=`git diff --cached --name-only --diff-filter=ACMR HEAD | grep \\\\.php` | |
# Determine if a file list is passed |
#! /bin/bash | |
# | |
# backup_redmine.sh | |
# modified by [email protected] | |
# Inspiration: https://gist.github.com/gabrielkfr/6432185 | |
# | |
# Distributed under terms of the MIT license. | |
# -- VARS | |
DAY=`date +"%Y%m%d"` |
//parent.html | |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> | |
<html> | |
<head> | |
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js" ></script> | |
<script type="text/javascript"> | |
window.addEventListener("message", receiveSize, false); | |
function receiveSize(e) { | |
//console.log("parent: message received", e); |
http://www.raspberrypi.org/phpBB3/viewtopic.php?f=34&t=10781 | |
Adjust your environment to include: | |
GOARM=5 | |
GOOS=linux | |
GOARCH=arm | |
GOPATH=<root for packages> | |
$ sudo apt-get install mercurial # get mercurial | |
$ sudo apt-get install git # for go get ... |