diff --git a/categories/index.html b/categories/index.html index a03d6d4..755bb5e 100644 --- a/categories/index.html +++ b/categories/index.html @@ -109,7 +109,7 @@ -
Logitech MB850 combi in linux
+
Kanata: advanced keyboard configuration
linux @@ -117,12 +117,14 @@ keyboard -mouse +layout + +rust -
Logitech MX Keys for Mac on Linux
+
Logitech MB850 combi in linux
linux @@ -130,27 +132,29 @@ keyboard +mouse + -
Linux on the Microsoft Surface Go
+
Logitech MX Keys for Mac on Linux
linux -surface go +logitech -config +keyboard -
Controlling Zigbee devices with MQTT
+
Linux on the Microsoft Surface Go
-mqtt +linux -iot +surface go -zigbee +config diff --git a/cheatsheet/index.html b/cheatsheet/index.html index 8d535cd..06110e1 100644 --- a/cheatsheet/index.html +++ b/cheatsheet/index.html @@ -176,7 +176,7 @@ -
Logitech MB850 combi in linux
+
Kanata: advanced keyboard configuration
linux @@ -184,12 +184,14 @@ keyboard -mouse +layout + +rust -
Logitech MX Keys for Mac on Linux
+
Logitech MB850 combi in linux
linux @@ -197,27 +199,29 @@ keyboard +mouse + -
Linux on the Microsoft Surface Go
+
Logitech MX Keys for Mac on Linux
linux -surface go +logitech -config +keyboard -
Controlling Zigbee devices with MQTT
+
Linux on the Microsoft Surface Go
-mqtt +linux -iot +surface go -zigbee +config diff --git a/index.html b/index.html index 3a12b10..27855f5 100644 --- a/index.html +++ b/index.html @@ -56,6 +56,30 @@ +
+
+ 2023/01/20 +

Kanata: advanced keyboard configuration

+ +linux + +logitech + +keyboard + +layout + +rust + + +
+ + Kanata is a software keyboard remapper that aims to improve keyboard comfort and usability with advanced customization. Keyboard remappers are a good alternative to running a custom keyboard with QMK/ZMK, and have two main advantages: they work on any keyboard, and you can configure them to launch any command or program you want, not just key presses. +
Read more...
+ +
+ +
2021/10/30 @@ -143,40 +167,6 @@ If you’re anything like me, you’re probably a sucker for IoT devices. For a
-
-
- 2016/09/28 -

Progress bars in python

- -python - - -
- -

tqdm is a nice way to add progress -bars in the command line or in a jupyter notebook.

-

image

-
- -
-
1
-2
-3
-4
-5
-
-
from tqdm import tqdm
-import time
-
-for i in tqdm(range(100)):
-    time.sleep(1)
-
-
-
- -
- -