Jano Paetzold
Jano Paetzold
> Dynamic properties are being [deprecated in PHP 8.2](https://wiki.php.net/rfc/deprecate_dynamic_properties) by the way, so that library will need to change, either by adding actual properties (like they arguably should), or by...
In case any one else stumbles upon this issue while this is not fixed: I worked around this by redundantly assinging the parameters in the sub class – so instead...
> As the extension opens a new container, history cannot by saved. If it could do it, Google can check as well so even it's annoying, I accept the deal...
This is indeed a nice addition to the featureset of slimdump! Are there any reasons to not use parantheses here (like `FAKER_unique->randomDigitNot(0)`)? I think the closer we stay to the...
> Is your application configured to use high DPI? I.e. does wxWindow::GetDPIScaleFactor() return 2 (or whichever DPI scaling you use)? Not doing this seems like the most likely reason for...
> Fixed in master, will be backported to 3.2 too soon. Nice! Thanks a lot. Did you fix it by working around the Gtk Bug and only setting one icon...
> Oops, sorry for the misleading message. I've only fixed the MSW problem mentioned above, not hte GTK one about which I still have no idea. I should have opened...
This issue is a thing again, `false` and `''` get casted to `null`, while `0` results in an empty body. I have a rest endpoint that should just return a...
That 0 results in an empty body actually makes kind of sense if 0 is interpeted as a status code. But the other ones being converted to `null` don't.
I just fixed the same problem in the code of [limburgher/trelby](https://github.com/limburgher) by not passing a buffer as a second argument to the BufferedPaintDC constructor: ```python - dc = wx.BufferedPaintDC(self, self.screenBuf)...