Skip to content

Instantly share code, notes, and snippets.

View moui72's full-sized avatar
🏠
Working from home

Tyler Peckenpaugh moui72

🏠
Working from home
View GitHub Profile
@moui72
moui72 / recursive-resample.sh
Last active March 25, 2019 16:22 — forked from jorgehatccrma/recursive-resample.sh
Recursively resample a bunch of audio files in a directory, using sox
#!/bin/bash
# A simple script to recursively resample a bunch of files
# in a directory. Only certain file extensions (mp3, aac,
# flac, wav) are considered.
#
# It takes 3 command line options: `indir`, `outdir` and `target_sr`.
# The destination (`outdir`) is relative to the current
# directory of where you were when the script was run.
# The desired sample rate should be provided as `target_sr`.
@moui72
moui72 / config.json
Created August 1, 2017 20:23 — forked from anonymous/config.json
Bootstrap Customizer Config
{
"vars": {
"@gray-base": "#000",
"@gray-darker": "lighten(@gray-base, 13.5%)",
"@gray-dark": "lighten(@gray-base, 20%)",
"@gray": "lighten(@gray-base, 33.5%)",
"@gray-light": "lighten(@gray-base, 46.7%)",
"@gray-lighter": "lighten(@gray-base, 93.5%)",
"@brand-primary": "#1C4856",
"@brand-success": "#8DC640",