- MobDebug: https://github.com/pkulchenko/MobDebug
- VSCode DAP: https://code.visualstudio.com/docs/extensions/example-debuggers
- VSC DAP API: https://code.visualstudio.com/docs/extensionAPI/api-debugging
- ZB MDBG Example: https://github.com/pkulchenko/ZeroBraneStudio/blob/master/src/editor/debugger.lua#L244
- LUA StackTracePlus: https://github.com/ignacio/StackTracePlus
- GitHub Staff
- https://summarity.com
- @summarity
- install love2d
- libluajit
- love-nuklear
- luarocks install luasec
- moses
Random thoughts on features I'd like to see in the Deluge
- selected scale quantization for incoming MIDI data
- a way of generating chromatic chords from a simple lead line, an equivalent would be a (multinote, diatonic transposer) device chain in Bitwig
- single chord (i.e. single time division) copy and paste (like tracks in song mode, but horizontal)
- an advanced arp designer, like Cthulu's arp graph
- a much slower LFO rate. like .15Hz and stuff. just gimme the dual-precision value editor that the sample editor already has
- a record mode where the track length auto-extends! <- seriously though, many folks want that
- 6, but with 1 bar preroll
- general-purpose compressor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
global | |
log 127.0.0.1 local0 notice | |
maxconn 4096 | |
user haproxy | |
group haproxy | |
ssl-server-verify none | |
defaults | |
log global | |
mode http |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package.json|26317 | |
index.js|25402 | |
README.md|15448 | |
LICENSE|11255 | |
lib|7890 | |
Makefile|7591 | |
_._|5775 | |
.npmignore|5312 | |
readme.md|3972 | |
Kconfig|3656 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://send.firefox.com/download/79040fc0e8/#OaH3symU6xIv3SPouTHXlg |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
normalizeCase = (mixed, clean = {}) => ( | |
Object | |
.keys(mixed) | |
.map( | |
c => clean[c.toLowerCase()] = | |
mixed[c] instanceof Object | |
? normalizeCase(mixed[c]) | |
: mixed[c] | |
), | |
clean |