foxt

Results 53 comments of foxt

@9efueifu Read the log file. You're probably missing the DUKE3D.GRP file ```EDuke32 r(?) Built May 24 2018 14:43:19, GCC 8.1.0, 64-bit Using sdmc:/switch/eduke32/ for game data Initializing SDL 2.0.8 Using...

What's the point of a memory usage limit if Docker is simply going to blow past it, with a 4GB memory limit, and Docker's scout component alone using 6GB.

FWIW, it stopped immediately after unchecking the box for me On Tue, 6 Feb 2024 at 7:26 pm, Jason DePeaux ***@***.***> wrote: > Chiming in here: > > I have...

I don't know if it would be easily ported to node add ons (I have no idea what I'm doing when it comes to C/C++), but I found a library...

@sabaatworld if not, you can always just call ddcctl using child_process.

``` Uncaught SyntaxError: missing ] after element list onload https://fms-cat.com/condition/pages/condition_1280x720_final.html:1 condition_1280x720_final.html:2:385note: [ opened at line 2, column 174```

![Works fine for me](https://cdn.discordapp.com/emojis/323300460708757514.png) ![image](https://user-images.githubusercontent.com/12257112/30558284-d58432cc-9ca8-11e7-910d-90ac575d3f10.png)

Realised that always running `String.fromCharCode` will break compatibility with node, but fixes compatibility with the buffer polyfill I am using on the web. (https://github.com/feross/buffer) Might be an idea to check...

Fixed by replacing the `switch (opcode)` with `switch (String.fromCharCode(opcode))` This could be a weird WebJS/NodeJS incompatibility. ```js [...] var opindex = i , opcode = pickle[i++]; //console.log('opcode ' + opindex...