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
(setq frame-resize-pixelwise t) | |
(setq frame-inhibit-implied-resize t) | |
(setq package-enable-at-startup t) | |
(defvar package-quickstart) | |
(setq package-quickstart t) | |
(menu-bar-mode -1) | |
(tool-bar-mode -1) | |
(blink-cursor-mode -1) |
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
(cons* | |
(channel | |
(name 'rde) | |
(url "https://git.sr.ht/~abcdw/rde") | |
(introduction | |
(make-channel-introduction | |
"257cebd587b66e4d865b3537a9a88cccd7107c95" | |
(openpgp-fingerprint | |
"2841 9AC6 5038 7440 C7E9 2FFA 2208 D209 58C1 DEB0")))) | |
(channel |
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
(use-modules | |
(nongnu packages linux) | |
(nongnu system linux-initrd) | |
) | |
(operating-system | |
(locale "en_US.utf8") | |
(timezone "Europe/London") | |
(keyboard-layout (keyboard-layout "us")) |
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
hekki |
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
Xft.dpi: 150 | |
Xft.antialias: true | |
Xft.hinting: true | |
Xft.rgba: rgb | |
Xft.hintstyle: hintslight | |
rofi.color-enabled: true | |
rofi.font: Hack Bold 16 | |
rofi.modi: window,run,ssh | |
rofi.opacity: 90 |
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
""" | |
client.py - AsyncIO Server using StreamReader and StreamWriter | |
This will create 200 client connections to a server running server.py | |
It will handshake and run similar to this: | |
Server: HELLO | |
Client: WORLD |