Skip to content

Instantly share code, notes, and snippets.

View wupsbr's full-sized avatar

David Ruiz wupsbr

View GitHub Profile
@wupsbr
wupsbr / nginx
Created October 28, 2015 14:18 — forked from damncabbage/nginx
Monit, Nginx and multiple check types.
# /etc/monit/conf.d/nginx
check program nginx-http with path "/etc/monit/bin/nginx-check.sh"
group www
group nginx
start program = "/bin/true" # Prevent duplicate service starts.
stop program = "/usr/sbin/service nginx stop" # We don't care if it tries to kill nginx multiple times. :)
if status != 0 then restart # or alert, or whatever
depends on nginx-pid # Don't even try to run until the pidfile is there.
check process nginx-pid with pidfile "/run/nginx.pid"
/*
Poor Man's Telnet - a tiny Galileo/Arduino sketch to talk to the
Galileo underlying Linux command line.
By Mikal Hart
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
# Node-WebKit CheatSheet
# Download: https://github.com/rogerwang/node-webkit#downloads
# Old Versions: https://github.com/rogerwang/node-webkit/wiki/Downloads-of-old-versions
# Wiki: https://github.com/rogerwang/node-webkit/wiki
# How: https://github.com/rogerwang/node-webkit/wiki/How-node.js-is-integrated-with-chromium
# 1. Run your application.
# https://github.com/rogerwang/node-webkit/wiki/How-to-run-apps

Step 1: Clone the bundles into your Sublime Text packages directory

cd ~/Library/Application\ Support/Sublime\ Text\ 2/Packages
git clone git://github.com/jashkenas/coffee-script-tmbundle CoffeeScript
git clone https://github.com/miksago/jade-tmbundle.git Jade
git clone https://github.com/LearnBoost/stylus.git Stylus

Step 2: Restart Sublime Text 2

// phantomjs code to log in to Amazon
// based on the code from this Stackoverflow answer: http://stackoverflow.com/questions/9246438/how-to-submit-a-form-using-phantomjs
// I'm injecting jQuery so this assumes you have jquery in your project directory
var page = new WebPage(), testindex = 0, loadInProgress = false;
page.onConsoleMessage = function(msg) {
console.log(msg);
};

OS X Screencast to animated GIF

This gist shows how to create a GIF screencast using only free OS X tools: QuickTime, ffmpeg, and gifsicle.

Screencapture GIF

Instructions

To capture the video (filesize: 19MB), using the free "QuickTime Player" application:

Django Stack

Overview

This is a set of instructions to setup a Django Nginx Gunicorn MySQL/Postgres stack on a single Amazon EC2 instance.

Server - AWS