This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
:layers { | |
; implement caps lock mode | |
:caps_layer {:key :caps_lock :alone {:key :escape}} | |
; make tab a layer if/when it is held | |
:tab_layer {:key :tab :alone {:key :tab}} | |
:backslash_layer {:key :backslash :alone {:key :backslash}} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# add the repository to get ddcutil | |
sudo add-apt-repository ppa:rockowitz/ddcutil | |
# update | |
sudo apt-get update | |
# install ddcutil | |
sudo apt install ddcutil | |
# change brightness of the primary montior to 80 | |
sudo ddcutil setvcp 10 80 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"fmt" | |
"sync" | |
"time" | |
) | |
type QueryResult struct { | |
key string |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"version": 1, | |
"notes": "For QMK Configurator. You can view this by importing it at <https://config.qmk.fm/#/kinesis/kint36/LAYOUT>. It can also be used directly with QMK's source code", | |
"documentation": "QMK keymap for a Kinesis Advantage2 running the Stapelberg kint36 controller. This keymap provides OS keys for i3wm, and a layer with VIM controls. Build info: <https://github.com/kinx-project/kint> \n", | |
"keyboard": "kinesis/kint36", | |
"keymap": "kint36-updated-layer-toggles", | |
"layout": "LAYOUT", | |
"layers": [ | |
[ | |
"KC_ESC", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
system: | |
actions: | |
- action: light_on | |
command: gpio mode 0 out && gpio write 0 0 | |
name: Light ON | |
- action: light_off | |
command: gpio mode 0 out && gpio write 0 1 | |
name: Light OFF | |
- action: divider | |
- action: rpi_usb_on |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"encoding/json" | |
"log" | |
"os" | |
"sync" | |
) | |
type Exclude struct { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"os" | |
"time" | |
) | |
func main() { | |
logFileName := fmt.Sprintf("logs_%v.log", time.Now().String()) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"fmt" | |
"time" | |
"sync" | |
) | |
type QueryResult struct { | |
key string |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"fmt" | |
"time" | |
) | |
type QueryResult struct { | |
key string | |
result string |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo apt update -y; | |
sudo apt upgrade -y; | |
# bonjour, find hostnames by "hostname.local" | |
sudo apt-get install avahi-daemon avahi-discover avahi-utils libnss-mdns mdns-scan; | |