Moving from GitHub to Codeberg, for lazy people 4 months agogit-bug[1] looks promising, but I haven't tried it.[1] https://github.com/git-bug/git-bug 0ThreadHN
Python Type System Conformance Test Results 2 years agopreview: <https://htmlpreview.github.io/?https://github.com/python/typ...> 0ThreadHN
Gentoo goes Binary 3 years agoOn Debian you can have `/bin/sh` be any POSIX shell, on Arch you're forced to have it be Bash.AFAIK you can use any POSIX shell as `/bin/sh` on Arch Linux. By running `sudo ln -rsf /bin/dash /bin/sh`, dash works well. 0ThreadHN
Terminal Emulators Battle Royale – Unicode Edition 3 years agoIt has. The full test results are on this page: <https://ucs-detect.readthedocs.io/results.html>. 0ThreadHN
Using enums to represent state in Rust 3 years agoIMO Python's equivalent of Rust's Enums would be `typing.Union` [1]. It is more ergonomic and type-safe, and mypy supports type narrowing [2] and exhaustiveness checking on it [3].[1] https://docs.python.org/3/library/stdtypes.html#types-union[2] https://mypy.readthedocs.io/en/stable/type_narrowing.html[3] https://docs.python.org/3/library/typing.html#typing.assert_... 0ThreadHN
So let’s talk about this Wayland thing 3 years agoUnfortunately, this site is outdated.Last updated: 31 October 2022 0ThreadHN
OpenSSL 3.1 3 years agoMsys2 is distributing binary openssl (and many other packages):https://packages.msys2.org/search?q=openssl 0ThreadHN
The Basics of Arm64 Assembly 3 years agoTermux [1] on Android may be good enough.[1] https://termux.dev/ 0ThreadHN
Python’s Multiprocessing Performance Problem 3 years agoHopefully PEP 684 [1] which suggests a per-interpreter GIL will improve the situation.[1] https://peps.python.org/pep-0684/ 0ThreadHN
Declarative GUI with constraints-based layout engine for Python 4 years agoIt's based on qtpy [1][2], which supports both Qt5 and Qt6 with pyqt5, pyqt6, pyside2 and pyside6.[1] https://enaml.readthedocs.io/en/latest/get_started/installat... [2] https://github.com/spyder-ide/qtpy 0ThreadHN
Python type hints are Turing complete 4 years agoFor FFI, there is a pure python mode in cython: https://cython.readthedocs.io/en/latest/src/tutorial/external.html 0ThreadHN