zhangpy

Results 8 comments of zhangpy

another linux issue, runtime.WindowSetPosition can't change position on my ubuntu. (but works on windows) ``` func (a *App) startup(ctx context.Context) { a.ctx = ctx runtime.WindowSetPosition(ctx, 100, 100) } ```

you could take a look at the zip file to reproduce it. The project is created by wails command and I modified a little. https://github.com/wailsapp/wails/files/8862072/w.zip

@leaanthony the pr works, I tested on master branch and did not crash anymore.thanks.

rename `gvm get` to `gvm upgrade` in cmd usage will avoid such confusion.

this is the example code https://github.com/lxn/walk/tree/master/examples/progressindicator

I have similar requirement: I want to run ruby(irb) in container. I do like this: Start a docker ``` docker run -ti ubuntu(installed ruby) -name dn /bin/bash ``` Start irb...

I can run ruby right now without irb. So I don't need walkaround anymore.

@cpuguy83 thanks for the detailed info. Your code works for me. The difference between 2 pieces of code is how to start docker exec in golang. If I use -it...