Skip to content

Instantly share code, notes, and snippets.

@nhthn
nhthn / ivo-ivanov-type-beat.scd
Created November 19, 2022 17:37
Ivo Ivanov type beat
// Ivo Ivanov ripoff: https://www.youtube.com/shorts/1uukKdBGsY0
(
SynthDef(\kick, {
var snd;
snd = SinOsc.ar(Env.perc(0.001, 0.3, curve: -8).ar.linexp(0, 1, 30, 400));
snd = snd + (SinOsc.ar(XLine.ar(4000, 100, 0.01)) * Env.perc(0.001, 0.01).ar);
snd = snd + (BPF.ar(Hasher.ar(Sweep.ar), 8000, 0.5) * 3.dbamp * Env.perc(0.01, 0.03).ar);
snd = snd * Env.perc(0.001, 0.2, curve: -1).ar(Done.freeSelf);
snd = snd * 5.dbamp;
@ja-k-e
ja-k-e / SVG Audio Visualizer 1: All the Lines!.markdown
Last active June 29, 2022 09:14
SVG Audio Visualizer 1: All the Lines!
@lmccart
lmccart / gist:2273a047874939ad8ad1
Last active February 18, 2024 21:57
p5.js + p5.dom.js + clmtracker.js
<html>
<head>
<script src="clmtrackr.js"></script>
<script src="model_pca_20_svm.js"></script>
<script src="p5.js"></script>
<script src="p5.dom.js"></script>
<script>
var ctracker;