Skip to content

Instantly share code, notes, and snippets.

View jrrembert's full-sized avatar

J. Ryan Rembert jrrembert

View GitHub Profile
@jrrembert
jrrembert / git_aliases.md
Created December 10, 2018 02:41
Git aliases
### Get list of recent commit messages to use during standups
$ git config --global alias.standup "log --since yesterday --author $(git config user.email) --pretty=short"

### Usage
$ git standup
@jrrembert
jrrembert / .inputrc
Created May 30, 2017 20:29
Autocomplete based on history (Bash - remember to source file afterwards)
# Bind up and down arrows to search history based on what's typed.
"\e[A": history-search-backward
"\e[B": history-search-forward
set show-all-if-ambiguous on
set completion-ignore-case on

Keybase proof

I hereby claim:

  • I am jrrembert on github.
  • I am jrrembert (https://keybase.io/jrrembert) on keybase.
  • I have a public key whose fingerprint is 4FED FB6A 36E8 AEA4 726D 30BF 5C8E 0283 27C8 E874

To claim this, I am signing this object:

@jrrembert
jrrembert / keymap.json
Created June 13, 2016 19:21
N1 keymaps (pending release of core:snooze-item)
{
"core:archive-item": "right",
"core:snooze-item": "left"
}
@jrrembert
jrrembert / docs.html
Created April 8, 2016 23:13
Flatdoc base config
<!doctype html>
<!--
Instructions:
- Save this file.
- Replace "USER" with your GitHub username.
- Replace "REPO" with your GitHub repo name.
- Replace "Your Project" with your project name.
- Upload this file (or commit to GitHub Pages).
@jrrembert
jrrembert / .jshintrc
Created March 2, 2016 02:13
Sample JSHint config
{
"node": true,
"globals": {
"describe": false,
"it": false,
"before": false,
"beforeEach": false,
"after": false,
"afterEach": false
}
@jrrembert
jrrembert / react_ide_setup.md
Last active February 24, 2016 19:28
React IDE setup

Atom

Install atom packages

apm install linter linter-eslint react
@jrrembert
jrrembert / README.md
Last active November 2, 2015 21:20
Adding word-left and word-right to iTerm

Add word-left

Menu: iTerm > Preferences > Keys > +

Keyboard shortcut: (whatever, I use Option-left arrow)

Action: Send Escape Sequence

Esc+: b

@jrrembert
jrrembert / shell_tips.md
Created July 13, 2015 20:17
Helpful shell commands

Find process running on certain port

lsof -i :8000 
@jrrembert
jrrembert / git_tips.md
Last active September 30, 2015 00:47
Helpful Git commands

Untrack a directory without deleting files (useful after updating .gitignore)

$ git rm -r --cached <directory name>

Sync local fork with original repo

## Setup remote