Remco Bloemen

Results 48 comments of Remco Bloemen

I have the same issue. I worked arround it by setting the `image="true"` attribute. I have tested the above change and it also works.

The appearent cause was this issue https://github.com/angular/angular.js/issues/7183 in Angular.js. My use of `` was indeed include via a `templateUrl`. Upgrading Angular.js from 1.0.7 to 1.3.15 fixed it for me.

> What is the overhead of inserting the branch at every single metering statement? A potential optimisation is inject a helper function which does the check and call this helper...

> Is it safe to use unreachable for the failure case? Can it be optimised out by engines? Wasm-opt will assume `unreachable` is literally unreachable and can remove every branch...

I've tried removing `ipympl` and `jupyter-matplotlib`, but I can not remove the latter: ``` ❯ jupyter labextension uninstall jupyter-matplotlib JupyterLab cannot uninstall jupyter-matplotlib since it was installed outside of JupyterLab....

Ok, this worked: ``` ❯ rm -r /usr/local/share/jupyter/labextensions/jupyter-matplotlib ❯ jupyter labextension uninstall jupyter-matplotlib Uninstalling jupyter-matplotlib from /opt/homebrew/Cellar/[email protected]/3.9.12/Frameworks/Python.framework/Versions/3.9/share/jupyter/lab/extensions Building jupyterlab assets (production, minimized) ❯ jupyter labextension uninstall jupyter-matplotlib No labextension named...

After running ``` ❯ jupyter labextension install jupyter-matplotlib Building jupyterlab assets (production, minimized) ``` It now works, but this feels wrong since the Readme says just running `pip ipympl` should...

Now the extension manager shows a 500 error and `jupyter lab` logs the following on the console: ``` [W 2022-04-10 13:01:26.315 LabApp] Unhandled error [E 2022-04-10 13:01:26.315 LabApp] { "Host":...

I need to parse a 2.4GB JSON file and found the following to be the fastest: ```rust let file = File::open(options.input)?; let mmap = unsafe { MmapOptions::new().map(&file)? }; let deserializer...

I have a need for standards conformant culture-neutral case invariant comparison. I think this may be simple enough to contribute as a PR to unic. Where can I find the...