Skip to content

Instantly share code, notes, and snippets.

View davidino's full-sized avatar

David Funaro davidino

  • AWS
  • Dublin
  • 21:33 (UTC +01:00)
View GitHub Profile
@davidino
davidino / vm.sh
Last active August 29, 2015 14:25 — forked from unlucio/vm.sh
simple vm management script
#!/bin/sh
if [ -z "$vmFile" ]
then
echo "please set your 'vmFile' environment variable to point to your vm's .vmx file"
exit 1
fi
case "$1" in
start)
@davidino
davidino / README.md
Created November 18, 2012 18:30 — forked from nrk/README.md
CI stuff for the Orient PHP library.

This repository contains the stuff needed to run the full test suite of Orient on Travis CI.

@davidino
davidino / deploy.rb
Created May 1, 2012 22:36 — forked from meritt/deploy.rb
Capistrano config for NodeJS application
set :application, "application-name.js"
set :node_file, "server.coffee"
set :host, "87.250.250.11"
set :repository, "git@github.com:meritt/application-name.js.git"
set :user, "root"
set :admin_runner, "www-data"
set :scm, :git
set :branch, "master"
set :deploy_via, :remote_cache