tobes
tobes
In python 3 `long` and `int` types have been unified and it is no longer legal to use the L postfix to declare a long. As this postfix is used...
When doing pagination it is nice to have http headers see https://www.vinaysahni.com/best-practices-for-a-pragmatic-restful-api#pagination and https://tools.ietf.org/html/rfc5988#page-6 These make life much easier than having to roll things yourself which can lead to mistakes
retroarch-fedora puts its .so files in `/usr/libexec/libretro/xxx.so` rather than in `/usr/lib/libretro/xxx_libretro.so` as seems more traditional. This causes issues for programs like this kodi plugin https://github.com/zach-morris/plugin.program.iarl Is it possible to get...
Courgette is there but courgettes is not.
When installing micropython on an esp32 using thonny it asked me to install esptool via Tool > Manage plug-ins which I did. When I then tried to again install micropython...
### Port, board and/or hardware ESP32 ### MicroPython version MicroPython v1.24.1 on 2024-11-29; Generic ESP32 module with ESP32 ### Reproduction ```python >>> from time import gmtime >>> gmtime(2147483647) # max...