Results 41 issues of Reisen

I noticed that all the symbols from NERD fonts were brought into Pragmata to support vim-devicons and others (issue #53). It seems that they only work with `PragmataPro` though, and...

It seems the URI parser stumbles with URNs. A simple test to reproduce: ```rust fn main() { use http::uri::Uri; let uri = "urn:isbn:1238492".parse::(); println!("{:?}", uri); } ``` Produces the output:...

Right now I can print the public key from freepass, or add the private key to ssh-agent. Are there any plans to allow printing the private key as well? I...

I have a Buffer hydra for managing buffers, with the following head that lets me close all buffers except the one I’m focused on: ``` {'o', ':%bd|e#|bd#', { exit =...

This PR picks up some of the old SDK code that is currently unused and puts in some of the final touches to get it cleaned up. While the PR...

Using `create-react-app` gives us CSS modules and the option of using a CSS pre-processor. While I don't want to bring in any pre-processors I do want to bring in CSS...

enhancement
web

Uploaded data is currently completely unvalidated. All routes should be checked but current validations missing: - [ ] User Registration (Username/Password Length) - [ ] User Login (Username/Password not Empty)...

bug
security
web
backend

Right now projection is done only on the latest event, which should result in decent re-projection performance but also has the caveat that the projection itself must not depend on...

enhancement
question
backend

User handling does not capture or bubble up any information about failures in registration and login. This should at the very least: * Push up errors about why authentication failed...

enhancement
backend