Skip to content

Instantly share code, notes, and snippets.

View mutewinter's full-sized avatar

Jeremy Mack mutewinter

View GitHub Profile
@mutewinter
mutewinter / show_notes.md
Last active August 29, 2015 13:58
Show Notes for Ember Hot Seat Episode 014: Jeremy Mack

Show Notes for [Ember Hot Seat Episode 014: Jeremy Mack][show]

  • [fnd.io][] - the App Store and iTunes search app I launched at EmberConf.
  • [Tapas with Ember][tapas] - the build tool I used to create fnd.
  • [Portkey][] and [Ember.vim][] for quick file navigation / creation in Vim.
  • [Showbot][] - an IRC bot and website for the 5by5 podcasting network.
  • [ShowGap][] - the Backbone replacement for Showbot.
  • [Stretch][] - the 6 hour Ember app for [Sprintly][].
  • [Sparkbox][] - the Dayton-based web development shop I work for.
@mutewinter
mutewinter / commit_format_examples.txt
Created March 19, 2014 18:52
Examples of my commit format.
chore: add Oyster build script
docs: explain hat wobble
feat: add beta sequence
fix: remove broken confirmation message
refactor: share logic between 4d3d3d3 and flarhgunnstow
style: convert tabs to spaces
test: ensure Tayne retains clothing
@mutewinter
mutewinter / commit_format.txt
Created March 19, 2014 18:52
My commit message format.
feat: add hat wobble
^--^ ^------------^
| |
| +-> Summary in present tense.
|
+-------> Type: chore, docs, feat, fix, refactor, style, or test.
@mutewinter
mutewinter / YouCompleteMe_dash_support.patch
Last active January 15, 2017 14:39
Add dash and underscore completion for the YouCompleteMe Vim plugin.
diff --git a/ycmd/identifier_utils.py b/ycmd/identifier_utils.py
index 4217fdef..ac91c97b 100644
--- a/ycmd/identifier_utils.py
+++ b/ycmd/identifier_utils.py
@@ -102,6 +102,7 @@ FILETYPE_TO_IDENTIFIER_REGEX = {
}
FILETYPE_TO_IDENTIFIER_REGEX[ 'scss' ] = FILETYPE_TO_IDENTIFIER_REGEX[ 'css' ]
+FILETYPE_TO_IDENTIFIER_REGEX[ 'javascript' ] = FILETYPE_TO_IDENTIFIER_REGEX[ 'css' ]
FILETYPE_TO_IDENTIFIER_REGEX[ 'sass' ] = FILETYPE_TO_IDENTIFIER_REGEX[ 'css' ]
@mutewinter
mutewinter / gifify.sh
Last active January 11, 2025 22:22 — forked from SlexAxton/.zshrc
# Sweet Gif Creation from .mov
#
# Adapted from https://gist.github.com/SlexAxton/4989674
gifify() {
if [[ -n "$1" ]]; then
GIF="${1%.*}.gif"
if [[ $2 == '--bad' ]]; then
ffmpeg -i $1 -s 600x400 -pix_fmt rgb24 -r 10 -f gif - | gifsicle --optimize=3 --delay=3 > $GIF
else
ffmpeg -i $1 -r 10 -vcodec png out-static-%05d.png
@mutewinter
mutewinter / private.xml
Created October 5, 2013 23:23
Disable SysDiagnose Shortcuts with KeyRemap4MacBook for Hyper Key Binding.
<?xml version="1.0"?>
<root>
<item>
<name>Disable Sysdiagnose Dot Key</name>
<appendix>Disable Sysdiagnose Key</appendix>
<identifier>private.disable_sysdiagnosedot</identifier>
<autogen>
--KeyToKey--
KeyCode::DOT,
ModifierFlag::OPTION_L | ModifierFlag::SHIFT_L | ModifierFlag::CONTROL_L | ModifierFlag::COMMAND_L,
@mutewinter
mutewinter / Window Resizer.md
Last active May 4, 2016 11:00
Window Resizer Settings

My Settings for the Window Resizer Chrome Extension. Import on the Import / Export tab.

@mutewinter
mutewinter / private.xml
Last active December 17, 2015 21:29
private.xml for KeyRemap4MacBook.
<?xml version="1.0"?>
<root>
<item>
<name>F19 to F19</name>
<appendix>(F19 to Hyper (ctrl+shift+cmd+opt) + F19 Only, send escape)</appendix>
<identifier>private.f192f19_escape</identifier>
<autogen>
--KeyOverlaidModifier--
KeyCode::F19,
KeyCode::COMMAND_L,