Use this shell function to remove local git branches that have been merged in your origin repo (say from a GH PR).
$ git_rm_merged_branches
The following branches have been merged and can be removed:
circleci-tests
curated-comments
@font-face { | |
font-family: "Monaspace Argon"; | |
font-style: normal; | |
font-weight: normal; | |
src: local('Monaspace Argon Regular'); | |
} |
return { | |
font = wezterm.font({ | |
-- family='Monaspace Neon', | |
family='Monaspace Argon', | |
-- family='Monaspace Xenon', | |
-- family='Monaspace Radon', | |
-- family='Monaspace Krypton', | |
weight='Regular', | |
harfbuzz_features={ 'calt', 'liga', 'dlig', 'ss01', 'ss02', 'ss03', 'ss04', 'ss05', 'ss06', 'ss07', 'ss08' }, | |
}), |
@font-face { | |
font-family: "Comic Code"; | |
font-style: normal; | |
font-weight: normal; | |
src: local('Comic Code'); | |
} |
<Node id="23" name="Front Room" location="" basic="4" generic="17" specific="1" roletype="5" devicetype="1536" nodetype="0" type="Multilevel Power Switch" listening="true" frequentListening="false" beaming="true" routing="true" max_baud_rate="40000" version="4" query_stage="Complete"> | |
<Manufacturer id="1d" name="Leviton"> | |
<Product type="3201" id="0001" name="DZ6HD: type=3201, id=0001" /> | |
</Manufacturer> | |
<CommandClasses> | |
<CommandClass id="32" name="COMMAND_CLASS_BASIC" version="1" request_flags="4" innif="true" mapping="38"> | |
<Instance index="1" /> | |
</CommandClass> | |
<CommandClass id="38" name="COMMAND_CLASS_SWITCH_MULTILEVEL" version="4" innif="true"> |
#!/usr/bin/env ruby | |
def method2 | |
1/0 | |
end | |
def method1(bare) | |
begin | |
method2 | |
rescue Exception => e |
#!/bin/bash | |
# See http://www.erebusbat.com/2015/08/tmux-login-wrapper-script/ | |
# Inspired by https://github.com/nicknisi/dotfiles | |
# abort if we're already inside a TMUX session | |
[ "$TMUX" == "" ] || exit 0 | |
export SHELL=/usr/local/bin/zsh | |
export TERM=xterm-256color | |
export PATH=/usr/local/bin:$PATH | |
export COLUMNS=1 |
This is what we did to setup a few dashboards at platanus
minion2: | |
---------- | |
file_|-users_/etc/sudoers.d/whfit_|-/etc/sudoers.d/whfit_|-absent: | |
---------- | |
__run_num__: | |
7 | |
changes: | |
---------- | |
comment: | |
File /etc/sudoers.d/whfit is not present |
#!/usr/bin/env zsh | |
set -e | |
# set -x # trace | |
################################################################################ | |
# ytcurl - youtuble-dl wrapper script | |
# | |
# This is a simple wrapper script that I throw in my path to aid in downloading | |
# stuff from youtube on the fly. I threw it together very quick one day so it | |
# will probably not be exactly what you need, but it is here for reference | |
################################################################################ |