Skip to content

Instantly share code, notes, and snippets.

@ideoforms
ideoforms / sox-cheat-sheet.sh
Last active October 15, 2025 15:05
sox cheat sheet
################################################################################
# sox cheat sheet
################################################################################
# Example commands for the sox command-line audio processing tool,
# for manipulating or batch processing audio files.
################################################################################
# Daniel Jones <[email protected]>
################################################################################
################################################################################
@pditommaso
pditommaso / FieldReflection.groovy
Created October 18, 2015 08:18
Change type and value of a final field in a Java/Groovy class
static class TestJ3 {
static final Integer f = 1
static public void set(String str) {
Field field = TestJ3.class.getDeclaredField("f")
Field modifiersField = Field.class.getDeclaredField("modifiers")
modifiersField.setAccessible(true)
modifiersField.setInt(field, field.getModifiers() & ~Modifier.FINAL)
@digitaljhelms
digitaljhelms / gist:4287848
Last active October 30, 2025 16:39
Git/GitHub branching standards & conventions

Branching

Quick Legend

Description, Instructions, Notes
Instance Branch