Skip to content

Instantly share code, notes, and snippets.

@wteuber
wteuber / list_gists_with_url.sh
Created September 23, 2023 19:46
List gists with gh cli
# install and set up gh (https://cli.github.com/)
GH_USER=`gh auth status | grep -oue "Logged in to github.com as [^ ]*" | grep -oue "[^ ]*$"`
gh gist list -L1000 | sed -e "s/^/https:\/\/gist.github.com\/$GH_USER\//"
@wteuber
wteuber / .zshrc
Last active November 14, 2023 12:46
git aliases
# Print origin/HEAD branch name (default branch)
gdb() {
git remote show origin | grep 'HEAD branch' | cut -d ' ' -f5
}
# Print origin/HEAD branch name (default branch)
# uses ohmyzsh git plugin aliases https://github.com/ohmyzsh/ohmyzsh/blob/master/plugins/git/git.plugin.zsh
gcdb() {
gco `gdb`
}
@wteuber
wteuber / iterm_open_file_in_intellij_idea.md
Last active May 24, 2023 13:22
iterm_open_file_in_intellij_idea
[ -z "\2" ] &&  /Applications/IntelliJ\ IDEA.app/Contents/MacOS/idea \1 || /Applications/IntelliJ\ IDEA.app/Contents/MacOS/idea --line \2  \1

image

@wteuber
wteuber / iterm_open_file_in_rubymine.md
Created May 22, 2023 13:10
iTerm open file in RubyMine
[ -z "\2" ] &&  /usr/local/bin/mine \1 || /usr/local/bin/mine --line \2  \1

image

@wteuber
wteuber / git_checkout_branch_from_previous_commit_message_ruby.sh
Last active June 14, 2023 08:28
Git checkout branch from previous commit message
git checkout -b `git log -1 --pretty=%s | ruby -e "puts gets.downcase.gsub(/[^a-zA-Z0-9]+/, ' ').strip.tr(' ','_')"`
@wteuber
wteuber / iterm-colors-to-vscode.js
Created May 18, 2022 13:10 — forked from experimatt/iterm-colors-to-vscode.js
A simple script to use your iTerm color profile in vscode's built-in terminal.
// This script takes an iTerm Color Profile as an argument and translates it for use with Visual Studio Code's built-in terminal.
//
// usage: `node iterm-colors-to-vscode.js [path-to-iterm-profile.json]
//
// To export an iTerm Color Profile:
// 1) Open iTerm
// 2) Go to Preferences -> Profiles -> Colors
// 3) Other Actions -> Save Profile as JSON
//
// To generate the applicable color settings and use them in VS Code:
@wteuber
wteuber / git_branch_gone_prune_delete.sh
Last active October 29, 2019 13:36
git: prune and delete gone local branches
#!/usr/bin/env bash
git remote prune origin && git branch -vv | grep 'origin/.*: gone]' | awk '{print $1}' | xargs git branch -d
@wteuber
wteuber / mysql-install.sh
Created May 28, 2019 07:53 — forked from cemeng/mysql-install.sh
Codeship Install MySQL 5.6
#!/bin/bash
# Install a custom MySQL 5.7 version - https://www.mysql.com
#
# To run this script on Codeship, add the following
# command to your project's setup commands:
# \curl -sSL https://raw.githubusercontent.com/codeship/scripts/master/packages/mysql-5.7.sh | bash -s
#
# Add the following environment variables to your project configuration
# (otherwise the defaults below will be used).
# * MYSQL_VERSION
@wteuber
wteuber / colored_git_diff_html.sh
Created May 27, 2019 12:59
Colored git word diff
# Mac OS X:
script -q colored_word_diff.txt git diff --word-diff
cat colored_word_diff.txt|ansi2html > colored_word_diff.html
@wteuber
wteuber / redirection.txt
Created August 17, 2018 10:33
All about redirection of terminal/file output.
|| visible in terminal || visible in file || existing
Syntax || StdOut | StdErr || StdOut | StdErr || file
==========++==========+==========++==========+==========++===========
> || no | yes || yes | no || overwrite
>> || no | yes || yes | no || append
|| | || | ||
2> || yes | no || no | yes || overwrite
2>> || yes | no || no | yes || append
|| | || | ||
&> || no | no || yes | yes || overwrite