Skip to content

Instantly share code, notes, and snippets.

View capital-G's full-sized avatar

Dennis Scheiba capital-G

View GitHub Profile
@nhthn
nhthn / trap-generator.scd
Last active March 24, 2025 17:35
TRAP GENERATOR

/*


|_ | | | | / \ | \ | | |/ / \ \ / / _ | | | | | | | || | / _ \ | | | ' / \ V / | | | | | | | | | _ |/ ___ | |\ | . \ | || || | || | || || |// __| _||_\ || _/ _/

500,000 DAMN SUBSCRIBERS ON THE SYNTHDEF CHANNEL

@madskjeldgaard
madskjeldgaard / KloudGen.scd
Last active December 30, 2022 02:39
Sketch for a supercollider based cloud generator
/*
Sketch for a cloud generator
By Mads Kjeldgaard, 2020
*/
(
~numChannels = 2;
s.options.numOutputBusChannels_(~numChannels);
@sym3tri
sym3tri / README.md
Last active January 3, 2025 14:53
A simple script to convert a directory of audio files into MakeNoise Morphagene compatible format.

mg-convert

This simple script converts all audio files in a provided directory into MakeNoise Morphagene compatible files (48KHz, floating-point, 32-bit, stereo WAV). It auotmatically names the files in the proper format too.

Requirements

You must be comfortable with the comand-line, and have sox installed.

Copy this script to somewhere in your PATH, and make it executable (chmod +x mg-convert).

@rponte
rponte / get-latest-tag-on-git.sh
Last active December 9, 2024 00:27
Getting latest tag on git repository
# The command finds the most recent tag that is reachable from a commit.
# If the tag points to the commit, then only the tag is shown.
# Otherwise, it suffixes the tag name with the number of additional commits on top of the tagged object
# and the abbreviated object name of the most recent commit.
git describe
# With --abbrev set to 0, the command can be used to find the closest tagname without any suffix:
git describe --abbrev=0
# other examples