Philip Weaver
Philip Weaver
Do I need to do anything else for this pull request to be merged?
I've been dabbling with creating a macro system for WebAssembly WAT text files in my spare time: https://github.com/simplygreatwork/sweet-webassembly It's not exactly Sweet.js but I do really like Sweet.js as an...
I think the issue is that some simulators display the state vectors in high qubit to low qubit order and some in low qubit to high qubit order. I prefer...
Much apology. I wasn't clear. I intended four qubits with one instructions per qubit. X H H H Some other simulators seem to list the order of probability in the...
So i'm just trying to wrap the handle method and set the CORS headers - not successful yet...
Making some progress. ``` npm install --save cors ``` ``` const cors = require('cors')(); const handle = server.handle.bind(server); server.handle = function(req, res) { cors(req, res, function() { handle(req, res); });...
Here's another simple example: ```javascript Lazy.emitter = function() { return { emit : function(data) { this.emitter.emit(data); } } }; Lazy.stream = function(emitter) { return Lazy.createWrapper(function() { emitter.emitter = this; })();...
I've been using socket.io-stream for streaming objects in [Godsend](https://github.com/simplygreatwork/godsend). Once I fully grokked everything, I got socket.io-stream working well without any major issues so far. However, an alternative is https://github.com/maxogden/websocket-stream...
Duncan, thank you so much for offering feedback. One of the nice aspects of arrow functions in ES6 are that they automatically bind to this. Aside: I'm currently focused on...