This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* This is a template command. */ | |
CmdUtils.CreateCommand({ | |
names: ["message"], | |
icon: "http://developer.pidgin.im/static/pidgin.ico", | |
description: "Send a message to one of your pidgin contacts", | |
help: "Supported formats are:<br> (empty) - just text<br/> as link - hyperlink using the document title<br/> as quote - hyperlink using the current selection / text", | |
author: {name: "Rene Koecher", email: "[email protected]"}, | |
license: "GPL", | |
homepage: "http://labs.mozilla.com/", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Get everything ready on a Mac | |
brew install docker docker-machine docker-compose | |
# Create a new machine (based on the 1.8.1 boot2docker iso) | |
docker-machine create --driver vmwarefusion --vmwarefusion-memory-size 2048 --vmwarefusion-boot2docker-url https://github.com/boot2docker/boot2docker/releases/download/v1.8.1/boot2docker.iso osxdock | |
# Bring the machine up | |
docker-machine start osxdock | |
# Configure Shell |