Skip to content

Instantly share code, notes, and snippets.

View nasedil's full-sized avatar
🚀
I may take up to a week to respond.

Eugene Petkevich nasedil

🚀
I may take up to a week to respond.
View GitHub Profile
@nasedil
nasedil / Мыҏиӈё.scd
Last active May 2, 2023 18:43
cleanup and add some comments
(
// marimba-style synthesizer
~synthGen = {|n=25, prefix=\fokyxiqa, numHarm = 13|
var synthNames = Array(n);
n.do{|i|
var synthName = (prefix ++ i.asString).asSymbol;
synthNames = synthNames.add(synthName);
SynthDef(synthName, {|
freq = 440,
attack = 0.01,
@nasedil
nasedil / custom-draw-lines.ipynb
Created December 5, 2019 14:24
custom-draw-lines
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
/bin/bash -c "sleep 15 && dropbox stop && env DBUS_SESSION_BUS_ADDRESS="" dropbox start -i"
#!/usr/bin/env node
'use strict';
/*
The script converts jury from 2106 json format to new json format.
Authors:
* Eugene Petkevich / http://eugene.zuelum.org
*/
var ArgumentParser = require('argparse').ArgumentParser;