T.C. Ferguson

Results 30 comments of T.C. Ferguson

My guess is your running in to a recent xcode issue that I ran in to on Mac. Had nothing to do with Fibers but rather the build tools. Here...

I can't tell which Fibers version your trying but since your using Node 10.x make sure your running Fibers@4. https://github.com/laverdet/node-fibers#supported-platforms

It looks like your compiling Fibers version 3.x against node.js 12.x which will not work. You need to be using the latest Fibers version.

https://github.com/laverdet/node-fibers#supported-platforms

I'm running in to similar issue where I have some code that is trying to use async / await, but after an await the code calls other code that is...

@benjamn I just want to make sure I understood...When you talk about what Meteor does today, you mean you do that through function calls vs some magic behind the scenes...

You can still use promises, just not await. The Fibers library has an example for converting promises to a fiber yield. It's pretty straight forward in that it is just...

Actually, even worse is the actual command being run is wrong. It needs to be: ```sh git status --porcelain --ignored=#{ignored_file} ``` if you run it without the equals sign it...

The blocking definitely isn't happening. The command ``` cp file.test ./mount/ && ls -l ``` Will show 0 for the file. The real problem is that any program that requires...

In what little experience I have with it the performance is on par (if not better) than the native solution. I don't think native IPC would be that tough. Just...