Skip to content

Instantly share code, notes, and snippets.

View jimador's full-sized avatar

James Dunnam jimador

  • Charleston, SC
View GitHub Profile
@jimador
jimador / .zshrc
Created July 31, 2020 20:18 — forked from QinMing/.zshrc
.zshrc (lazy loading shell functions)
# Copyright (c) 2016-2018 Ming Qin (覃明) <https://github.com/QinMing>
# Open source under MIT LICENSE.
ZSH_THEME="agnoster"
plugins=(zsh-autosuggestions git pip django docker docker-compose)
# ......
unsetopt AUTO_CD
# AUTO_CD: if the command isn't found in the current directory, the shell will automatically cd into the command name, if the directory is found.
@jimador
jimador / quick_approve.js
Created May 21, 2020 12:54 — forked from lamp/quick_approve.js
Mark All Issues on codeclimate as wontfix
$('li[data-issue-status-name="wontfix"]').each((i, e) => { e.click() })
$('input[name="commit"]').each((i, e) => { e.click() })