This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[color] | |
branch = auto | |
status = auto | |
diff = auto | |
[color "diff"] | |
meta = yellow | |
frag = cyan | |
old = red | |
new = green | |
[color "branch"] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
alias berc='bundle exec rails c' | |
alias l="ls -lrt" | |
alias ruch="git diff --name-only --cached | xargs bundle exec rubocop -A" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for f in *_test.py; do mv "$f" "$(echo "$f" | sed 's/_test.py/.py/' | sed 's/^/test_/')"; done |
OlderNewer