Results 45 comments of jgarvin

@AndreKR it's the main way to not have the runtime cost of branching to pick the appropriate instruction set. A lot of (most?) software gets written internally by businesses for...

I just happened to have the cursor in that buffer when I ran the command, because I was looking up the package version before I realized there was the command...

Problem just happened again, but this time erased the whole buffer up to where I tried to do the wrap @_@ Different trace though: ``` Debugger entered--Lisp error: (wrong-type-argument stringp...

This is possibly related but not sure: https://github.com/syl20bnr/spacemacs/issues/5491

Users who aren't totally familiar with each platform might not realize that Lux isn't going to implement a low latency parallel compacting GC for them ;) I'd maybe suggest: Red...

@trvinh99 How did you determine CentOS didn’t free the memory? On Linux any free RAM is used to cache IO, so it won’t show as free, but is still “free”...

I'm not a rust expert yet by any means, this is my basic mental sketch of an API: ``` struct Runtime {} enum Capability { MemoryBuffer(...), FileHandle(...), .... } impl...

If channels can have data put in them before a receiver is setup, and if channels can transmit capabilities, then I suppose `spawn` doesn't need the capabilities argument. You'd just...

I was able to work around it, but it does create the need for special cases around text rendering. I used ggez to create a text adventure (with some minor...

I figured I'd mention since I haven't seen any discussion of it here, that there is a minimal version of this that is probably much more trivial to add which...