qb

Results 16 issues of qb

That's a feature I'm really missing with using parsetoml. I'm aware that I could use `toJson` but this doesn't feels natural: ```nim import json, parsetoml parsetoml.parseFile("mycfg.toml").toJson().to(object) ```

I'm trying to hook into a address of a function in a process with the example listed below. `Tool.exe` crashes with a segfault. I never used minhook so I'm not...

```nim import nimpy proc foo(a: int|string) {.exportpy.} = when type(a) is int: echo "Got int" elif type(a) is string: echo "Got string" foo(100) foo("Hello") ``` Fails currently with `invalid type:...

Thanks for the wrapper. For my purposes I would need `XShapeCombineRegion` which is in shape.h. Would be great if it would be added. https://www.x.org/releases/current/doc/man/man3/XShape.3.xhtml

I thought `SetProxy` could be useful. Maybe this can be added in the future. ```go // SetProxy sets a Proxy for the HTTP client func (m *Mega) SetProxy(proxy string) {...