Peter Hellberg

Results 26 comments of Peter Hellberg

I've not gotten it to crash, but CPU usage is >100% when quickly resizing the window (seems like we need some event debouncing) Oh, and while resizing the window (under...

@jonhoo This is great, thank you for doing these benchmarks. Nice to see that Go tip is catching up. :+1:

Not sure if related, but I'm seeing the following errors when getting the audio package under macOS: ``` $ go get -u -v github.com/200sc/klangsynthese/audio github.com/200sc/klangsynthese (download) github.com/200sc/klangsynthese/audio # github.com/200sc/klangsynthese/audio ../../../../200sc/klangsynthese/audio/encoding.go:18:...

Yes, your changes did the trick. ``` ~/Go/src/github.com/200sc $ rm -rf klangsynthese/ ~/Go/src/github.com/200sc $ go get -u -v github.com/200sc/klangsynthese/audio github.com/200sc/klangsynthese (download) github.com/200sc/klangsynthese/audio/filter/supports github.com/200sc/klangsynthese/audio ~/Go/src/github.com/200sc ```

This would be convenient if built in. (Like it is in [Ebiten](https://godoc.org/github.com/hajimehoshi/ebiten#Run)) For now the [raycaster](https://github.com/faiface/pixel-examples/blob/master/community/raycaster/raycaster.go) community example supports scaling: ``` go run $GOPATH/src/github.com/faiface/pixel-examples/community/raycaster/raycaster.go -w 256 -h 224 -s 2...

The `LedStriper` type should most likely be renamed to something like `LEDStriper` since [**LED**](https://en.wikipedia.org/wiki/Light-emitting_diode) is an initialism.

Thank you for opening the PR, I've left a few comments as I'm a bit reluctant to bring in all of the changes.

Something similar to the Ruby library [Tilt](https://github.com/rtomayko/tilt) would be really nice to have in Go. I’ll see if I can figure something out since I’d like a convenient way to...

@Ruulul No need for an entrypoint: https://github.com/aduros/wasm4/blob/091b829d548bd37c061b56300488154ad2df4272/cli/assets/templates/zig/build.zig#L14 (after the change to using `addExecutable`) As a small sidenote, I have two command line tools that I use to start projects for...