Laurie Harper

Results 17 issues of Laurie Harper

I'd like to be able to createPackage({ paths: ['path/to/file.js']}) so that I can export sub-modules individually; it's not always appropriate/desirable to export all the files in a given directory and...

I'm trying to get called back on internal ticks, without success. I tried the naive approach: ``` dynamicsWorld = new ammo.btDiscreteDynamicsWorld(...) dynamicsWorld.setInternalTickCallback(pretick, this, true) dynamicsWorld.setInternalTickCallback(posttick, this, false) dynamicsWorld.stepSimulation(1/30, 5) function...

Once I got coverage reporting working, my first reaction was that the output was in the wrong order; I need to scroll back pages to find out if all my...

If you run expresso on a script with no tests exported, expresso hangs indefinatly, with or without a timeout option: ``` $ cat test.js // disabled // exports['test'] = function()...

Proxying to a service using SSL with a self-signed certificate results in an error: "Proxy settings are NOT ENABLED". That's misleading, given that proxying a service and using an HTTP...

The README doesn't make any mention of DynamoDB transactions. Is support for transactions available? (Or planned?) For me, getting started using DynamoDB using the AWS SDK directly, transactions have been...

The Alt key for fly down is convenient in conjunction with Space to fly up, but has a number of conflicts: hot bar switching uses Alt+Scroll, switching applications uses Alt-Tab,...

onStartElementNS() passes an array of namespace prefix/uri pairs, signalling the start of a namespace binding, but onEndElementNS() has no corresponding callback parameters to signal when namespace bindings go out of...

The parser silently skips Processing Instructions (including the XML Declaration) and DOCTYPE declarations in the parsed document. It also lacks callback methods through which they would be signaled. This makes...