Skip to content

Instantly share code, notes, and snippets.

@kisel
kisel / install_nodejs_ubuntu.sh
Created December 22, 2013 09:33
Installs NodeJS & npm from sources on Ubuntu
#!/bin/sh
# Installs NodeJS & npm from sources on Ubuntu
set -e
apt-get install -y build-essential python curl wget
cd /tmp
wget http://nodejs.org/dist/v0.10.24/node-v0.10.24.tar.gz
@kisel
kisel / install_couchdb1.4_ubuntu12.04.sh
Last active January 1, 2016 02:29
Installs CouchDb 1.4 from sourcesfor docker ubuntu:12.04 image
#!/bin/sh
# Installs CouchDb to Ubuntu 12.04
# for docker ubuntu:12.04
set -e
# echo "deb http://archive.ubuntu.com/ubuntu precise universe" > /etc/apt/sources.list.d/ubuntu-precise-universe.list
# apt-get update
#!/usr/bin/env ruby
# script to upload binaries to github release from Jenkins
# [email protected]
require 'json'
require 'restclient'
require 'uri'
GITHUB_OAUTH_TOKEN=ENV['GITHUB_OAUTH_TOKEN'] || abort("GITHUB_OAUTH_TOKEN not specified")