iacore
iacore
The [documentation](https://raku-docs.localhost/language/quoting#Word_quoting:_qw) says that `qw` split input into words. However... ``` [14] > qw|a|.WHAT (Str) #why??? [15] > qw||.WHAT (List) [16] > qw|a b|.WHAT (List) ``` ## Example showing why...
Currently there is no way to destruct object on assignment. ``` my (:$key, :$value) = a => 1; # not what you think # $key is :a(1) # $value is...
## Search Entries not HTML Link When searching, the links cannot be opened in new tab or inspected. (when hovering over ``, you can see the link in browser. ##...
## Problems of existing tools `rakudo --profile`: The HTML output loads very slowly. [Qt GUI](https://github.com/tadzik/p6profiler-qt): Fast, but no callgraph [moarperf](https://github.com/timo/moarperf): The AppImage is broken (cannot see callgraph), and inactive. ##...
I made a PoC search engine that searches Github, Sourcehut, and any Forgejo instance (live instance at https://reposearch.exozy.me/). I want to port the functionality to araa-search, since I don't see...
If I understand the code correctly, in Kind2, Equal.refl is not a constructor, but a regular definition. This may be problematic, where inductive constructors are injective, while normal definitions may...
To support responsive ui design, this ui library must support minimum and maximum constraint on box size. For example, a text column shouldn't be wider than 700px, otherwise it's unreadable....
This would be something like tldraw and Excalidraw.
``` mkdir www.aaa cd www.aaa git init git commit --allow-empty -m "hi" git branch wiki git worktree add wiki.git wiki mycorrhiza . ``` Now, in Mycorrhiza (Web UI), - create...