Skip to content

Instantly share code, notes, and snippets.

View jmcantrell's full-sized avatar
🤖
Creating new neural pathways.

Jeremy Cantrell jmcantrell

🤖
Creating new neural pathways.
View GitHub Profile
@jmcantrell
jmcantrell / podcatch
Last active September 18, 2021 13:25
simple podcast downloader
#!/usr/bin/env bash
set -e
me=${0##*/}
cache=${XDG_CACHE_HOME:-$HOME/.cache}/$me
config=${XDG_CONFIG_HOME:-$HOME/.config}/$me
urls=$config/urls
@jmcantrell
jmcantrell / opencolor.gpl
Created May 26, 2017 00:07
Open Color palette for GIMP
GIMP Palette
Name: Open Color
Columns: 3
#
255 255 255 white
0 0 0 black
248 249 250 gray 0
241 243 245 gray 1
233 236 239 gray 2
222 226 230 gray 3
@jmcantrell
jmcantrell / css.gpl
Created May 25, 2017 23:57
CSS Named Colors palette for GIMP
GIMP Palette
Name: CSS
Columns: 3
#
0 0 0 black
192 192 192 silver
128 128 128 gray
255 255 255 white
128 0 0 maroon
255 0 0 red
@jmcantrell
jmcantrell / alphabet.gpl
Created May 25, 2017 18:43
Color Alphabet palette for GIMP
GIMP Palette
Name: Color Alphabet
Columns: 3
#
240 163 255 a
0 117 220 b
153 63 0 c
76 0 92 d
25 25 25 e
0 92 49 f
@jmcantrell
jmcantrell / x11.gpl
Last active May 25, 2017 18:19
X11 Color palette for GIMP
GIMP Palette
Name: X11
Columns: 3
#
255 250 250 snow
248 248 255 ghost white
245 245 245 white smoke
220 220 220 gainsboro
255 250 240 floral white
253 245 230 old lace
@jmcantrell
jmcantrell / small.gpl
Last active May 25, 2017 17:18
Small Color Database palette for GIMP
GIMP Palette
Name: Two4U's Small Color Database
Columns: 3
#
255 255 255 white
255 0 0 red
0 255 0 green
0 0 255 blue
255 0 255 magenta
0 255 255 cyan
@jmcantrell
jmcantrell / tango.gpl
Last active May 25, 2017 17:19
Tango Theme palette for GIMP
GIMP Palette
Name: Tango
Columns: 3
#
252 233 79 butter 1
237 212 0 butter 2
196 160 0 butter 3
138 226 52 chameleon 1
115 210 22 chameleon 2
78 154 6 chameleon 3
@jmcantrell
jmcantrell / roygbiv.gpl
Last active May 25, 2017 17:11
Rainbow (ROYGBIV) palette for GIMP
GIMP Palette
Name: Rainbow
Columns: 3
#
209 0 0 red
255 102 34 orange
255 218 33 yellow
51 221 0 green
17 51 204 blue
34 0 102 indigo

Keybase proof

I hereby claim:

  • I am jmcantrell on github.
  • I am jmcantrell (https://keybase.io/jmcantrell) on keybase.
  • I have a public key ASAMBL_Gdz1hue0lARXju74nMSrhH7_avaTjZF24G2Kxvgo

To claim this, I am signing this object:

@jmcantrell
jmcantrell / zsh-ssh-host-completion.patch
Last active February 28, 2017 20:14
Make hosts in included config files available for completion
--- /usr/share/zsh/functions/Completion/Unix/_ssh 2016-12-22 11:27:00.000000000 -0800
+++ packages/base/.local/share/zsh/functions/_ssh 2017-02-26 22:37:47.513422235 -0800
@@ -681,16 +681,21 @@
fi
if [[ -r $config ]]; then
local key hosts host
- while IFS=$'=\t ' read -r key hosts; do
- if [[ "$key" == (#i)host ]]; then
- for host in ${(z)hosts}; do
- case $host in