Ronny Rentner

Results 86 comments of Ronny Rentner

Hi, thanks for your quick response. I'm not in a rush, so no worries. I've also explored Cython while developing my shared dict and I guess the ideal situation would...

Hey, if you check out https://github.com/ronny-rentner/UltraDict/blob/main/UltraDict.py#L64 you can see how I use your library for my SharedLock. My main use case for atomics is to have a fast inter process...

Thanks, you can keep it the same, maybe have an additional nicer name for `__enter__()` but that's just a detail.

Hey, any update on this? :)

I've just realized you can delete sync-fork.yml. You will not need this workflow obviously. The release process is in two stages: 1) Build everything and create the release packages. 2)...

Cool :) Ideally, I'd like to be able to do something like ``` wsx = wsx2_builder() return (wsx.build() .Frame(title='My cool program!') .Block(orient=wsx.consts.HORIZONTAL, bgcolor=wsx.consts.BLACK) .Label(label='Hello world!', margin=15, color=wsx.consts.RED) .Button(label='click me!', on_click=lambda...

PS: Maybe a more pythonic style would be: ``` with wsx.Frame(title='My cool program!') as f: with f.Block(orient=wsx.consts.HORIZONTAL, bgcolor=wsx.consts.BLACK) as b: b.Label(label='Hello world!', margin=15, color=wsx.consts.RED) b.Button(label='click me!', on_click=lambda x: print(x)) with...

PPS: There is https://github.com/AndersMunch/wxWize and https://github.com/JoshMayberry/GUI_Maker that seem to use the 'with' approach

Hey, thanks for your reply and sorry for hijacking this issue ticket for such discussions. I'm not sure what's the best place for such a discussion. The more I dive...

Hey, sorry, no problem at all. I wanted to merge but then there were issues with my build pipeline as I added some performance tests (to detect performance regressions) which...