Skip to content

Instantly share code, notes, and snippets.

View CarlColglazier's full-sized avatar

carl colglazier CarlColglazier

View GitHub Profile
@abique
abique / README.md
Last active November 17, 2022 10:58
Proprietary Audio Plugins for Linux, but the right way

Proprietary Audio Plugins for Linux, but the right way

Why the current approach to VST and VST3 does not work for proprietary plugins on Linux ?

When building plugins for Linux there are two options and one problem:

  1. Link to the system libraries
  2. Build all your dependencies and statically link to them
  3. Can't use gtk or qt.
@Gargron
Gargron / code.html
Created February 23, 2018 04:27
Code of Conduct of mastodon.social
<p>The following guidelines are not a legal document, and final interpretation is up to the administration of mastodon.social; they are here to provide you with an insight into our content moderation policies:</p>
<ol>
<li>
The following types of content will be removed from the public timeline:
<ol type="a">
<li>Excessive advertising</li>
<li>Uncurated news bots posting from third-party news sources</li>
<li>Untagged nudity, pornography and sexually explicit content, including artistic depictions</li>
<li>Untagged gore and extremely graphic violence, including artistic depictions</li>
@konradko
konradko / golang_on_rpi.md
Last active April 12, 2020 17:36
Install Golang 1.7 on Raspberry Pi
wget https://storage.googleapis.com/golang/go1.7.linux-armv6l.tar.gz
tar -C /usr/local -xzf go1.7.linux-armv6l.tar.gz
export PATH=$PATH:/usr/local/go/bin
@jkitchin
jkitchin / Makefile
Last active May 5, 2020 19:14
Melpa setup for org-ref
EMACS ?= emacs
CASK ?= cask
CASK_EXEC ?= ${CASK} exec
all: clean test
test:
${EMACS} -Q -batch -l init.el
@JonathanDCohen
JonathanDCohen / tagpro_telestrator_2_0.user.js
Last active August 29, 2015 14:16
Use a telestrator while spectating TagPro! Now supports PIXI.js
// ==UserScript==
// @name TagPro Telestrator
// @version 2.1.0
// @description Use a telestrator while spectating TagPro!
// @include http://tagpro-*.koalabeast.com:*
// @include http://tangent.jukejuice.com:*
// @include http://maptest*.newcompte.fr:*
// @author BBQchicken
// @namespace reddit.com/u/Splanky222
// @downloadURL https://gist.github.com/JonathanDCohen/50aea7b437c64b728199/raw/tagpro_telestrator_2_0.user.js
@umbrellaprocess
umbrellaprocess / gist:973d2aa16e95bf329ee2
Last active December 16, 2021 08:53
A simple example of MIDI Keyboard for SuperCollider 3.6.x
/**
* A simple example of MIDI Keyboard for SuperCollider 3.6.x
*/
MIDIIn.connect;
s.boot;
(
SynthDef("umbSinewave",{
arg freq=440, gate=1, amp=1, pan=0;
@theVDude
theVDude / tagpro-gecko-mod-manager.user.js
Last active August 29, 2015 14:05
Tagpro Gecko Tools and Mod Manager userscript!
// ==UserScript==
// @name Gecko Tools
// @namespace http://www.reddit.com/user/thevdude
// @description A suite of customization options for TagPro
// @include http://tagpro-*.koalabeast.com*
// @include http://tangent.jukejuice.com*
// @exclude http://tagpro-*.koalabeast.com/groups/*
// @exclude http://tangent.jukejuice.com/groups/*
// @license GNU General Public License
// @author GeckoPie & pooppants
@cowboy
cowboy / stringify.js
Created September 19, 2012 13:45
JavaScript: like JSON.stringify but handles functions, good for creating arbitrary .js objects?
var stringify = function(obj, prop) {
var placeholder = '____PLACEHOLDER____';
var fns = [];
var json = JSON.stringify(obj, function(key, value) {
if (typeof value === 'function') {
fns.push(value);
return placeholder;
}
return value;
}, 2);
@ScottPhillips
ScottPhillips / .htaccess
Created February 2, 2012 04:30
Common .htaccess Redirects
#301 Redirects for .htaccess
#Redirect a single page:
Redirect 301 /pagename.php http://www.domain.com/pagename.html
#Redirect an entire site:
Redirect 301 / http://www.domain.com/
#Redirect an entire site to a sub folder
Redirect 301 / http://www.domain.com/subfolder/