David Krause

Results 48 issues of David Krause

it would be nice to have support for commenting.

Another flavour of: #12 module.nim ```nim import nimraylib_now var body*: PhysicsBody ``` main.nim ```nim import nimraylib_now import module #

bug

It would be nice to have a procedure that just returns the binary of a zipfile instead of writing to disk.

Must have an output like this: ``` Prologue is serving at http://169.254.19.171:8081 http://192.168.245.1:8081 http://192.168.2.179:8081 http://127.0.0.1:8081 http://192.168.111.33:8081 ``` depending on the shell, this is then a clickable link.

contributions welcome

to support seeking in audio and video files, to resume downloads, etc.. https://developer.mozilla.org/en-US/docs/Web/HTTP/Range_requests

help wanted
contributions welcome

The syntax highlighter breaks when an answer/question consists only of a code block with no additional text above. ![bug](https://user-images.githubusercontent.com/13794470/71307684-06b7fb80-23f2-11ea-807d-d482e65c8837.png)

Signed-off-by: David Krause

```nim import wnim type MainWin = object app: wApp frame: wFrame but: wButton proc newMain(): MainWin = result = MainWin() result.app = App() result.frame = Frame(title="Hello World", size=(400, 300)) result.but...