guzba

Results 10 issues of guzba

### Description I recently did some performance-related work and noticed that a lot of code is generated related to exceptions when looking at the C. This excessive checking seems unavoidable...

### Description I have an HTTP server written in Nim using Mummy and several other libs I wrote ([some info here](https://forum.nim-lang.org/t/9902)). It is multi-threaded and built using `--mm:orc` and `--threads:on`...

Showstopper

Hello, I noticed that there is an issue with the octave range in the applyOctaves template. It will always run octaves + 1 times. This small change fixes the issue:...

See https://forum.nim-lang.org/t/10893#72823

### Description Hello, I have been working on parsing JSON with Nim in a way I wanted to explore and have found a few things of interest to share and...

Threads
Performance

Mummy is not built to be the ideal static file server, however that doesn't mean it shouldn't do a better job making this easy than it does right now.

See https://github.com/guzba/nimsimd/issues/1

Just a note for others if they run into this. The line `outbuf[] &= buffer` in the readme.md example will not work if buffer contains compressed (gzip) data. This is...

```nim import curly let curl = newCurly() let stream = curl.request("GET", "https://sse.dev/test", timeout = 5) echo stream.code echo stream.headers try: while true: var buffer: string let bytesRead = stream.read(buffer) if...