View startup.scd
This file contains 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
a = NetAddr.new("localhost", 3333); | |
OSCdef(\tidalplay, { | |
arg msg; | |
a.sendMsg(*msg); | |
}, '/dirt/play', n); | |
//SuperDirt setup | |
s = Server.local; | |
s.reboot { | |
s.options.sampleRate = 48000; |
View example04.rb
This file contains 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
live_loop :live do | |
use_synth :dsaw | |
32.times do | |
play scale(:C2, :dorian, num_octaves: 4).shuffle.take(2), | |
cutoff: rrand(40, 120), release: rand(0.5) | |
sleep 0.125 | |
end | |
32.times do | |
play scale(:G2, :dorian, num_octaves: 4).shuffle.take(2), | |
cutoff: rrand(40, 120), release: rand(0.5) |
View example03.rb
This file contains 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
live_loop :live do | |
use_synth :dsaw | |
play chord(:C5,:M) | |
sleep 1.5 | |
play chord(:G4,:M) | |
sleep 1.5 | |
play chord(:A4,:m) | |
sleep 1.5 | |
play chord(:E4,:m) | |
sleep 1.5 |
View example02.rb
This file contains 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
live_loop :live do | |
with_fx :flanger, depth: 2 do | |
use_synth :tb303 | |
freq = choose([:C3, :E3, :F3, :G3]) + choose([-12, 0, 12]) + 2 | |
rel = rrand(0.1, 0.5) | |
play freq, release: rel, cutoff: rrand(40, 120), res: 0.9 | |
play freq+7, release: rel, cutoff: rrand(40, 120), res: 0.9 | |
play freq+12, release: rel, cutoff: rrand(40, 120), res: 0.9 | |
sleep 0.125 | |
end |
View example01.rb
This file contains 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
live_loop :live do | |
use_synth :tb303 | |
play :C2, release: 0.2, cutoff: 40, res: 0.9 | |
sleep 0.25 | |
play :G2, release: 0.2, cutoff: 60, res: 0.9 | |
sleep 0.25 | |
play :C2, release: 0.2, cutoff: 80, res: 0.9 | |
sleep 0.25 | |
play :G2, release: 0.2, cutoff: 100, res: 0.9 | |
sleep 0.25 |
View mymarp.css
This file contains 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
/* @theme mymarp */ | |
@import 'default'; | |
section { | |
font-family: 'Noto Sans CJK JP' !important; | |
} | |
code { | |
font-family: 'SF Mono', 'Consolas', 'Noto Sans CJK JP' !important; |
View settings.json
This file contains 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
{ | |
"$schema": "https://aka.ms/terminal-profiles-schema", | |
"actions": | |
[ | |
{ | |
"command": | |
{ | |
"action": "copy", | |
"singleLine": false | |
}, |
View BigGanGenVideo.py
This file contains 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
# Generating Video with BigGAN. | |
# Based on tensorflow hub code. | |
# https://www.tensorflow.org/hub/tutorials/biggan_generation_with_tf_hub | |
import sys | |
args = sys.argv | |
if len(args) <= 5: | |
print('usage: python BigGanGenMovie.py num_samples num_interps length truncation outputfile') | |
print('example: python BigGanGenMovie.py 1 60 2 0.2 out.mp4') |
View MyEmacsKeymap.ahk
This file contains 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
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
;; MyEmacsKeymap.ahk | |
;; - An AutoHotkey script to simulate Emacs keybindings on Windows | |
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
;; Settings for testing | |
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
;; enable warning | |
;#Warn All, MsgBox |
View settings.json
This file contains 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
{ | |
"$schema": "https://aka.ms/terminal-profiles-schema", | |
"defaultProfile": "{00000000-0000-0000-ba88-000000000002}", | |
"copyOnSelect": false, | |
"copyFormatting": false, | |
"profiles": | |
{ | |
"defaults": | |
{ | |
"closeOnExit" : "always", |