Ed
Ed
This works for me ``` curl http://localhost:8000/signup -H 'content-type: application/json' -d '{"NS":"test","DB":"test","SC":"account","email":"ed","pass":"pass"}' ```
Only thing I can think of is namespace and database don't match up, what's the result if you run the following? ``` curl http://10.0.0.24:8000/sql -H 'content-type: application/json' -H 'DB: test'...
I came up with this solution to overcome the coupling with the root container abusing factory providers a little bit: Full example: ```ts container.register("TransientContainer", { useFactory: (c) => c });...
I was working on something that also required async event handlers (i.e. i was using `htmx:configRequest` to modify the request but it was async). I came up with my own...
For anyone trying to get around this you can try this in your Cargo.toml ```toml wasm-bindgen = "=0.2.84" ```
@tarosbubbletea This is how I'm doing right now: Tiny wrapper for cloudflare Elysia class: ```ts export class Ely< BasePath extends string = "", Decorators extends DecoratorBase = { request: {};...
This is my quick and dirty highlighter for ADA keywords. It's not much but it's better than nothing. Maybe someone can put together a PR and add some operators in...
For anyone lazy that just wants it to work: ``` bazel_dep(name = "hedron_compile_commands", dev_dependency = True) git_override( module_name = "hedron_compile_commands", remote = "https://github.com/eduardvercaemer/bazel-compile-commands-extractor.git", commit = "e49f0cd201931f2a3137814a66a0d2e30b45cda1", ) ```