Skip to content

Instantly share code, notes, and snippets.

View JayDugger's full-sized avatar

Jay Dugger JayDugger

View GitHub Profile
http://www.korgforums.com/forum/phpBB2/viewtopic.php?t=87030&sid=f447b05eafe84c1d93013b19ae285eab
Glossary for Korg Kronos
(shared)
ADC: Analog-to-Digital Converter
ADSR: ADSR envelope: Attack-Decay-Sustain-Release
Adv: Advanced (cf Basic)
.AIF and .AIFF: audio file format (cf .WAV)
AKR: After Key Release (a KARMA term)
@JayDugger
JayDugger / weeklyreviewtemplate.org
Created January 6, 2019 14:15 — forked from mwfogleman/weeklyreviewtemplate.org
Weekly Review Template

Weekly Review

Get Clear [0/5]

  • [ ] Collect Loose Papers and Materials
  • [ ] Get “IN” to Zero
    • [ ] Papers
    • [ ] Physical Notebook
    • [ ] Physical Objects
    • [ ] Text Messages
    • [ ] Voice Mail
    • [ ] Email Inboxes
@JayDugger
JayDugger / gtd_basb_templates.org
Created January 6, 2019 14:15 — forked from mwfogleman/gtd_basb_templates.org
GTD/BASB Templates for Emacs and Org-Mode

Daily Review

  • [ ] Clear Physical Desktop / Inbox / Notebook
  • [ ] Clear Downloads and Desktop Folders
    (dired "~/Downloads/")
    (dired "~/Desktop/")
    (image-dired "~/Desktop/")
        
  • [ ] Collect Calendar Open Loops (+/- 2 days)
@JayDugger
JayDugger / opml2org.pl
Created October 20, 2012 18:08 — forked from rlb3/opml2org.pl
Convert OPML to org-mode style nested headings, suitable for Confluence or Emacs
#!/usr/bin/perl
# Usage: perl opml2org.pl "My OPML File.opml"
use XML::Parser;
binmode STDOUT, ":utf8";
$xp = new XML::Parser();
$xp->setHandlers(Start => \&start, End => \&end);
$xp->parsefile($ARGV[0]);
$indent = 0;
@JayDugger
JayDugger / youtube.lua
Created October 19, 2012 02:28 — forked from boyvanamstel/youtube.lua
Fixed VLC youtube.lua parser
-- Apparently YouTube changed some stuff. This makes VLC play YouTube clips again.
-- Replace youtube.lua in /Applications/VLC.app/Contents/MacOS/share/playlist/youtube.lua.
-- Ticket @ VLC: https://trac.videolan.org/vlc/ticket/7471
--[[
$Id$
Copyright © 2007-2011 the VideoLAN team
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@JayDugger
JayDugger / opml2org.pl
Created October 1, 2012 15:01 — forked from alandipert/opml2org.pl
Convert OPML to org-mode style nested headings, suitable for Confluence or Emacs
#!/usr/bin/perl
# Usage: perl opml2org.pl "My OPML File.opml"
use XML::Parser;
binmode STDOUT, ":utf8";
$xp = new XML::Parser();
$xp->setHandlers(Start => \&start, End => \&end);
$xp->parsefile($ARGV[0]);
$indent = 0;
@JayDugger
JayDugger / row-row-row-your-boat.clj
Created June 16, 2012 17:30 — forked from ctford/row-row-row-your-boat.clj
Row, row, row your boat!
(ns overtunes.songs.row-row-row-your-boat
(:use
[overtone.live]))
(definst harpsichord [freq 440]
(let [duration 1]
(*
(line:kr 1 1 duration FREE)
(pluck (* (white-noise) (env-gen (perc 0.001 5) :action FREE))
1 1 (/ 1 freq) (* duration 2) 0.25))))
@JayDugger
JayDugger / church.py
Created April 21, 2012 18:23 — forked from vivekhaldar/church.py
Church numerals in Python
#! /usr/bin/python
#
# Church numerals in Python.
# See http://en.wikipedia.org/wiki/Church_encoding
#
# Vivek Haldar <vh@vivekhaldar.com>
#
# https://gist.github.com/2438498
zero = lambda f: lambda x: x
This is a Python script to extract GNOME/GTK's color scheme and apply it to Wine, so that the themes (approximately) match.
Instructions:
1. Set your Gnome theme as you would like it
2. Run with a command like "python wine_colors_from_gtk.py"
3. Restart any apps running in Wine. They should match the Gnome theme colors now.
Better description with screenshots here: http://www.endolith.com/wordpress/2008/08/03/wine-colors/
This is also stored on https://code.launchpad.net/~endolith/+junk/wine-color-scraper