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
| Xcursor.theme: ATER | |
| ! UI elements | |
| Emacs.menuBar: 0 | |
| Emacs.toolBar: 0 | |
| Emacs.verticalScrollBars: off | |
| ! Font settings | |
| Emacs.FontBackend: xft,x | |
| Emacs.font: Inconsolata LGC-8.6 |
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
| import contextvars | |
| import time | |
| from concurrent.futures import ThreadPoolExecutor, as_completed | |
| current_user = contextvars.ContextVar("ID of current user") | |
| shared_user = contextvars.ContextVar("ID of shared user") | |
| def say_hello(): | |
| time.sleep(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
| #! /usr/bin/env bash | |
| ############################################################################################## | |
| # _ _ _ _ _ # | |
| # (_) (_) | | | | | | # | |
| # _ __ _ _ __ _ ___ ___ _ __ __ _ | |_ ___ | |__ _ __ __ _ __| | # | |
| #| '_ \ | || '__|| | ______ / __| / __|| '__| / _` || __| / __|| '_ \ | '_ \ / _` | / _` | # | |
| #| | | || || | | ||______|\__ \| (__ | | | (_| || |_ | (__ | | | || |_) || (_| || (_| | # | |
| #|_| |_||_||_| |_| |___/ \___||_| \__,_| \__| \___||_| |_|| .__/ \__,_| \__,_| # | |
| # | | # |
OlderNewer