Skip to content

Instantly share code, notes, and snippets.

// O2 Minipops rhythm box (c) DSP Synthesizers 2016
// Free for non commercial use
// http://janostman.wordpress.com
#include <avr/interrupt.h>
#include <avr/io.h>
#include <avr/pgmspace.h>
'use strict';
// Setup:
// npm install node-rest-client
// Usage:
// node create_gitea_repos.js <repo name> <repo desc> [<gitea url>] [<user>] [<token>]
// You may put hardcoded values below instead of using last three arguments.
// Create a token in your user's settings at <gitea url>/user/settings/applications
var url = process.argv[4] || '',
@danielappelt
danielappelt / PKGBUILD
Created February 24, 2017 11:55
AUR build script for traKmeter LV2
# Maintainer: Daniel Appelt <daniel.appelt@gmail.com>
pkgname=traKmeter
pkgver=2.3.0
pkgrel=1
pkgdesc="Loudness meter for correctly setting up tracking and mixing levels"
arch=('i686' 'x86_64')
url="http://www.mzuther.de/en/software/trakmeter/"
license=('GPL3')
depends=()
D3 Links
--------
https://d3js.org/
https://bost.ocks.org/mike/bar/
https://jsfiddle.net/tLgp7qvv/ -> skalierender Bar Chart (abgewandelt von Teil 2 des Tutorials)
Javascript testen
-----------------
https://jsfiddle.net/
[
{"name": "Locke", "value": 4},
{"name": "Reyes", "value": 8},
{"name": "Ford", "value": 15},
{"name": "Jarrah", "value": 16},
{"name": "Shephard", "value": 23},
{"name": "Kwon", "value": 42}
]
# Sequencer64 0.9.9.11 (and above) rc configuration file
# (Also works with Sequencer24)
[midi-control]
74 # MIDI controls count
0 [0 0 0 0 0 0] [0 0 0 0 0 0] [0 0 0 0 0 0]
1 [0 0 0 0 0 0] [0 0 0 0 0 0] [0 0 0 0 0 0]
2 [0 0 0 0 0 0] [0 0 0 0 0 0] [0 0 0 0 0 0]
3 [0 0 0 0 0 0] [0 0 0 0 0 0] [0 0 0 0 0 0]
@danielappelt
danielappelt / PKGBUILD
Created January 8, 2016 11:36
sequencer64-git AUR package
# Maintainer: Daniel Appelt <daniel.appelt@gmail.com>
_pkgbasename=sequencer64
pkgname=${_pkgbasename}-git
pkgver=r233.c14ba05
pkgrel=1
pkgdesc="A live-looping MIDI sequencer"
arch=('i686' 'x86_64')
url="https://github.com/ahlstromcj/sequencer64.git"
license=('GPL')
depends=('gtkmm' 'jack2')
@danielappelt
danielappelt / Makefile
Last active August 29, 2015 14:05
GDK PixbufLoader problem with TIFF files in 32bit mode on x86_64 linux
CFLAGS = `pkg-config --cflags glib-2.0 gtk+-2.0`
LDFLAGS = `pkg-config --libs glib-2.0 gtk+-2.0`
pixbuf: pixbuf.c pixbufloader.c
gcc -Wall pixbuf.c -o pixbuf $(CFLAGS) $(LDFLAGS)
gcc -m32 -Wall pixbuf.c -o pixbuf32 $(CFLAGS) $(LDFLAGS)
gcc -Wall pixbufloader.c -o pixbufloader $(CFLAGS) $(LDFLAGS)
gcc -m32 -Wall pixbufloader.c -o pixbufloader32 $(CFLAGS) $(LDFLAGS)