Skip to content

Instantly share code, notes, and snippets.

View devonoel's full-sized avatar

Devon Noel de Tilly devonoel

View GitHub Profile
@devonoel
devonoel / gunter_example.json
Created March 4, 2016 20:11
Gunter Example
{
"taskname": {
"remote": "example.com",
"cwd": "/",
"commands": [
"echo I'm a task!",
"echo I'm another task!",
"echo Hello, my name is {{name}}!"
],
"defaults": {

Keybase proof

I hereby claim:

  • I am DevoNoel on github.
  • I am devonoel (https://keybase.io/devonoel) on keybase.
  • I have a public key whose fingerprint is 4AF7 E368 C889 B6FE 83B0 CD9C 7985 D437 19A1 06FF

To claim this, I am signing this object:

@devonoel
devonoel / rdoc2md.rb
Last active August 29, 2015 14:13 — forked from teeparham/rdoc2md.rb
require 'rdoc'
converter = RDoc::Markup::ToMarkdown.new
filename = ARGV[0] || 'README.rdoc'
rdoc = File.read(filename)
md = converter.convert(rdoc)
filename_raw = filename.split('.')[0]
File.open("#{filename_raw}.md", 'w') { |file| file.write(md) }
# ruby rdoc2md.rb >> README.md
# ruby rdoc2md.rb ABC.rdoc >> abc.md
@devonoel
devonoel / graphicsmagick.sh
Created April 22, 2014 21:14
Download and install GraphicsMagick from Source
#!/bin/bash
# Downloads and installs GraphicsMagick
curl ftp://ftp.icm.edu.pl/pub/unix/graphics/GraphicsMagick/1.3/GraphicsMagick-1.3.19.tar.gz | tar zx
cd GraphicsMagick-1.3.19
./configure
make
sudo make install
cd ..
@devonoel
devonoel / OpenBox Theme - Oink
Last active December 25, 2015 20:29
Oink - A pink and purple theme for OpenBox and Tint2
#OpenBox config file
border.color: #26001C
border.width: 0
menu.items.active.text.color: #FF055E
menu.items.disabled.text.color: #610047
menu.separator.color: #26001C
menu.title.text.color: #610047
osd.label.text.color: #FFFFFF
padding.width: 5
@devonoel
devonoel / index.html
Created July 4, 2013 14:46
A CodePen by Devon Noel de Tilly. Scrolling Prev/Next Nav Buttons - Buttons for blog posts or articles to navigate to previous or next post. Hovering over them causes them to expand to show 'PREV' and 'NEXT'.
<nav class="prev-next-buttons">
<a href="#" class="prev-button">Prev</a>
<a href="#" class="next-button">Next</a>
</nav>