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
(function(){ | |
fluid.defaults("adam.oscreceiver", { | |
gradeNames: "fluid.component", | |
oscPort: null, | |
listeners: { | |
onCreate: { | |
func: function(that){ | |
that.options.oscPort.open(); | |
console.log(that.options.oscPort); |
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
<html> | |
<head> | |
<script src="lib/flocking/dist/flocking-all.js"></script> | |
<style> | |
body{ | |
padding: 0; | |
margin: 0; | |
} | |
#meter{ | |
box-sizing: border-box; |
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
<html> | |
<head> | |
<script src="lib/flocking/dist/flocking-all.js"></script> | |
<style> | |
body{ | |
padding: 0; | |
margin: 0; | |
} | |
#meter{ | |
box-sizing: border-box; |
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
<!DOCTYPE html> | |
<head> | |
<meta charset="utf-8"> | |
<title>SLIDE - Adam Tindale</title> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.5.16/p5.min.js"></script> | |
<!--script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.5.16/addons/p5.sound.min.js"></script--> | |
<style> | |
html { | |
font-size: 10pt; | |
font-family:Georgia,Serif; |
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
<!DOCTYPE html> | |
<head> | |
<title>Nexus + Flocking</title> | |
<script src="../node_modules/nexusui/dist/NexusUI.js"></script> | |
<script src="../node_modules/flocking/dist/flocking-all.min.js"></script> | |
</head> | |
<body> | |
<div id="panner"></div> |
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
<!DOCTYPE html> | |
<head> | |
<title>Nexus + Flocking</title> | |
<script src="../node_modules/nexusui/dist/NexusUI.js"></script> | |
<script src="../node_modules/flocking/dist/flocking-all.min.js"></script> | |
</head> | |
<body> | |
<div id="meter"></div> |
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
// Simple script that exports a users "Saved For Later" list out of Feedly | |
// as a JSON string. | |
// | |
// Inpired by : | |
// https://gist.github.com/bradcrawford/7288411 | |
// https://gist.github.com/ShockwaveNN/a0baf2ca26d1711f10e2 | |
// https://github.com/dotEsuS/Feedly-Export-Save4Later/blob/master/script | |
// | |
// This was intended for use in the Google Chrome's "Inspector" tool so your | |
// mileage may vary if used in other contexts. |
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
var synth = flock.synth({ | |
synthDef: { | |
ugen: "flock.ugen.distortion.deJonge", | |
amount: { | |
ugen: "flock.ugen.sin", | |
mul: 99, | |
add: 100, | |
freq: 0.1, | |
}, | |
source: { |
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
var synth = flock.synth({ | |
synthDef: [{ | |
ugen: "flock.ugen.distortion.deJonge", | |
amount: { | |
ugen: "flock.ugen.sin", | |
mul: 99, | |
add: 100, | |
freq: 0.1, | |
}, | |
source: { |
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
var synth = flock.synth({ | |
synthDef: { | |
ugen: "flock.ugen.distortion.tarrabiaDeJonge", | |
amount: { | |
ugen: "flock.ugen.sin", | |
rate: "control", | |
freq: 0.25 | |
}, | |
source: { | |
ugen: "flock.ugen.saw", |
NewerOlder