Skip to content

Instantly share code, notes, and snippets.

View turbo's full-sized avatar

Pierre turbo

View GitHub Profile
  • install love2d
  • libluajit
  • love-nuklear
  • luarocks install luasec
  • moses

Random thoughts on features I'd like to see in the Deluge

  1. selected scale quantization for incoming MIDI data
  2. a way of generating chromatic chords from a simple lead line, an equivalent would be a (multinote, diatonic transposer) device chain in Bitwig
  3. single chord (i.e. single time division) copy and paste (like tracks in song mode, but horizontal)
  4. an advanced arp designer, like Cthulu's arp graph
  5. a much slower LFO rate. like .15Hz and stuff. just gimme the dual-precision value editor that the sample editor already has
  6. a record mode where the track length auto-extends! <- seriously though, many folks want that
  7. 6, but with 1 bar preroll
  8. general-purpose compressor
using System;
using java.lang;
using java.sql;
namespace cdb2cs
{
internal static class Program
{
// Force type reference. Otherwise, the class will not be loaded.
// cdb2jdbc also doesn't offer an EmbeddedDriver, which would make this
global
log 127.0.0.1 local0 notice
maxconn 4096
user haproxy
group haproxy
ssl-server-verify none
defaults
log global
mode http
package.json|26317
index.js|25402
README.md|15448
LICENSE|11255
lib|7890
Makefile|7591
_._|5775
.npmignore|5312
readme.md|3972
Kconfig|3656
@turbo
turbo / erger
Created November 25, 2017 16:26
https://send.firefox.com/download/79040fc0e8/#OaH3symU6xIv3SPouTHXlg
@turbo
turbo / blah.md
Last active October 26, 2017 14:52
Click me

Holy cow, collapsable sections

Example or something.

[]
@turbo
turbo / json-bq-schema-generator.rb
Created September 12, 2017 21:49 — forked from igrigorik/json-bq-schema-generator.rb
BigQuery JSON schema generator
require 'open-uri'
require 'zlib'
require 'yajl'
# References
# - https://developers.google.com/bigquery/preparing-data-for-bigquery#dataformats
# - https://developers.google.com/bigquery/docs/data#nested
#
def type(t)
normalizeCase = (mixed, clean = {}) => (
Object
.keys(mixed)
.map(
c => clean[c.toLowerCase()] =
mixed[c] instanceof Object
? normalizeCase(mixed[c])
: mixed[c]
),
clean