Rehan Iftikhar

Results 16 comments of Rehan Iftikhar

Technically the project is still alive. I pushed some new commits a few days ago for the first time in a long time. What type of application are you working...

Still in development On Thu, Feb 9, 2017 at 4:54 AM, Nachiket Patel wrote: > still alive? :) > Is it still getting used in production? > > — >...

This is something I've wanted to do for a while but never got around to doing. I think we need to handle 2 different error scenarios: 1) When the evaluation...

It sounds like the goal is to be able to read back the context's globals after a task has run. Here is a sketch of how I can see this...

Ok. In preparation for this I started integrated [contexify](https://github.com/brianmcd/contextify) as the actual code execution strategy (rather than using the native `vm` module). I pushed my initial changes here d806a8dd30a831deb08f593f992ab9c38b99b839. All...

That code is what starts the "server" aspect of engine.js: an intake, an exhaust, and one or more cylinders (in fact, this is exactly whats in `script/server.js`). Its included in...

Thanks for reporting. I am looking into this now. I suspect a timing issue somewhere in the library and/or in the 0mq binding.

I made 2 changes and pushed to a new branch: 22846b10ce2d985d4701e085228073405641e0ef First, I made socket binding synchronous. Next I put a sleep in between each test. I don't think this...

I did some more research into this error: ``` timers.js:96 if (!process.listeners('uncaughtException').length) throw e; ^ TypeError: Socket is closed at Socket._ioevents (/Users/eric/CodePath/engine.js/node_modules/zmq/lib/index.js:146:22) at Socket._flush (/Users/eric/CodePath/engine.js/node_modules/zmq/lib/index.js:277:23) at Socket.send (/Users/eric/CodePath/engine.js/node_modules/zmq/lib/index.js:255:42) at [object...

I started working on implementing something like this ontop of @gf3's sandbox module a while back: https://github.com/rehanift/sandbox. Basically I added the ability to add/define methods to the `vm.runInNewContext` scope. However,...