Skip to content

Instantly share code, notes, and snippets.

View Jfaler's full-sized avatar
✏️

Justin Faler Jfaler

✏️
View GitHub Profile
@Jfaler
Jfaler / tmux-cheatsheet.markdown
Created June 5, 2017 03:35 — forked from MohamedAlaa/tmux-cheatsheet.markdown
tmux shortcuts & cheatsheet

tmux shortcuts & cheatsheet

start new:

tmux

start new with session name:

tmux new -s myname
@Jfaler
Jfaler / digital_ocean_setup.md
Created June 9, 2017 05:33 — forked from ChuckJHardy/digital_ocean_setup.md
DigitalOcean Ubuntu 14.04 x64 + Rails 4 + Nginx + Unicorn + PostgreSQL + Capistrano 3 Setup Instructions

DigitalOcean Ubuntu 14.04 x64 + Rails 4 + Nginx + Unicorn + PostgreSQL + Capistrano 3

SSH into Root

$ ssh root@123.123.123.123

Change Root Password

Keybase proof

I hereby claim:

  • I am jfaler on github.
  • I am juicetin (https://keybase.io/juicetin) on keybase.
  • I have a public key ASDpeJdQK_kvUT1Xu4uWIXHdHXwFwB3HTjnLbUVFzUUj9Ao

To claim this, I am signing this object:

@Jfaler
Jfaler / Ethereum wallet config
Last active May 5, 2020 00:27
Ethereum wallet configuration for JSON RPC 2.0 with geth
sudo add-apt-repository -y ppa:ethereum/ethereum
sudo apt-get update
sudo apt-get install ethereum
apt-get install geth
geth --testnet --syncmode="light" --rpc --rpcapi db,eth,net,web3,personal --cache=1024 --rpcport 8545 --rpcaddr 127.0.0.1 --rpccorsdomain "*"
@Jfaler
Jfaler / masm.md
Last active November 19, 2021 06:58
MASM Command line

MASM ml64 & ml

Commands to compile assembly for the Kip Irvine library

MASM Files location

C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.27.29110\bin

MASM ml64 x64 command

ml /DM=main example.asm /link /entry:main /subsystem:console