Ludwig Stecher
Ludwig Stecher
As explained [in the blog post](https://rulex-rs.github.io/blog/renaming-rulex), we need to rename the project to **pomsky**. ### What needs to be done - [x] announce the new name - [x] rename the...
And if you would like to use Pomsky but can't, why?
Pomsky can show a warning when a quantifier is implicitly greedy when it should probably be lazy. This is the case when an overly generic expression (such as `.` or...
### Semantic version ``` let number = [digit]+; let identifier = [ascii_alnum '-']+; let identifiers = identifier ('.' identifier)*; :major(number) '.' :minor(number) '.' :patch(number) ('-' :prerelease(identifiers))? ('+' :buildmeta(identifiers))? ```
## Intersection ```py [Numeric] & [Latin] # [\pN&&\p{Latin}] [Numeric '_'] & [Latin] # [[\pN_]&&\p{Latin}] ``` Pomsky should apply DeMorgan's laws when possible: ```py ![Numeric] & ![Latin] # is equivalent to...
Displaying notifications on the web. ### This is a work in progress and hasn't been tested. Feedback is very welcome. This API comes in two flavors: A callback style and...
## Summary Make an API for displaying [notifications](https://notifications.spec.whatwg.org/) (see [MDN documentation](https://developer.mozilla.org/en-US/docs/Web/API/notification)). ## Motivation The event handlers in `web-sys` accept a `Option`, which is ugly to work with. Also, it is...
Error: ``` error[E0433]: failed to resolve: use of undeclared crate or module `bonsaidb_client` --> /home/ludwig/.cargo/registry/src/github.com-1ecc6299db9ec823/bonsaidb-0.4.1/src/cli.rs:5:5 | 5 | use bonsaidb_client::{fabruic::Certificate, Client}; | ^^^^^^^^^^^^^^^ use of undeclared crate or module `bonsaidb_client`...
Currently it's impossible to open or close the info popup in fullscreen mode, so I suggest adding the following features: - Allow binding a keyboard shortcut for the info popup...