PhilippMDoerner

Results 83 issues of PhilippMDoerner

Owlkettle should provide a clearer strategy on what to do for multithreading. At the very least, one-off tasks should be supported. There are 2 general paths we can go down...

enhancement

So far only pbkdf2 and argon are supported. A new module under src/nimword could be added to provide a module with the following procs for bcrypt support: ```nim proc hashEncodePassword*(password:...

enhancement
good first issue

So far only pbkdf2 and argon are supported. A new module under src/nimword could be added to provide a module with the following procs: ```nim proc hashEncodePassword*(password: string, iterations: int,...

enhancement
good first issue

- Initial readme file should provide guidance for setting things up. Including which A records to set for emails etc. - Maybe add some screenshots to it as well

- [ ] For sure: On debian so it doesn't run sudo - Maybe: In the github tasks - Maybe: Locally

Currently I use flyway to do sql migrations on the sqlite db. Instead of that, I can use https://github.com/golang-migrate/migrate?tab=readme-ov-file#cli-usage This allows for up and down migrations easily Start from a...

The regex lib appears to have deprecated its re/RegexMatch/Regex API in favour of something more macro based (?). The API is identical, but the types and symbol-names are different. You...

Minimal example: ```nim import constructor/defaults type User* {.defaults.} = object implDefaults(User, {DefaultFlag.defExported, DefaultFlag.defTypeConstr}) let x = init(User) echo x.repr ``` Seen behavior: ```txt /home/isofruit/dev/playground/src/playground.nim(3, 25) Error: invalid expression: User* {..}...

This is a collection-issue for playing around with the idea of migrating to supabase. What is needed: - [ ] Create auth.user entries for each existing user and connect those...