This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
##### This is how to set up a triple redundant postgres. | |
##### Use a main box on Hetzner, a secondary small box on Hetzner in a | |
##### different datacenter for query replication, and a Hetzner Storage-Box | |
##### for file replication. | |
##### There will always be two copies of the data in different datacenters by the time | |
##### the transaction completes. | |
##### Here, Wireguard is used to have an internal network between the two hosts, | |
##### but Hetzner networks could also be used. SSH access between the two boxes |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(jd@XXX) /home/jd/shovel> time ./shovel.py jd_test | |
got 901 messages | |
real 0m1.617s | |
user 0m0.558s | |
sys 0m0.044s |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Steps to build and install tmux from source. | |
# Takes < 25 seconds on EC2 env [even on a low-end config instance]. | |
VERSION=2.7 | |
sudo yum -y remove tmux | |
sudo yum -y install wget tar libevent-devel ncurses-devel | |
wget https://github.com/tmux/tmux/releases/download/${VERSION}/tmux-${VERSION}.tar.gz | |
tar xzf tmux-${VERSION}.tar.gz | |
rm -f tmux-${VERSION}.tar.gz | |
cd tmux-${VERSION} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#![feature(macro_rules)] | |
/// MIT license etc. etc. | |
/// | |
/// Experimenting with Python-like list comprehensions. | |
/// | |
/// An attempt to explore the possibility space for ergonomic improvements | |
/// in Rust that can come post v1.0. Notice that there are not type declerations. | |
/// Aside from the "c!" macro invocation, Rust allows for an exact copy of the | |
/// Python comprehension syntax. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Install Homebrew | |
ruby <(curl -fsSk https://raw.github.com/mxcl/homebrew/go) | |
# Follow on-screen instructions (X11 isn't necessary for this if it shows as not installed) | |
brew install node | |
# Open .bashrc and add this line (create .bashrc if its not in your home directory already) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0"?> | |
<root> | |
<item> | |
<name>Easy access for Umlauts</name> | |
<identifier>private.easy_umlaut_access</identifier> | |
<autogen> | |
--KeyToKey-- | |
KeyCode::A, ModifierFlag::OPTION_L | ModifierFlag::SHIFT_L, | |
KeyCode::U, ModifierFlag::OPTION_L, KeyCode::A, ModifierFlag::SHIFT_L | |
</autogen> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"""Build an .xls file with all background colors vs patterns possibilities""" | |
import xlwt | |
wb = xlwt.Workbook() | |
ws = wb.add_sheet("Colors") | |
ws.write(0, 0, "Colors/Patterns") | |
for pat_index in range(0, 16): | |
ws.write(0, pat_index + 1, str(pat_index)) |