This file contains 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
/* chrome n3 */ | |
a.fw-bold.text-truncate { | |
font-size: 30px | |
} | |
span.min-w-0.text-truncate { | |
font-size: 30px | |
} |
This file contains 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
#!/bin/bash | |
# GitHub SSH Key Updater | |
# --------------------- | |
# SECURITY WARNING: This script grants SSH access to your machine! | |
# Only add keys from GitHub users you absolutely trust with full SSH access to your system. | |
# Each added public key will allow that user to log into your machine via SSH. | |
# | |
# Purpose: | |
# Fetches and merges public SSH keys from a GitHub user into your ~/.ssh/authorized_keys file, |
This file contains 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
@echo off | |
cd %USERPROFILE%\Desktop | |
mkdir "system.{ED7BA470-8E54-465E-825C-99712043E01C}" |
This file contains 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
#!/bin/bash | |
# (c) CompuMatter, LLC, ServerMatter | |
# no warranty expressed or implied - use as is. | |
# See https://www.youtube.com/watch?v=4hjskxkapYo | |
# versioned here: https://gist.github.com/kwmiebach/6565ad1b43f3c781b23fce6ba80f59ea | |
# history of the gist: | |
# 2023-09-28 downloaded from https://cloud.compumatter.biz/s/fxfYM9SkamBtGqG - unchanged | |
# purpose of this script: |
This file contains 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
####################################################################################### | |
# Bash function get_toml_value() to get the value of a key in a section of a TOML file. | |
# Versioned here: https://gist.github.com/kwmiebach/e42dc4a43d5a2a0f2c3fdc41620747ab | |
# Call it like this: | |
# value=$(get_toml_value "./conf/config.toml" "server_b" "domain") | |
# Result should be "my123.example.com" in the case of this example file: | |
# --------------------------- | |
# [server_a] | |
# proto = "https" | |
# domain = "test.example.net" |
This file contains 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
''' | |
Versioned here: | |
https://gist.github.com/kwmiebach/362a41b0fbf0cad6db36a1e037bcfbe6 | |
''' | |
def add_seq(tab,name='seq',position=0): | |
# NO, PETL IS CURRENTLY BROKEN - depending on python version | |
# tab = ETL.addrownumbers(tab, 'seq') | |
import petl as ETL |
This file contains 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
_ _ __ __ | |
| | | | _ \ \ / / | |
| |_| | ___ | | (_) \ \/ / | |
| _ | / _ \ | | _ ) ( | |
| | | | | __/ | | | | / /\ \ | |
|_| |_| \___| |_| |_| /_/ \_\ | |
A post-modern modal text editor. | |
_________________________________________________________________ |
This file contains 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
# First remove *all* keybindings | |
unbind-key -a | |
source ~/.tmux.conf-f-keys | |
source ~/.tmux.conf-colors |
This file contains 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
# -*- coding: utf-8 -*- | |
# To list this file sections: $ grep '^"" ' notes.py | |
""""""""""""" | |
"" Why Python ? | |
""""""""""""" | |
- extremely readable (cf. zen of Python + [this 2013 study](http://redmonk.com/dberkholz/2013/03/25/programming-languages-ranked-by-expressiveness/)) | |
- simple & fast to write | |
- very popular (taught in many universities) | |
- has an extremely active development community |
NewerOlder