jrop

Results 52 comments of jrop
trafficstars

And here's the coredump stack frame: ``` #0 0x00007f63e6322077 in __GI_raise (sig=sig@entry=6) at ../sysdeps/unix/sysv/linux/raise.c:50 #1 0x00007f63e6303535 in __GI_abort () at abort.c:79 #2 0x00007f63e636a516 in __libc_message (action=action@entry=do_abort, fmt=fmt@entry=0x7f63e648ec00 "%s\n") at ../sysdeps/posix/libc_fatal.c:181...

@sunfishcode > There's also work going on to support modules that don't operate in terms of a "_start" function, but it's not very polished in the toolchains yet. This sounds...

Is there a good way to do something like the following? ```typescript // app.ts export const app = new Elysia() .use(html()) .state('n', 123); export MyContext = Context

I think I may have actually got it: ```typescript // app.ts export const app = new Elysia() .use(html()) .state('n', 123); type App = typeof app; type Instance = App extends...

@langej Try my answer in this comment: https://github.com/elysiajs/elysia/issues/95#issuecomment-1714674241 I believe this is what is wanted. The "trouble" is that portions of Context _can_ depend on route-specific type-guards, which if I'm...

I ended up going a different route recently with this that I am much more happy with. The problem with my previous approach was that I was depending on what...

I believe this relates to #1 as well: I'm considering changing how `:Mongoconnect` works: right now it is confusing and the options/combinations are not really documented well or very predictable....

@FilipHarald at the moment, this plugin does not take into account auth-protected DBs, so the errors you are getting are expected. To me, this seems pretty fundamental, so support for...

I'm considering changing how `:Mongoconnect` works: right now it is confusing and the options/combinations are not really documented well or very predictable. Just this morning, I was hung up using...

Is this the successor to https://github.com/neovim/nvim-lspconfig/issues/3456? I'm also having an issue where multiple vtsls servers attach to a buffer upon open. From my investigation, the issue is repeated (programmatic) calls...