Skip to content

Instantly share code, notes, and snippets.

global
log 127.0.0.1 local2
chroot /var/lib/haproxy
pidfile /var/run/haproxy.pid
maxconn 4000
user haproxy
group haproxy
daemon
@AndrewRussellHayes
AndrewRussellHayes / iptables_rules.sh
Created December 7, 2016 19:31 — forked from virtualstaticvoid/iptables_rules.sh
25 Most Frequently Used Linux IPTables Rules Examples
# Modify this file accordingly for your specific requirement.
# http://www.thegeekstuff.com
# 1. Delete all existing rules
iptables -F
# 2. Set default chain policies
iptables -P INPUT DROP
iptables -P FORWARD DROP
iptables -P OUTPUT DROP
man() {
env \
LESS_TERMCAP_mb=$(printf "\e[1;31m") \
LESS_TERMCAP_md=$(printf "\e[1;31m") \
LESS_TERMCAP_me=$(printf "\e[0m") \
LESS_TERMCAP_se=$(printf "\e[0m") \
LESS_TERMCAP_so=$(printf "\e[1;44;33m") \
LESS_TERMCAP_ue=$(printf "\e[0m") \
LESS_TERMCAP_us=$(printf "\e[1;32m") \
man "$@"
@AndrewRussellHayes
AndrewRussellHayes / rename.sh
Created July 3, 2016 20:30
rename dotfiles without dots. NOTE: uses rename command
#brew install rename (for macosx)
rename 's/^\.*//' .*
@AndrewRussellHayes
AndrewRussellHayes / README.md
Last active March 22, 2016 18:10 — forked from linjunpop/README.md
Rails flash messages with AJAX requests

Requirements

  • Docker Machine + Docker
  • curl
  • A Virtualbox-driven Docker Machine called "default" docker-machine create --driver virtualbox default (this is the default with Docker toolkit).

Usage

The git.io URL (http://git.io/vsk46) is a shortened form of the raw url of the plist.

@AndrewRussellHayes
AndrewRussellHayes / ssh_helper.sh
Created October 22, 2015 18:48
Install local ssh key on remote host
ssh-copy-id -i ~/.ssh/id_rsa.pub remote-host
@AndrewRussellHayes
AndrewRussellHayes / OutputStreamWriter.java
Created October 20, 2015 12:37
OutputStreamWriter is the preferred file write method as it does not make encoding assumptions
try (OutputStreamWriter osw =
new OutputStreamWriter(new FileOutputStream("/FilePath/Here"), "UTF-8")) {
PrintWriter pw = new PrintWriter(osw);
pw.write("Hello World");//does not add newline character
pw.close();
} catch (IOException e) {
e.printstacktrace;
}
<div class="row improve-article-wrapper">
<div class="col-sm-1 col-sm-offset-1">
<a class="btn btn-primary btn-lg" href="https://github.com/{{ site.github.repository_nwo }}/edit/{{ site.branch }}/{{ page.path }}" title="Help Improve article {{ page.path }}">Edit</a>
</div>
<div class="col-sm-3">
<a class="btn btn-success btn-lg" href="{{ site.github.owner_url }}" title="Link to {{site.github.owner_name}} GitHub"><span class="fa fa-github">&nbsp;</span>Author Github</a>
</div>
<div class="col-sm-6 col-sm-offset-1">
<p class="improve-article">This content is open source. <br />
Please <a href="https://github.com/{{ site.github.repository_nwo }}/edit/{{ site.branch }}/{{ page.path }}" title="Help Improve article {{ page.path }}">help improve it</a>.</p>
#!/bin/bash
# store the current dir
CUR_DIR=$(pwd)
# Let the person running the script know what's going on.
echo "\n\033[1mPulling in latest changes for all repositories...\033[0m\n"
# Find all git repositories and update it to the master latest revision
for i in $(find . -name ".git" | cut -c 3-); do