Skip to content

Instantly share code, notes, and snippets.

# Grip is a GitHub Markdown preview service add your token and run
# grip:
# build:
# context: https://raw.githubusercontent.com/docker-library/python/master/3.8/alpine3.11/Dockerfile
# command: "pip install grip"
# image: python:3
#TEST
#grip --pass=$GITHUB_TOKEN -b aws-iam-users/subscriptions-team/README.md
favorite-tools
ack
acmetool
aircrack-ng
airspy
alacritty
android-tools
arp-scan
asciinema

Keybase proof

I hereby claim:

  • I am brandoncamenisch on github.
  • I am brandoncamenisch (https://keybase.io/brandoncamenisch) on keybase.
  • I have a public key whose fingerprint is D2E7 BFDA 0FEE 2689 7949 3AD7 E3CB E900 7FAD A4F4

To claim this, I am signing this object:

#!/bin/sh
for i in $(cat $1); do
if [ ! -d $i ]; then
git clone git@bitbucket.org:penskemediacorp/$i.git
else
echo "Skipping $i"
fi
done
@brandoncamenisch
brandoncamenisch / start-docker-compose
Last active April 19, 2019 23:57
Starting a WP project
docker-compose up -d wp
docker-compose run -v ~/.ssh/id_rsa:/root/.ssh/id_rsa --rm pipeline-build
docker-compose run --rm pipeline-test
@brandoncamenisch
brandoncamenisch / arch-linux-install
Created November 17, 2016 17:15 — forked from binaerbaum/arch-linux-install
Minimal instructions for installing arch linux on an UEFI NVMe 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 swiss-french keymap
@brandoncamenisch
brandoncamenisch / Remove post types from multisite
Last active April 5, 2019 19:13
Delete certain post type from network of sites using wp-cli
wp site list --field=url | while read SITE ; do wp post delete $( wp post list --post_type='vistage_chair' --ids --url=$SITE ) --url=$SITE; done