Jim Newsome

Results 197 comments of Jim Newsome

It'd be nice to fix this, but I found a workaround, using `ansi2txt`: ``` jupyter nbconvert notebook.ipynb --execute --to markdown --stdout | ansi2txt > notebook.md ```

Maybe a separate issue, but on the topic of markdown-export, it's a little bit difficult to visually distinguish the cell contents and cell output when the resulting Markdown is converted...

@tomjn Ah, I didn't know you could quote keys. Thanks for the workaround, though I still wonder whether a conforming parser ought to be able to handle it without the...

Thanks for the explanation! I don't have time to dedicate to improving this, but it's good to have the workaround and understand what's going on here.

> 5: shadow_rs::host::memory_manager::memory_mapper::MemoryMapper::handle_mmap_result > at /tmp/shadow/src/main/host/memory_manager/memory_mapper.rs:542:34 This is a failure to mmap part of *shadow's* shmem file. I don't know of a reason that could fail unless we're somehow losing...

> jackd is run with -r to turn off realtime priorities. IIRC JACK usually sets realtime priority for the server and inherits that priority to jack clients' audio threads. Other...

Ok, I think this is ready. Sorry most of it is in one giant commit. I'd created a lot of smaller commits as I went, but ended up going back...

Some ad-hoc benchmarks on my machine to validate things didn't get worse: Clean release build: 55s -> 54s Nop incremental release build: 4s -> 2s touch thread.c; incremental release build:...

In addition to now always recompiling the C code, we unfortunately lose cmake's generation of compile_commands.json, which vscode and other tools use for analysis. I've verified that it can be...

I've verified that with #2390, I can build shadow in an ubuntu:18 docker container, copy the installation directory out to my host machine, and run shadow from there on my...