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 python3 | |
# | |
# Nokia/Alcatel-Lucent router backup configuration tool | |
# G2425 support added by rajkosto on 20/11/2022 | |
# XS-2426G-B support added by rajkosto on 28/02/2023 | |
# | |
# Features: | |
# - Unpack/repack .cfg files generated from the backup and restore functionnality |
This guide allows a safe and rootless installation of Podman on WSL2. Head over the hyperlinks to discover more about these two wonderful technologies!
This guide assumes that Debian 11 "bullseye" is installed as WSL2 base OS. To do it, simply open your Windows Powershell console under Admin rights and run
PS> wsl install -d Debian
After installation, please check that you are under the latest Debian. If not, please upgrade it.
Lecture 1: Introduction to Research — [📝Lecture Notebooks] [
Lecture 2: Introduction to Python — [📝Lecture Notebooks] [
Lecture 3: Introduction to NumPy — [📝Lecture Notebooks] [
Lecture 4: Introduction to pandas — [📝Lecture Notebooks] [
Lecture 5: Plotting Data — [📝Lecture Notebooks] [[
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
# This may be runnable as a script, but keep in mind -y is not always acknowledged. | |
# These are the drop dead basics | |
pkg -y install vim | |
pkg -y install git | |
pkg -y install chromium | |
pkg -y install gimp | |
pkg -y install sudo | |
# Install Rust |
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
% we use etoc concept of depthtags | |
% here, it could be simplified but I added some complete | |
% mark-up in case the location of the TOCs are moved. | |
% of course, this can be extended easily to >2 TOCs | |
% with complex rules of listing or not one another | |
% jfbu Mardi 29 octobre 2019 à 21:38:25 | |
\documentclass{memoir} | |
\pagestyle{plain} |
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
no-resolv | |
proxy-dnssec | |
server=::1#5353 | |
server=127.0.0.1#5353 | |
listen-address=::1,127.0.0.1 | |
# Put any other line here like laravel valet using .test domain. | |
address=/.test/127.0.0.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
cat > pppoe-server-options <<EOF | |
require-pap | |
login | |
lcp-echo-interval 10 | |
lcp-echo-failure 20 | |
ms-dns 8.8.8.8 | |
EOF | |
sudo pppoe-server -F -I eth0 -L 192.168.251.1 -R 192.168.251.100 -N 20 -O pppoe-server-options | |
# capture with wireshark / tcpdump here |