https://www.dafontfree.net/freefonts-script12-bt-f141942.htm
https://github.com/be5invis/vscode-custom-css
sudo nano ~/.vscode/vs-code-styles.css
#!/usr/bin/env bash | |
function clear-cache { | |
versions=() | |
while read -r line; do | |
clean="$(echo ${line} | sed "s,$(printf '\033')\\[[0-9;]*[a-zA-Z],,g")" | |
valid=$(echo "${clean}" | grep '^[^a-zA-Z]' | grep -v 'system' | sed 's/->//' | sed 's/\s.*v//') | |
if [[ ! -z $valid ]]; then | |
versions+=(${valid}) |
; This is a simple and pretty generic example of an AutoHotkey script to run a | |
; program when you press a keyboard shortcut. Add as many of these as you want | |
; to a .ahk file, and set that to be run at startup. | |
; See the Hotkeys reference [1] for details of the modifiers and keys available. | |
; [1]: http://www.autohotkey.com/docs/Hotkeys.htm | |
; Win+Alt+G - Open Gmail in Chrome |
https://www.dafontfree.net/freefonts-script12-bt-f141942.htm
https://github.com/be5invis/vscode-custom-css
sudo nano ~/.vscode/vs-code-styles.css
This guide assumes that your django application already running in the container.
You will have to make sure that django-extensions
and jupyter
packages are installed in the container's python virtual environment.
If you need to shell into the container as root
user to do this, you can do so from the host PC:
__all__ = [ | |
'SlackBot', | |
'RecBot', | |
] | |
import os | |
import time | |
import re | |
import subprocess | |
from functools import wraps |
Kinesis Freestyle (Terrible key switches. Mushy and un-lovable)
Kinesis Freestyle Edge (Traditional layout with too many keys, mech switches, proably too big to be tented easily/properly)
Matias Ergo Pro (Looks pretty great. Have not tried.)
ErgoDox Kit (Currently, my everyday keyboard. Can buy pre-assembled on eBay.)
ErgoDox EZ (Prolly the best option for most people.)
ℹ️ There is a newer alternative project that does similar things and more, check it out at https://github.com/stevenilsen123/mac-keyboard-behavior-in-windows
Make Windows PC's shortcut act like macOS (Mac OS X) (using AutoHotkey (ahk) script)
With this AutoHotKey script, you can use most macOS style shortcuts (eg, cmd+c, cmd+v, ...) on Windows with a standard PC keyboard.
#!/usr/bin/env python | |
import os | |
import pprint | |
import subprocess | |
import sys | |
from optparse import make_option | |
from urllib import quote_plus | |
from urlparse import urljoin | |
import dateutil.parser |