Skip to content

Instantly share code, notes, and snippets.

View JayDugger's full-sized avatar

Jay Dugger JayDugger

View GitHub Profile
@mwfogleman
mwfogleman / gtd_basb_templates.org
Last active December 14, 2023 19:50
GTD/BASB Templates for Emacs and Org-Mode

Monthly Review

Review Life Goals

  • [ ] Scroll through completed goals.
  • [ ] Move newly completed goals to “Completed” heading for archives.
  • [ ] Update timelines for existing goals.
  • [ ] Update wording/definition/scale of goals.
  • [ ] Add any new goals, and corresponding projects if needed.

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)

Annual Review

Write Gratitude List

Experiences, People, Accomplishments, Learnings, Events, Circumstances, Things

Answer questions about last year:

List your 3 top wins for the year

What are the biggest lessons you’ve learned this year?

What were the risks you took?

What was your most loving service?

What is your unfinished business from this year?

What are you most happy about completing?

@ferstar
ferstar / code_highlight_addon.py
Last active April 8, 2018 15:09
fix an anki plugin bugs which was called "Syntax Highlighting for Code"
# -*- coding: utf-8 -*-
from PyQt4.QtCore import *
from PyQt4.QtGui import *
import codecs
import os
import sys
from aqt import editor, addons, mw
@mwfogleman
mwfogleman / weeklyreviewtemplate.org
Last active December 14, 2023 19:50
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
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)
anonymous
anonymous / molepeople.md
Created November 7, 2014 22:46

thorium eating mole people

The basic problem of maintaining a civilization, according to Tainter, is maintaining a positive energy balance; spending less energy than it consumes. With a negative energy balance, gradually the entire population starves to death. For this reason, all historical human populations have lived on the surface of the Earth, not inside it, because on the surface there is lots of readily available sun energy, and even inefficient ways of harvesting it (such as plants) suffice to support humans. Also, the conditions are relatively mild. The worst problem is that parts of the surface do not have salt water covering them, which is a problem we learned to cope with some hundreds of millions of years ago, with means duch as lungs, eggs, and amniotic sacs. Inside the Earth, all of our necessities must be provided by clever contrivances; not just food, but light, oxygen, low pressure, cool, dry (we have become accustomed to it in the last few hundred million years) , and sanitation.

The

@alandipert
alandipert / opml2org.pl
Created November 14, 2010 00:03
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;
@endolith
endolith / Readme.txt
Last active September 23, 2023 11:04
Gnome to Wine color scraper
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