Skip to content

Instantly share code, notes, and snippets.

View wupsbr's full-sized avatar

David Ruiz wupsbr

View GitHub Profile
@pantsel
pantsel / docker-compose.yml
Last active September 15, 2023 17:15
kong-postgres-konga compose
version: '2'
volumes:
db-data: {}
services:
konga:
image: pantsel/konga
environment:
NODE_ENV: production
stdin_open: true
network_mode: bridge
@bbrowning
bbrowning / openshift_instructions.md
Last active August 22, 2018 15:59
Running Apache OpenWhisk on OpenShift

Running Apache OpenWhisk on OpenShift

Prerequisites

These instructions assume you are using Minishift 1.0.1 or newer as your OpenShift installation.

You'll also need a wsk binary in your $PATH to interact with OpenWhisk after it's deployed. Download the latest version for your OS

@damncabbage
damncabbage / nginx
Last active October 28, 2015 14:18
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"
# 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
@hanxue
hanxue / poor_mans_telnet.ino
Created April 7, 2014 10:36
Poor Man's Telnet serial for Intel Galileo
/*
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.
@philfreo
philfreo / gist:7257723
Created October 31, 2013 21:44
Facebook Perl source code from 2005. When browsing around thefacebook.com in 2005 the server spit out some server-side source code rather than running it. I believe this was for their old graph feature that let you visualize the graph between all your friends. The filename is `mygraph.svgz` and contains some gems such as a commented out "zuck" d…
#!/usr/bin/perl
use Mysql;
use strict;
use vars qw($school_name);
use vars qw($pass);
require "./cgi-lib.pl";
@dergachev
dergachev / GIF-Screencast-OSX.md
Last active April 1, 2025 01:48
OS X Screencast to animated GIF

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:

@aydiv
aydiv / TestPayment.py
Created April 25, 2012 16:51
Paypal Adaptive Payments - Python sample for parallel payment
import urllib
import urlparse
import collections
import httplib
def TestPayment():
#Set our headers
headers = {
'X-PAYPAL-SECURITY-USERID': 'jb-us-seller_api1.paypal.com',
'X-PAYPAL-SECURITY-PASSWORD': 'WX4WTU3S8MY44S7F',
@neocoder
neocoder / MainViewController.m
Created April 10, 2012 13:44
PhoneGap/Cordova patch to disable page elastic bounce
- (void)viewDidLoad
{
[super viewDidLoad];
UIScrollView* sv = nil;
for(UIView* v in self.webView.subviews){
if([v isKindOfClass:[UIScrollView class] ]){
sv = (UIScrollView*) v;
sv.bounces = NO;
}
}
@kosso
kosso / background_demo.js
Created March 12, 2011 17:55
Background Service notification for Titanium
/* Kosso : March 12th 2011
This the only way I managed to do this without the app crashing on resume.
Done slightly differently to the KS example, since they unregister the service and
do not use a setInterval timer.
*/
//############ in app.js :
// test for iOS 4+