Davis Davalos-DeLosh
Davis Davalos-DeLosh
Because ~/.vscode-server/bin is a hardcoded path, the service will not work for certain VSCode variants including Code - OSS where the directory is ~/.vscode-server-oss
The following C code: ```c #include void print (int); int main () { int rows; scanf("%d", &rows); print(rows); return 0; } void print (int r) { int c, space; static...
Unsupported command logging is causing significant kernel log spam for several laptop models. Until better error handling logic is created, it should be removed for #52
As expected, scalajs-bundler will throw `Unsupported webpack major version 5` when trying to use any `webpack` version with a major version higher than 4. The update seems to primarily focus...
If you use the `![[note]]` syntax in a note, the reference to the other document is not shown in any graph view. This is not the case in Obsidian
Using the GopherWASM package, the code should be updated to work with both WebAssembly compilation and GopherJS. Unfortunately, I could not run the tests on my computer, so it would...
Adds an option `--preserve-mtime` which preserves the last modified time metadata on exported files with accompanying tests. For the purpose of making this cross-platform, it uses/adds the [filetime](https://crates.io/crates/filetime) crate
The following code: ```hakaru expect x
When I try to convert `pdf` files to Markdown using `mpx convert file.pdf file.md`, it seems like it always uses the non-standard Mathpix Markdown format, even when I don't use...
Navigator.Online() is not implemented, which would be very nice to have for my PWA. Thanks!