Skip to content

Instantly share code, notes, and snippets.

View monkseal's full-sized avatar

Kevin English monkseal

  • Kenglish.co - Ruby, React.js, Javascript Developer
  • South Lake Tahoe/San Diego/Honolulu
View GitHub Profile
@monkseal
monkseal / convert.sh
Created October 28, 2021 15:38
Combine images with convert
# Create new image (new-onboarding.png) veritical append
convert -append onboarding.png service-area.png new-onboarding.png
# Create new image (new-onboarding.png) horizontal append
convert +append onboarding.png service-area.png new-onboarding.png
@monkseal
monkseal / .gitconfig
Created February 24, 2023 14:34
LongLakeRoad .gitconfig
[color]
branch = auto
status = auto
diff = auto
[color "diff"]
meta = yellow
frag = cyan
old = red
new = green
[color "branch"]
@monkseal
monkseal / .aliases
Last active February 24, 2023 16:58
LongLake Road alias berc='bundle exec rails c'.aliases
alias berc='bundle exec rails c'
alias l="ls -lrt"
alias ruch="git diff --name-only --cached | xargs bundle exec rubocop -A"
@monkseal
monkseal / keng-refined.zsh-theme
Created February 24, 2023 14:50
My zsh theme .oh-my-zsh/themes/keng-refined.zsh-theme
#!/usr/bin/env zsh
# ------------------------------------------------------------------------------
#
# Pure - A minimal and beautiful theme for oh-my-zsh
#
# Based on the custom Zsh-prompt of the same name by Sindre Sorhus. A huge
# thanks goes out to him for designing the fantastic Pure prompt in the first
# place! I'd also like to thank Julien Nicoulaud for his "nicoulaj" theme from
# which I've borrowed both some ideas and some actual code. You can find out
@monkseal
monkseal / rename_py_test.sh
Created May 24, 2023 16:20
Rename _test.py to test_...py
for f in *_test.py; do mv "$f" "$(echo "$f" | sed 's/_test.py/.py/' | sed 's/^/test_/')"; done