Jake Leahy

Results 26 issues of Jake Leahy

I am trying to use nimterop to create bindings to [libTomCrypt](https://github.com/libtom/libtomcrypt) and get this error `Error: undeclared identifier: 'ltc_cipher_descriptor'` with this code ```nim import nimterop/[build, cimport] const baseDir = getProjectCacheDir("libtomcrypt")...

toast

**Describe the bug** Text is blurry and difficult to read **To Reproduce** To reproduce just run this code ```nim import nodesnim Window("Hello, world!") build: - Scene scene: - Label hello:...

bug

Updates Nim to [1.6.8](https://nim-lang.org/blog/2022/09/27/version-168-released.html)

Correct path is listed [here](https://nim-lang.org/docs/nimc.html#compiler-usage-configuration-files) (See number 2). While it says `nim.cfg` in the docs, `config.nims` is the correct file for this purpose

Currently `insertID` (and probably other procs) cannot be used in GC safe functions because the `body` parameter isn't considered GC safe *Sample from my stacktrace (using latest Nim devel version)*...

Adds [atlas](https://github.com/nim-lang/atlas) to the proxies list so it is properly installed alongside other tools

Procs can now be hashed in the JS backend (Which had issues before due to `rawProc` not being defined). Uses `getObjectId` instead of defining `rawProc` since using `rawProc` would cause...

Closes #303 Example here can be accessed at http://[::1]:8080 ```nim import asyncdispatch, jester, os, strutils router myrouter: get "/": resp "It's alive!" proc main() = let port = 8080.Port let...

This uses `DocumentSymbol` if the client supports it which allows enum/type fields to be shown ```nim proc test() = discard type Something = object hello*: tuple[name: string] Test = enum...

All hostnames fail to resolve inside the container. I have verified it has connection since I can run `curl 1.1.1.1` but trying `httpbin.org/ip` fails. `dnsmasq` starts but seems to be...