This file contains hidden or 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
# Get credentials and store them securely in an encrypted xml file | |
if (-NOT (Test-Path "${env:\userprofile}\DBA001.Cred")){ | |
$Credential = Get-Credential | |
$Credential | Export-CliXml -Path "${env:\userprofile}\DBA001.Cred" | |
} | |
#Load the credentials | |
$SqlCredential = Import-CliXml -Path "${env:\userprofile}\DBA001.Cred" | |
# Create a CSV of all the databases that are in the availability group. This updates each time to be complete |
This file contains hidden or 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
Channel 4 : | |
Release : 0.6900 | |
PitchCV : 0B 0.50 | |
ReleaseMod : 0C 1.00 | |
ZonesCV : 0A | |
Zone 1 : | |
Sample : sampleA.wav | |
SampleEnd : 0 | |
MinVoltage : +1.57 | |
Zone 2 : |
This file contains hidden or 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
:set -XOverloadedStrings | |
:set prompt "" | |
:module Sound.Tidal.Context | |
(cps, nudger, getNow) <- cpsUtils' | |
(d1,t1) <- superDirtSetters getNow | |
(d2,t2) <- superDirtSetters getNow | |
(d3,t3) <- superDirtSetters getNow | |
(d4,t4) <- superDirtSetters getNow |
This file contains hidden or 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
s.options.numBuffers = 1026*2; | |
s.options.memSize = (512*1024); | |
s.options.device = "Soundflower (64ch)"; | |
s.options.numOutputBusChannels = 16; | |
//s.options.maxLogins = 50; | |
s.waitForBoot { | |
~dirt = SuperDirt(2, s); // two output channels, increase if you want to pan across more channels | |
//~dirt.loadSoundFiles("/Users/digitalohm/samples/*"); | |
~dirt.loadSoundFiles("/Users/digitalohm/Library/Application Support/SuperCollider/downloaded-quarks/Dirt-Samples/*"); | |
s.sync; // wait for samples to be read |
This file contains hidden or 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
/*{ "vertexCount": 100, "midi": true }*/ | |
precision mediump float; | |
attribute float vertexId; | |
uniform float vertexCount; | |
uniform float time; | |
uniform vec2 resolution; | |
varying vec4 v_color; | |
uniform sampler2D midi; | |
uniform sampler2D note; |