Andre von Houck

Results 51 comments of Andre von Houck

packages.json is getting big... Maybe just a single big directory were each package is a file? If we have sub directories package names can conflict without people knowing.

@ferreiradaselva Did you get any further with your glfwPushPixels idea? Sounds interesting?

Exactly, here is another example that is more like my error: ```nim import std/asynchttpserver, std/asyncdispatch proc main {.async.} = var server = newAsyncHttpServer() proc cb(req: Request) {.async.} = var f:...

Even doing a simple filter out of all standard lib lines and stopping at first `#[` yield a pretty good result: ```nim import std/asynchttpserver, std/asyncdispatch, strutils proc main {.async.} =...

I don't know if you need to go in all that fancy. Just filtering out junk from the stack trace is 80% there and would make a huge improvement: ```nim...

Also there is `hello.nim` but not nim timing information.

I really like how NPM does *some* things. Mainly installing packages in your local directory. I like how you can just edit and look at the source of the included...

My other unrelated preference would be to make packages grow complex not start out complex. * It could be cool if package could start out as a single file package...

I also agree with krux02 on https://github.com/nim-lang/packages/issues/1012 . Cant we just look up stuff in usual places instead of having a central json file?

``` import httpclient var client = newHttpClient() echo client.getContent("http://google.com") ``` ``` nim c -r -d:ssl .\certtest.nim ``` ``` C:\Users\me\.choosenim\toolchains\nim-1.4.4\lib\pure\httpclient.nim(557) certtest C:\Users\me\.choosenim\toolchains\nim-1.4.4\lib\pure\httpclient.nim(324) getDefaultSSL C:\Users\me\.choosenim\toolchains\nim-1.4.4\lib\pure\net.nim(658) newContext Error: unhandled exception: No SSL/TLS CA...