David Konsumer

Results 152 issues of David Konsumer

It would work well, automatically, if they were HTML5 date/datetime type-fields.

Using [mongoose-types](https://github.com/bnoguchi/mongoose-types) we get Email & Url. It'd be cool is Url was type=url, and didn't make an error like this: ``` /Users/konsumer/Desktop/forms/node_modules/forms-mongoose/index.js:49 throw new Error('Model does not have forms.type,...

I wrote code/documentation/tests/demos for all the issues put in the queue except making a cool demo. That is next on my list! I also prettified the documentation (while documenting the...

I may be reading the docs incorrectly, but I started noticing different tags than what should show up. I made a [test-case](https://github.com/konsumer/jspos/blob/master/test/test_codes.js). I may be testing it incorrectly (maybe words...

I think a server-side & browser-side implementation of eliza-alike might be a very cool way to demo this great library. I have made a fork, and would be willing to...

I would like to see this library wrapped in [UMD](https://github.com/umdjs/umd) code, so it works in CommonJS (node, rhino, etc) and AMD (require.js, curl, etc) with a fallback of window global....

I would like to see the testing done in pure CLI node.js (like with [vows](https://github.com/cloudhead/vows), for example.) This would allow for clearer test-case, in my opinion. I have made a...

How do I provide an argument to a function? I looked around in code, and didn't really see anything. For example, I want to expose `malloc` from my wasm, it...

I am using this to route WASI calls to `web49_api_wasi` ```c web49_env_func_t web49_main_import_func(void* state, const char* mod, const char* func) { printf("called: %s.%s\n", mod, func); if (strcmp(mod, "null0") == 0)...

So, I downloaded the mac asset from [last successful action workflow](https://github.com/FastVM/Web49/actions/runs/3877558082), and compiled this: ```c #include "raylib.h" int main(void) { const int screenWidth = 800; const int screenHeight = 450;...