Skip to content

Instantly share code, notes, and snippets.

@mikechau
mikechau / iptables_rules.sh
Created December 5, 2016 20:34 — 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
@mikechau
mikechau / arch-linux-encrypted-kernel-downgrade
Created November 27, 2016 18:19 — forked from sieste/arch-linux-encrypted-kernel-downgrade
Minimal instructions for kernel downgrade on arch linux with full system encryption using dm-crypt and luks
# Kernel downgrade on ARCH Linux with encrypted file-system
#
# assumes you followed https://gist.github.com/mattiaslundberg/8620837 to set up your system
#
# Credits:
# https://stephentanner.com/restoring-grub-for-an-encrypted-lvm.html
# https://wiki.archlinux.org/index.php/Kernel_Panics
# Boot into archiso live USB
@mikechau
mikechau / arch-linux-install
Created November 27, 2016 18:19 — forked from mattiaslundberg/arch-linux-install
Minimal instructions for installing arch linux on an UEFI system with full system encryption using dm-crypt and luks
# Install ARCH Linux with encrypted file-system and UEFI
# The official installation guide (https://wiki.archlinux.org/index.php/Installation_Guide) contains a more verbose description.
# Download the archiso image from https://www.archlinux.org/
# Copy to a usb-drive
dd if=archlinux.img of=/dev/sdX bs=16M && sync # on linux
# Boot from the usb. If the usb fails to boot, make sure that secure boot is disabled in the BIOS configuration.
# Set swedish keymap
@mikechau
mikechau / pulseaudio-audinst-hudmx2.md
Created November 19, 2016 05:28 — forked from puleglot/pulseaudio-audinst-hudmx2.md
Audinst HUD-mx2 workaround for pulseaudio

Intro

The first alternate setting reported by Audinst HUD-mx2 is an AC-3 setting (see lsusb -v output). It seems that pulseaudio always picks the first alternate setting by default, so we need to manually point it to the right PCM device.

pulseaudio profile

/etc/pulse/profile-HUDmx2.conf contents:

# http://mailman.alsa-project.org/pipermail/alsa-devel/2013-July/063676.html

[General]
auto-profiles = yes
@mikechau
mikechau / taskdef.json
Created November 19, 2016 05:22 — forked from corentone/taskdef.json
Logentries ECS definition
{
"containerDefinitions": [
{
"volumesFrom": [],
"portMappings": [],
"command": [
"-t <TOKEN>",
"-j",
"--skipByName ecs-agent"
],
# http://www.commandlinefu.com/commands/view/13708/show-memory-usage-of-all-docker-lxc-containers
for line in `docker ps | awk '{print $1}' | grep -v CONTAINER`; do docker ps | grep $line | awk '{printf $NF" "}' && echo $(( `cat /sys/fs/cgroup/memory/docker/$line*/memory.usage_in_bytes` / 1024 / 1024 ))MB ; done
@mikechau
mikechau / ocaml.md
Last active June 9, 2016 14:25
ocaml install
sudo add-apt-repository --yes ppa:avsm/ppa
sudo apt-get update -qq
sudo apt-get install -y opam
opam init
eval `opam config env`
opam install utop
opam install batteries core
const routes = (
<Router history={hashHistory}>
<Route path="/" component={Root}>
<IndexRoute component={Splash} />
<Route path="/eslint" component={Root}>
<Route path="/check" component={Root} />
</Route>
</Route>
<Route path="/test" component={Root}>
- npm init
- npm install react react-dom --save
- npm install redux react-redux --save
- npm install lodash --save
- npm install webpack --save
- npm install webpack-dev-server --save-dev
- npm install babel-cli babel-core --save
- npm install babel-loader --save
- npm install babel-runtime --save
- npm install babel-plugin-transform-object-assign babel-preset-es2015 babel-plugin-transform-export-extensions babel-plugin-transform-class-properties babel-preset-stage-2 babel-preset-react
@mikechau
mikechau / reverse_proxy_rack.rb
Last active April 22, 2016 19:50
reverse_proxy_rack
require 'rack/handler/thin'
require 'rack/reverse_proxy'
require 'pathname'
cert = Pathname(__dir__).join('ssl/server.crt').to_s
pkey = Pathname(__dir__).join('ssl/server.key').to_s
app = Rack::Builder.app do
use Rack::ReverseProxy do
reverse_proxy_options preserve_host: true, verify_peer: OpenSSL::SSL::VERIFY_NONE