Pankaj Pandey
Pankaj Pandey
As of now, I'm using a workaround of using libdl.dladdr() via ctypes to resolve the symbols, but obviously that does not work for a significant number of cases.
While this would be the correct thing to do, i suspect it may break many applications which use same action in toolbar and menubar, since now Qt would start showing...
This is the only reason I have had to move to using stretchly, which i don't like much (web app in chromium/electron which consumes 10x the memory of workrave). When...
I see some activity on the forks by @8080labs ( https://github.com/8080labs/ipyslickgrid ) which got acquired by Databricks, so unclear future; and by @modin-project ( https://github.com/modin-project/modin-spreadsheet ) , which has lots...
On similar lines, it would be immensely useful if `pl.format()` https://pola-rs.github.io/polars/py-polars/html/reference/expressions/api/polars.format.html would take `std::fmt` https://doc.rust-lang.org/std/fmt/ style format string
Oh, that's too bad. Can we use something like https://docs.rs/runtime-fmt/latest/runtime_fmt/ ? Or else maybe @mcrumiller 's https://github.com/pola-rs/polars/issues/7133#issuecomment-1442422524 style translator from python's format string to polars expressions using a `string.Formatter` subclass...
I don't think this is a good feature to encourage. Many preference systems (notably on Mac and Gnome) do not have "Apply/OK" action, and the preferences are live and the...
@agrawalprash This is probably when using PyQt4 , caused by https://github.com/enthought/jigna/pull/41 Jigna's pyside/pyqt compat code in https://github.com/enthought/jigna/blob/master/jigna/qt.py does not take care to handle their differences. It should be modified to...
I think on windows you could just compare the creation times of the files to check if the file has been recreated. Replacing `os.stat(file_path).st_ino != os.fstat(self.following_file.fileno()).st_ino` with `os.stat(file_path).st_ctime != os.fstat(self.following_file.fileno()).st_ctime`...
You are right, this library's widget model's js code needs to be restructured. It currently stores all the created nodes in a global noderegistry (doesn't seem to delete nodes). and...