Hugo Granström

Results 39 issues of Hugo Granström

As has been discussed between me and @pietroppeter, the file size of the final HTML file can grow quite a bit if many `nbCodeToJs` are used as they will have...

See https://forum.nim-lang.org/t/9345 where some code has to be called *after* Karax has rendered the graph to access the canvas. There exists such a feature, but it has to be passed...

This is an idea I got when exploring how to align things in nimiSlides (https://github.com/HugoGranstrom/nimib-reveal/issues/8), what if nimib could support a convenient flexbox API so different layouts easily could be...

enhancement

Initial discussion here: https://github.com/SciNim/getting-started/issues/21 The [cheatsheet example](https://pietroppeter.github.io/nimib/cheatsheet.html#lists) has links to specific headers. This makes it easy to refer to specific sections of a post. The current implementation needs some work...

enhancement
2023H1

For the units tutorial I'm planning to write someday (hopefully soon) I think it would be nice to have lots of examples mixing SI and Imperial units (because it's a...

Right now we use `lent UncheckedArray` instead of `ptr UncheckedArray` in some places. And at the moment `lent` is handled behind the scenes with pointers but from [this](https://discord.com/channels/371759389889003530/755344160592101389/801595200987856917) conversation with...

When we for example slice a Tensor or perform a reduction along an axis we have two options: either to keep the dimensions of the original Tensor even if its...

Right now there are a few tests in https://github.com/SciNim/flambeau/blob/master/tests/arraymancerTestSuite/tensor/test_accessors.nim that fail. Most notably: - No bounds-checking - Expression like `a[1, 1] += 10` isn't possible because `a[1, 1]` is immutable.

Using the now default `codeAsInSource` has the following problem (`codeFromAst` doesn't have this problem): `nbCode` (or any block reading code) can't be used inside another template. This is due to...