Paul Schoenfelder

Results 323 comments of Paul Schoenfelder

@tcoopman Thanks for contributing! There are really two options - if we want to consolidate implementations for some graph operations, then we can parameterize them on their directionality and move...

I could use this in something I'm working on myself, I'm happy to lend a hand as well if there is a preferred approach.

I definitely found it unintuitive at first, but I think there is a good rationale for why it should be that way by default. First, I'd expect that you only...

Is there any reason to do this rather than, say, use a process manager? In your example, wouldn't you want to send the email at most once? How is that...

The reason is that the lock used to be a `ReentrantMutex`, not a `Mutex`; at some point that changed but that comment wasn't updated. If it needs to be re-entrant,...

I actually hit this during my work on #350, in that some tests were acquring a lock directly, then calling code which internally tried to acquire a lock. The result...

Looks like there is an issue with the release binary versus compiling from source, I'll take a look and get that addressed for the next release (sometime in the next...

I would prefer to have our platform abstraction layer (i.e. `liblumen_core/sys` delegate to Web APIs transparently (where possible) to implement built-ins, it would still be possible for one to call...

I think we can probably just stub these out with `unimplemented!()`, it is safe to abort/panic if these are ever called until we eventually design/build a JIT for Lumen.

@fire I've actually got a local branch with work on it that has been ongoing this year, but movement has been slow due to my day job demands. As @bcardarella...