Andre von Houck

Results 30 issues of Andre von Houck

See: https://github.com/nim-lang/RFCs/issues/373 The `{.experimental: "overloadableEnums".}` should only be required in the file where enums are defined. I have two files: enumlib.nim: ```nim {.experimental: "overloadableEnums".} type Enum1* = enum A, B,...

Python appears to be the only language to use external library PIL to write the bitmap out. This makes it significantly shorter then other languages. I think to be fair...

When setting mouse position in another screen ValueError: Point out of bounds happens.

bug

I think some thing needs to be added to the build path when on windows and mingw: https://github.com/bkaradzic/bx/issues/50

Other simulations have used complex algorithms per neural, while you seem to have used a simple perceptron. Your worm seems to do the wormy things? You seemed to have showed...

```nim import json type Foo = ref object name: string params: JsonNode var foo = Foo() echo pretty %foo ``` ### nim c ``` Traceback (most recent call last) /p/andrelytics/tmp/bug2.nim(10)...

Standard Library

### Is your feature request related to a problem? Please describe Araq is working on a dependency tool: * https://github.com/nim-lang/atlas * https://forum.nim-lang.org/t/9748 It would be nice for the tool to...

feature

Thank you for making this repo its very educational. This minimal implementation is brilliant. The bigger SD repos are very hard to understand. Did you have a script to convert...

Concat works for other iterators like in your tests, but does not work with walkDir, I don't understand why: ```nim import os, iterutils # works for n in concat(toIter(1..4), toIter(20..23)):...