Skip to content

Instantly share code, notes, and snippets.

@kaos
kaos / Vagrantfile
Created May 30, 2013 18:58
Vagrant setup for zotonic
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure("2") do |config|
# All Vagrant configuration is done here. The most common configuration
# options are documented and commented below. For a complete reference,
# please see the online documentation at vagrantup.com.
# Every Vagrant virtual environment requires a box to build off of.
config.vm.box = "precise32"
@house9
house9 / Vagrantfile
Created June 12, 2013 01:22
Vagrantfile for postgres install via puppet
# 1) install puppet locally
# - install modules to local modules directory
# puppet module install puppetlabs/postgresql --force -i modules
# puppet module install puppetlabs/stdlib --force -i modules
# puppet module install puppetlabs/firewall --force -i modules
# puppet module install puppetlabs/apt --force -i modules
# puppet module install ripienaar/concat --force -i modules
# OR
# download tar file from https://forge.puppetlabs.com/puppetlabs/postgresql
# and place into modules directory
@corpit
corpit / upc_check_digit.py
Created January 1, 2014 02:59
Calculate UPC-A check digit in Python
def add_check_digit(upc_str):
"""
Returns a 12 digit upc-a string from an 11-digit upc-a string by adding
a check digit
>>> add_check_digit('02345600007')
'023456000073'
>>> add_check_digit('21234567899')
'212345678992'
>>> add_check_digit('04210000526')
@tfrisk-old
tfrisk-old / gist:11286970
Created April 25, 2014 11:52
Install Erlang and Elixir on Debian Wheezy (7.4)
#!/bin/sh
# Debian has older Erlang package (R15) in official repositories, Elixir requires newer (R17)
wget http://packages.erlang-solutions.com/erlang-solutions_1.0_all.deb
sudo dpkg -i erlang-solutions_1.0_all.deb
sudo apt-get update
sudo apt-get install -y erlang
rm erlang-solutions_1.0_all.deb
# compile Elixir from source
@staltz
staltz / introrx.md
Last active April 3, 2025 04:45
The introduction to Reactive Programming you've been missing
@kjseefried
kjseefried / ubuntu lvm clone-resize
Last active June 20, 2023 17:35 — forked from anonymous/gist:fdcbcc27278c287ce5e0
clone & resize Ubuntu Cloud image from 2GB to 40GB in 2 seconds
# time ./do-all.sh
+ lvcreate -kn -s -n ubunt2 /dev/k2/ubunt
Logical volume "ubunt2" created
+ lvresize -L 40G /dev/k2/ubunt2
Extending logical volume ubunt2 to 40.00 GiB
Logical volume ubunt2 successfully resized
+ echo -en 'd\nn\np\n\n\n\n\n\nw\nq\n'
+ fdisk /dev/k2/ubunt2
Command (m for help): Selected partition 1
@ricardo-rossi
ricardo-rossi / ElasticSearch.sh
Last active February 25, 2025 22:09
Installing ElasticSearch on Ubuntu 14.04
#!/bin/bash
### USAGE
###
### ./ElasticSearch.sh 1.7 will install Elasticsearch 1.7
### ./ElasticSearch.sh will fail because no version was specified (exit code 1)
###
### CLI options Contributed by @janpieper
### Check http://www.elasticsearch.org/download/ for latest version of ElasticSearch
@romanlv
romanlv / gist:91195b41087ba2d94eee
Last active February 7, 2019 10:47 — forked from aht/gist:5097702
ansible postgres playbook with PostGIS 2.1 on Ubuntu 14.04, setting up postgis_template and creating databases from this postgis_template
---
# packages.yml
- name: Add postgres repository
apt_repository: repo='deb http://apt.postgresql.org/pub/repos/apt/ {{ansible_distribution_release}}-pgdg main' state=present
- name: Add postgres repository key
apt_key: url=http://apt.postgresql.org/pub/repos/apt/ACCC4CF8.asc state=present
@klepsydra
klepsydra / sync-fail2ban.sh
Last active January 11, 2024 15:11
Block globally reported hack attempts using your local iptables firewall rules
#!/bin/bash
## Update fail2ban iptables with globally known attackers.
## Actually, runs 100% independently now, without needing fail2ban installed.
##
## /etc/cron.daily/sync-fail2ban
##
## Author: Marcos Kobylecki <[email protected]>
## http://www.reddit.com/r/linux/comments/2nvzur/shared_blacklists_from_fail2ban/
@kotedo
kotedo / erlswitch
Created December 9, 2014 18:57
erlswitch
#!/usr/bin/env bash
# -*- mode: sh -*-
old=$(ls -l /usr/local/lib/erlang | awk '{print $11}')
others=$(ls -ld /usr/local/lib/erlang* | awk '{print $9}' | grep -v "^/usr/local/lib/erlang$")
default=${old}
declare -a arry
cat <<EOF