Skip to content

Instantly share code, notes, and snippets.

View justinwalz's full-sized avatar
🏃‍♀️

Justin Walz justinwalz

🏃‍♀️
View GitHub Profile
@justinwalz
justinwalz / keybase.md
Created February 13, 2017 17:52
Keybase

Keybase proof

I hereby claim:

  • I am justinwalz on github.
  • I am justinwalz (https://keybase.io/justinwalz) on keybase.
  • I have a public key ASDVIcZ3Z6c4_KTK_c7LwVpsUxSPdn95GhNLYNCIJHetdgo

To claim this, I am signing this object:

@justinwalz
justinwalz / .tmux.conf
Last active February 2, 2024 08:25
basic tmux conf
# allow reload of this file with PRE r
bind r source-file ~/.tmux.conf \; display "Reloaded."
# switch prefix to control-a, unmap b, allow double-a to go through
set -g prefix C-a
unbind C-b
bind C-a send-prefix
# -r repeat time (Default 500 millis)
set -g repeat-time 2000
@justinwalz
justinwalz / tmux_cheat_sheet.txt
Created March 15, 2016 06:05
tmux cheat sheet
#######################################
Sessions
# list sessions
tmux ls
# new session
tmux new -s <foo>
# new session with name
tmux new -s <foo> -n <shell>
{
"name": "bitium-idp-web",
"version": "1.0.0",
"description": "Host levelweb",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js"
},
"author": "",
@justinwalz
justinwalz / 0_reuse_code.js
Created September 30, 2015 00:51
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
@justinwalz
justinwalz / setup.sh
Last active December 31, 2015 09:39
Init EC2 Instance
# run this script to to basic initialization
sudo apt-get install -y python-software-properties python g++ make
sudo add-apt-repository ppa:chris-lea/node.js
sudo apt-get update
sudo apt-get install -y nodejs
sudo apt-get update
# install mongo server
sudo apt-get install -y mongodb-server
@justinwalz
justinwalz / index.html
Created October 5, 2013 01:11
My first Gist. A sample basic HTML template.
<!DOCTYPE html>
<html>
<head>
<!-- Import any scripts + style sheets here -->
</head>
<body>
<h4>Hello World!</h4>
<p>Add in content...</p>
</body>
</html>