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
Undefined symbols for architecture x86_64: | |
"vtable for QDeviceDiscoveryDummy", referenced from: | |
QDeviceDiscovery::create(QFlags<QDeviceDiscovery::QDeviceType>, QObject*) in libQt5PlatformSupport.a(qdevicediscovery_dummy.o) | |
QDeviceDiscoveryDummy::QDeviceDiscoveryDummy(QFlags<QDeviceDiscovery::QDeviceType>, QObject*) in libQt5PlatformSupport.a(qdevicediscovery_dummy.o) | |
QDeviceDiscoveryDummy::QDeviceDiscoveryDummy(QFlags<QDeviceDiscovery::QDeviceType>, QObject*) in libQt5PlatformSupport.a(qdevicediscovery_dummy.o) | |
NOTE: a missing vtable usually means the first non-inline virtual member function has no definition. | |
ld: symbol(s) not found for architecture x86_64 | |
clang: error: linker command failed with exit code 1 (use -v to see invocation) |
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
var DP = require('dependentModule'); | |
function MyModule (){ | |
var dp = new DP(); | |
this.someFunction = function(){ | |
dp.dependentFunction(); | |
} | |
} | |
module.exports = myModule |
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
{"id":"602645386505992","name":"Sunday Showcase","description":" Sunday Showcase allows visitors unique access to cutting edge projects being undertaken by different tertiary institutions across Singapore. The series invites the creators and their work into ArtScience Museum on a Sunday each month. The creators are on hand throughout the afternoon to talk with visitors about their inventions, their creative process, and to facilitate visitors' interaction with the projects. There is something for everyone in this hands-on, accessible showcase series. Input, Process, Output Sunday 11 January, 1pm – 7pm FREE The MediaLab at LASALLE College of the Arts presents an engaging and varied body of student works, including new musical instruments, design prototypes, and image-making machines.","location":"ArtScience Museum","url":"https://www.facebook.com/events/602645386505992","group_name":"ArtScience Museum","group_url":"http://www.facebook.com/groups/156726297714355","formatted_time":"11 Jan 2015, Sun, 1:00 pm","st |
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
console.log("begin act one"); | |
[1,2,3,4,5].forEach(function(e){console.log(e)}); | |
console.log("end act one"); | |
console.log("begin act two"); | |
console.log("act two scene 1"); | |
[1,2,3,4,5].forEach(function(e){window.setTimeout(function(){console.log(e);})}); | |
console.log("act two scene 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
var http = require('http'); | |
var myTimeout = 500; | |
var options = { | |
host: '192.168.0.1', | |
}; | |
var req = http.request(options, function(response) { | |
console.log("Response : ", response.statusCode); | |
response.on('data', function () {}); |
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
function MoogVCF(){ | |
var y1, y2, y3, y4, oldx, oldy1, oldy2, oldy3; | |
y1 = y2 = y3 = y4 = oldx = oldy1 = oldy2 = oldy3 = 0; | |
var p, k, t1, t2, r, x; | |
return function(cutoff, res, input){ | |
cutoff = 2 * cutoff / sampleRate; | |
p = cutoff * (1.8 - (0.8 * cutoff)); |
Copy the scripts and paste them in wavepot.com
===
- https://gist.github.com/jchris/04585454570853297974 : detuned-wavepot-verge.js - jchris
- https://gist.github.com/jonasschneider/bfa93fbb358313f5b708/ : need more 303 - jonasschneider