Setting up a time zone
timedatectl list-timezones | grep Wars
sudo timedatectl set-timezone Europe/Warsaw
timedatectl status
How To Use Journalctl to View and Manipulate Systemd Logs
#linux
Improve the Font Rendering In Firefox
Create a file ~/.fonts.conf
and put the contents from:
StackExchange
#linux
Arduino light detector
import machine
a = machine.ADC(0)
a.read()/1024
#soft #arduino
Check internet speed connection from bash
curl -s https://raw.githubusercontent.com/sivel/speedtest-cli/master/speedtest.py | python -
speedtest-cli #linux #soft
Savings 1.0. released!
Iterating over files in resources:
$ pyside2-rcc resources.qrc > resources.py
import resources
it = QDirIterator(':/icon/icons8/')
while it.hasNext():
self.icon.addItem(QIcon(it.next()), '')
#qt #python
Setup locale on the NextCloudPi (Debian)
vim /etc/locale.gen
locale-gen
https://wiki.debian.org/Locale
#soft #linux