Skip to content

Instantly share code, notes, and snippets.

@jotebe
jotebe / boxstarter.ps1
Created September 14, 2017 23:50 — forked from jessfraz/boxstarter.ps1
Boxstarter Commands for a new Windows box.
# Description: Boxstarter Script
# Author: Jess Frazelle <jess@linux.com>
# Last Updated: 2017-09-11
#
# Run this boxstarter by calling the following from an **elevated** command-prompt:
# start http://boxstarter.org/package/nr/url?<URL-TO-RAW-GIST>
#
# Learn more: http://boxstarter.org/Learn/WebLauncher
#---- TEMPORARY ---
@jotebe
jotebe / crunchbuntu.sh
Created June 28, 2017 04:49 — forked from brianly/crunchbuntu.sh
Install a very basic version of Ubuntu and then make it like CrunchBang (original source: http://crunchbang.org/forums/viewtopic.php?id=36252)
# do mini-install from http://archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/netboot/mini.iso
# next do wget http://pastebin.com/raw.php?i=K8AmdciE -O- | tr -d '\r' > install.sh && chmod +x install.sh && ./install.sh
mkdir crunchbuntu && pushd crunchbuntu
# libvala dependency was renamed to vala in trusty, get an older package
wget -c https://launchpad.net/~vala-team/+archive/ubuntu/ppa/+files/libvala-0.10-0_0.10.4-1ubuntu1~lucid1_amd64.deb
sudo dpkg -i libvala-*
# add waldorf repository and install crunchbang packages
@jotebe
jotebe / ubuntu-customizer-install-and-update.sh
Created June 27, 2017 20:53
Little bash script to build Ubuntu customizer
#!/bin/bash
# redownload and build deb for ubuntu customizer from github
# https://github.com/kamilion/customizer/
cd $HOME
wget https://github.com/clearkimura/Customizer/archive/master.tar.gz
tar zxvf master.tar.gz
@jotebe
jotebe / openpgp.txt
Created November 20, 2016 20:42
OpenKeychain Linked Identity
This Gist confirms the Linked Identity in my OpenPGP key, and links it to this GitHub account.
Token for proof:
[Verifying my OpenPGP key: openpgp4fpr:17559b18064f07648e8213832df49dd460c01af4]
worker_processes 1;
events { worker_connections 1024; }
http {
#force webmail.example to use ssl
server {
listen 80;
server_name webmail.example.org;
return 301 https://webmail.example.org$request_uri;
}

Keybase proof

I hereby claim:

  • I am jotebe on github.
  • I am jtmb (https://keybase.io/jtmb) on keybase.
  • I have a public key whose fingerprint is 1755 9B18 064F 0764 8E82 1383 2DF4 9DD4 60C0 1AF4

To claim this, I am signing this object:

i3 Window Manager Cheat Sheet
Alt - Default Op Key (MOD1), Windows Key(MOD4) is other com-
monly used key
Application Functions
Alt-D - open programs using Dmenu
Alt-F - Full screen
Alt-E - Toggle horizontal/vertical split
Alt-S - Stacking mode
Alt-W - Tabbed mode
Alt-Enter - open urxvt terminal
alias sagu="sudo apt-get update && sudo apt-get upgrade"
alias sagud="sudo apt-get update"
alias sagug="sudo apt-get upgrade"
alias sagi="sudo apt-get install"
alias mkdir="mkdir -pv"
alias wget="wget -c"
alias du="ncdu"
alias quitnow="pkill -9 -f lxsession"