Skip to content

Instantly share code, notes, and snippets.

View kenrogers's full-sized avatar

kenny kenrogers

View GitHub Profile

tmux cheatsheet

As configured in my dotfiles.

start new:

tmux

start new with session name:

@wesbos
wesbos / tab-trigger.js
Created November 16, 2015 19:33
How to properly get a TAB trigger working with Emmet inside of JSX
{
"keys": ["tab"],
"command": "expand_abbreviation_by_tab",
// put comma-separated syntax selectors for which
// you want to expandEmmet abbreviations into "operand" key
// instead of SCOPE_SELECTOR.
// Examples: source.js, text.html - source
"context": [
{
@clementi
clementi / is_constitutional.py
Created March 1, 2017 21:51
Determines whether the supplied bill is constitutional according to the US Constitution.
import time
import random
import sys
import os.path
def main():
if len(sys.argv) < 2:
print("File required.")
else: