Terry Simons
Terry Simons
It looks like there's a driver bug in the rtl8814au driver related to the chip switching channels, and then coming back to the original channel. It seems to be the...
NOOBs fails to resize partitions created with rpi-imager on very large (>64, <=400GB) SDXC cards.
I found a bug in rpi-imager that affects very large SD cards. In my particular setup, the smallest card that I have which works with rpi-imager v1.2 and NOOBS 3.4...
Don't use "print 'foo'" type print statements. This breaks forwards compatibility with Python 2.7/Python 3. ``` diff --git a/firebasin/dataref.py b/firebasin/dataref.py index f94ccec..4a713b5 100644 --- a/firebasin/dataref.py +++ b/firebasin/dataref.py @@ -279,14 +279,14...
The current implementation breaks on Python 3 because of the way the modules are being imported internally. Instead of doing: ``` from firebase import Firebase ``` you should do: ```...
The documentation doesn't really say if joystick events are *REQUIRED* to use controller events, and the way the API is implemented suggests that they're separate - but disabling joystick events...