- Configure git.
# ~/.config/git/config
[sendemail]
confirm = auto
smtpServer = smtp.gmail.com
smtpServerPort = 587
smtpEncryption = tls
smtpUser = <gmail email address>
#!/usr/bin/env python3 | |
# Installl Dependencies: | |
# sudo apt install -y python3-pandas python3-ipython python3-unidecode | |
infile = "Lehrlingsdatenbank.xlsx" | |
from datetime import datetime | |
from IPython.display import display |
version: '3.6' | |
volumes: | |
certs-repo: | |
driver: s3fs | |
name: "certs" | |
services: | |
nginx: | |
image: registry.mydomain.com/letsencrypt:1.19.3 |
import os | |
import sys | |
from xml.sax import parse | |
from xml.sax.saxutils import XMLGenerator | |
class CycleFile(object): | |
def __init__(self, filename): | |
self.basename, self.ext = os.path.splitext(filename) | |
self.index = 0 |
# ~/.config/git/config
[sendemail]
confirm = auto
smtpServer = smtp.gmail.com
smtpServerPort = 587
smtpEncryption = tls
smtpUser = <gmail email address>
WSL2 uses Hyper-V for networking. The WSL2 network settings are ephemeral and configured on demand when any WSL2 instance is first started in a Windows session. The configuration is reset on each Windows restart and the IP addresses change each time. The Windows host creates a hidden switch named "WSL" and a network adapter named "WSL" (appears as "vEthernet (WSL)" in the "Network Connections" panel). The Ubuntu instance creates a corresponding network interface named "eth0".
Assigning static IP addresses to the network interfaces on the Windows host or the WSL2 Ubuntu instance enables support for the following scenarios:
Disable vim automatic visual mode on mouse select | |
issue: :set mouse-=a | |
add to ~/.vimrc: set mouse-=a | |
my ~/.vimrc for preserving global defaults and only changing one option: | |
source $VIMRUNTIME/defaults.vim | |
set mouse-=a |
https://www.cyberciti.biz/faq/dhclient-etcresolvconf-hooks/ | |
chattr +i /etc/resolv.conf | |
/etc/dhcp/dhclient-enter-hooks.d/nodnsupdate | |
make_resolv_conf(){ | |
: | |
} | |
chmod +x /etc/dhcp/dhclient-enter-hooks.d/nodnsupdate |
https://thegeekpage.com/fix-nslookup-works-but-ping-fails-in-windows-10/ | |
netsh winsock reset catalog | |
netsh int ip reset reset.log | |
ipconfig /flushdns | |
ipconfig /registerdns | |
route /f |