Skip to content

Instantly share code, notes, and snippets.

@erophames
erophames / install-nodejs-amazon-ec2-centos
Created February 15, 2016 19:15 — forked from douglascorrea/install-nodejs-amazon-ec2-centos
Install NodeJS on Amazon Linux EC2 (CentOS)
sudo yum install openssl openssl-devel
sudo yum groupinstall "Development Tools"
sudo yum install git-core
git clone git://github.com/joyent/node.git
cd node
./configure
make
@erophames
erophames / gist:32b46418cd7ff0d65b50
Created October 9, 2015 02:54 — forked from necolas/gist:2215692
Git submodules
# Workflow from https://github.com/necolas/dotfiles
# Add the new submodule
git submodule add git://example.com/remote/path/to/repo.git vim/bundle/one-submodule
# Initialize the submodule
git submodule init
# Clone the submodule
git submodule update
# Stage the changes
git add vim/bundle/one-submodule
@erophames
erophames / post-receive
Created October 8, 2015 09:11 — forked from mkoryak/post-receive
git post-receive hook for a simple deployment of a nodejs app
#!/bin/sh
echo "Deploying..."
unset GIT_DIR
cd /home/deploy/srv/destructly/
GIT_WORK_TREE=/home/deploy/srv/destructly/
git checkout -f master
pwd
echo "Stopping service"
sudo forever stop `forever list | grep destructly.js | awk '{ print $2 }' | sed 's/\[\(.*\)\]/\1/'`
echo "Installing dependencies"
@erophames
erophames / favicon-interceptor.js
Last active September 19, 2015 13:45 — forked from kentbrew/favicon-interceptor.js
How to short-circuit those annoying favicon requests in node.js
// early experiments with node had mysterious double requests
// turned out these were for the stoopid favicon
// here's how to short-circuit those requests
// and stop seeing 404 errors in your client console
var http = require('http');
http.createServer(function (q, r) {
// control for favicon
@erophames
erophames / main.go
Last active September 15, 2015 11:40
Simple pool worker example
package main
import (
"fmt"
"math"
)
func isPrime(n float64) bool {
max := int(math.Sqrt(n))
for i := 2; i < max; i++ {