View read via WSU.js
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
javascript:(function() { | |
var currentUrl = window.location.href; | |
var urlParts = currentUrl.split('/'); | |
var subdomain = urlParts[2].replace(/\./g, '-'); | |
window.location.href = 'https://' + subdomain + '.proxy.wichita.edu/' + urlParts.slice(3).join('/'); | |
})(); |
View Dropkick to v3.scpt
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
// Input from clipboard formatted in two columns: | Grade | HTML comment | | |
// Pastes into the v3 form | |
function run(input, parameters) { | |
currentApp = Application.currentApplication(); | |
se = Application("System Events"); | |
currentApp.includeStandardAdditions = true; | |
clip = currentApp.theClipboard(); |
View even-tuning.ck
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
SinOsc s => dac; // could be any unit generator | |
440.0 => float baseFreq; // starting frequency | |
5.0 => float divs; // number of even divisions of the octave | |
1 => int i; // number of steps above base | |
// Playtest | |
// baseFreq => s.freq; // play base freq | |
// 1::second => now; | |