Skip to content

Instantly share code, notes, and snippets.

@microy
microy / firmware-selector.openwrt.org
Last active October 1, 2025 10:26
OpenWRT Custom Package Selection

https://firmware-selector.openwrt.org

Customize installed packages and/or first boot script :

  • Installed Packages

-dnsmasq -odhcpd-ipv6only -wpad-basic-mbedtls

dnsmasq-full wpad-openssl nano-full ip-full iperf3 tcpdump dnstop htop ss iptraf-ng diffutils ethtool-full openssh-sftp-server curl

@microy
microy / TalentBuilds.txt
Last active December 5, 2024 12:47
Heroes of the Storm Builds
# C:\Users\YOUR NAME\Documents\Heroes of the Storm\Accounts\212313(random numbers)/TalentBuilds.txt
Kaelthas=Build1|01040102010208|""|""|86D5ADE0AD03FB
Varian=Build2|04020202010402|02010401020408|04040202010204|AA275A0AF3C560
Malfurion=Build1|04010101010401|""|""|7781E303AB0A91
Amazon=Build2|04040202040404|01010102040204|01040101010201|9060F0E64787D1
Lucio=Build1|01010401010204|""|""|F6500D17E7C2ED
Probius=Build3|02000000000200|04040402040000|01040102040102|66B18B01F8404F
Butcher=Build1|""|""|""|DF98C6D64368F0
Rexxar=Build1|01020102010102|""|""|BA923C83C84BDF
Auriel=Build1|02040102040108|""|""|A04BEEE3A385CF
@microy
microy / my_alpine_profile.sh
Last active June 9, 2023 13:50
Alpine Linux Configuration
# Alpine Linux ash profile
# /etc/profile.d/my_alpine_profile.sh
#
# Color prompt
#
# Highlight the user name when logged in as root.
if [ "${USER}" = "root" ];
then user_style="\[\e[1;31m\]";
@microy
microy / partitions.sh
Last active October 2, 2021 01:15
Partitions
echo "Partitionnement..."
parted --script --align optimal /dev/nvme0n1 \
mklabel gpt \
mkpart "EFI" fat32 0% 500MiB \
set 1 esp on \
mkpart "Swap" linux-swap 500MiB 40GiB \
set 2 swap on \
mkpart "Linux" ext4 40GiB 140GiB \
mkpart "VirtualBox" ext4 140GiB 100%
@microy
microy / settings.json
Last active September 30, 2021 12:07
Visual Studio Code Settings
# ~/.config/Code/User/settings.json
{
"editor.detectIndentation": false,
"editor.insertSpaces": false,
"editor.minimap.enabled": false,
"editor.renderControlCharacters": true,
"editor.renderWhitespace": "boundary",
"extensions.autoCheckUpdates": false,
"extensions.autoUpdate": false,
"extensions.ignoreRecommendations": true,
@microy
microy / virtualbox_cleanup.sh
Last active September 30, 2021 10:36 — forked from gsaslis/virtualbox_cleanup.sh
Bash script to cleanup Virtualbox VMs
#!/usr/bin/env bash
#
# Delete all the VMs in VirtualBox
#
for VM in $(VBoxManage list vms)
do
VM_ID=$(echo "${VM}" | awk '{print substr($2, 2, length($2) - 2)}')
VM_NAME=$(echo "${VM}" | awk '{print substr($1, 2, length($1) - 2)}')
echo "Deleting VM ${VM_NAME}..."
@microy
microy / Minicom
Last active December 5, 2024 12:51
Minicom default configuration
#
# /etc/minirc.dfl (Arch)
# /etc/minicom/minirc.dfl (Mint)
#
pu port /dev/ttyS0
#pu port /dev/ttyUSB0
pu baudrate 9600
pu bits 8
pu parity N