Skip to content

Instantly share code, notes, and snippets.

View steadystatic's full-sized avatar

Mike Wabst steadystatic

View GitHub Profile
@steadystatic
steadystatic / arch_cheatsheet.txt
Created March 26, 2019 19:35 — forked from yufengwng/arch_cheatsheet.txt
Arch Linux Commands Cheatsheet
pacman
======
view logs: /var/log/pacman.log
update system
# pacman -Syu
list installed packages
# pacman -Q
@steadystatic
steadystatic / install-kubernetes-archlinux.md
Created March 26, 2019 01:30 — forked from StephenSorriaux/install-kubernetes-archlinux.md
Install Kubernetes on bare-metal ArchLinux host

Installing Kubernetes on ArchLinux

Packages

pacman -S curl docker ebtables ethtool wget unzip

Also cfssl is needed but available on AUR, using pacaur

pacaur -S cfssl
@steadystatic
steadystatic / nginx.conf
Created February 20, 2019 16:52 — forked from plentz/nginx.conf
Best nginx configuration for improved security(and performance). Complete blog post here http://tautt.com/best-nginx-configuration-for-security/
# to generate your dhparam.pem file, run in the terminal
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048
@steadystatic
steadystatic / .autoenv.zsh
Last active January 15, 2019 00:31
Setup for Kubernetes autoenv context with Tarrasch/zsh-autoenv
## Runs when I change directory into this project to use its Kubeconfig and update my context status in my prompt
CONFIG=$(pwd)/kubeconfig.yaml
alias kubectl="KUBECONFIG=$CONFIG kubectl"
alias helm="helm --kubeconfig $KUBECONFIG"
kubectl config use-context $(kubectl config current-context)
@steadystatic
steadystatic / linux
Created October 27, 2018 13:42 — forked from jimboroberts/linux
Linux shell tips and tricks
Check if remote port is open with bash:
echo >/dev/tcp/8.8.8.8/53 && echo "open"
Suspend process:
Ctrl + z
Move process to foreground:
fg
Generate random hex number where n is number of characters:
@steadystatic
steadystatic / vpn_status.pl
Last active September 10, 2018 20:28
Check vpnc pid file and print online or offline indicator
#!/usr/bin/perl
#
# VPN pid checker to report online or offline in emoji
#
# Used in tmux prompt so...
# a. No warnings desired
no warnings;
# b. Need to output utf8 for terminal
binmode(STDOUT, ":utf8");
@steadystatic
steadystatic / vpn_status
Last active August 16, 2018 18:18
Simple vpn status zsh function
#!/usr/local/bin/zsh
# Check PID file and display status before prompt
# Example path could be /Users/mike/.zprezto/modules/prompt/functions/vpn_status
# Usage...customize zsh theme (that has prezto module support)...
# e.g. ~/.zprezto/modules/prompt/external/statusline/prezto/prompt_statusline_setup
# Add this:
# autoload -Uz vpn_status
# add-zsh-hook precmd vpn_status
#!/bin/sh
# Kill other sessions
killall openconnect
sleep 2
# Need these variables in current shell profile:
openconnect --pid-file=$VPN_PID -b --servercert $VPN_CERT --authgroup=$VPN_AUTH -u $VPN_USER --script /etc/vpnc/vpnc-script $VPN_IP
@steadystatic
steadystatic / Google-Sheet-Form-Post.md
Created May 11, 2018 20:09 — forked from willpatera/Google-Sheet-Form-Post.md
Post to google spreadsheet from html form

Overview

This collection of files serves as a simple static demonstration of how to post to a google spreadsheet from an external html <form> following the example by Martin Hawksey

Run example

You should be able to just open index.html in your browser and test locally.

However if there are some permissions errors you can make a quick html server with python. Open terminal and cd to the directory where the gist files are located and enter python -m SimpleHTTPServer. By default this creates a local server at localhost:8000

@steadystatic
steadystatic / split_tunneling.md
Created May 1, 2018 22:46 — forked from jagtesh/split_tunneling.md
Split Tunneling tutorial - with openconnect (tested, works with Cisco AnyConnect VPN) Source: http://lists.unix-ag.uni-kl.de/pipermail/vpnc-devel/2009-February/002990.html

Table of Contents

  1. DISCLAIMER 2. Status 3. Introduction 4. Security issues 5. DNS