vwkd
How to unset white background of SVG in Jupyter notebook?
I’ve got a Jupyter notebook with Deno kernel in VSCode that displays an SVG. The SVG has a forced white background which doesn’t play well with dark mode.
Digging through the dev tools shows it’s caused by a rule referencing a wrapping div.
So, it can’t be the SVG itself. Maybe Deno? Maybe Jupyter fronted? Maybe some of their VSCode extensions?
How can I unset the background color of the SVG?
3 replies
Empty output in Deno.Command
I’m trying to run the command
git log —grep='.'
from Deno. However, it always returns an empty output.
If I delete the grep
option it returns it fine. Running the same command from the CLI returns all commits.
It’s weird because other “similarly looking options” seem to work fine for example —format
.
4 replies
Sync uuid from string
How can I generate a UUID from a string synchronously?
In the standard library I only found this async module https://deno.land/std@0.160.0/uuid/v5.ts?s=generate
6 replies