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
// Example Class instantiation | |
// by Kent Williams [email protected] | |
// | |
#include <iostream> | |
#include <cstring> | |
#include <memory> | |
#include <v8.h> | |
#include <libplatform/libplatform.h> | |
// template for TestClass |
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
#!/bin/bash | |
################################################################################################################################# | |
# community-builds-from-source.sh | |
# by Jeremy Wentworth | |
# | |
# Modified by Kent Williams [email protected] | |
# | |
# This script pulls down the VCV Rack community repo, finds source urls, pulls down source repos, and builds plugins. | |
# |
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
# check for the community repo locally | |
# USAGE grabPlugins.sh <target> | |
# Where <target> is one of win, lin, or mac | |
if [ $# -gt 0 ] | |
then | |
platform="${1}" | |
else | |
platform=lin | |
fi |
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
#!/bin/bash | |
# check for the community repo locally | |
if [ -d "community" ]; then | |
pushd community | |
# discard any changes | |
git reset HEAD --hard | |
# update the community repo if it exists | |
git pull | |
popd |
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
#!/bin/bash | |
# | |
# If you buy the 24-bit wav version of the Aphex Twin Collapse EP | |
# copy this script into the directory where you've unpacked the WAV files | |
# and run it in that directory | |
p="$(ls *.jpg)" ; albumName="Collapse EP"; artistName="Aphex Twin" | |
for x in *.wav;do | |
trackTitle="$(echo $x | sed -e 's/^.*-//' -e 's/\.wav//')" | |
trackNumber="$(echo $x | sed -e 's/^.*EP-//' -e 's/-Aphex.*$//')" | |
flac --picture="3|image/jpeg|||${p}" \ |