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
<# | |
.SYNOPSIS | |
Installs and maintains a curated arsenal of PowerShell modules from the PowerShell Gallery and GitHub. | |
.DESCRIPTION | |
This script automates the provisioning of a complete security research and administration environment. | |
It intelligently installs modules from two sources: | |
1. A curated list of modules from the official PowerShell Gallery. | |
2. A specialized list of security tools from trusted GitHub repositories. |
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
# Git Repository Updater - PowerShell Version | |
# Made by: Andreas Nilsen - [email protected] - https://www.github.com/adde88 | |
# Date: 24.07.2025 | |
# Requires PowerShell 5.0 or higher | |
# Set error action preference to stop on errors | |
$ErrorActionPreference = "Stop" | |
# Initialize variables | |
$gitRepositories = @() |
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
# /etc/profile.d/aliases.sh | |
alias netstat='netstat -tulnp' | |
alias ll='ls -alF --color=auto' | |
alias ps='ps aux' | |
alias ip='ip -color=auto' | |
alias du='du -sh' | |
alias dmesg='dmesg -T' | |
alias free='free -h' | |
alias procmtd='cat /proc/mtd' | |
alias procpart='cat /proc/partitions' |
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
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE | |
Version 2, December 2004 | |
Copyright (C) 2004 Sam Hocevar <[email protected]> | |
Copyright (C) 2025 Andreas Nilsen <[email protected]> | |
Everyone is permitted to copy and distribute verbatim or modified | |
copies of this license document, and changing it is allowed as long | |
as the name is changed. |
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
#!/bin/bash | |
# Exit immediately if a command exits with a non-zero status. | |
set -e | |
# --- Configuration --- | |
SWAP_SIZE="2G" | |
MOUNT_POINT="/mnt/usb" | |
SWAP_PRIORITY="10" # Lower priority than ZRAM's 32767 |
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
31jMWLFSqvNBPNhpyaYCc8Dv37bHdL6WM8 |
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
#!/bin/bash | |
# Author: Andreas Nilsen | |
# Email: [email protected] | |
# Github: https://www.github.com/adde88 | |
# License: GPL-3 | |
# Check arguments | |
if [[ $# -ne 2 ]]; then | |
echo "Usage: $0 /path/to/file.{wav,mp3,m4a,ogg} frequency_in_MHz" | |
echo "Example: $0 /home/pi/audio.mp3 100.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
# /etc/modprobe.d/88x2bu-profiles/88x2bu.ap.conf | |
# | |
# This config was written by Andreas Nilsen - @adde88 - https://www.github.com/adde88 | |
# Date: 23. April 2025 | |
# | |
blacklist rtw88_8822bu | |
options 88x2bu \ | |
rtw_drv_log_level=3 # WARNINGS only :contentReference[oaicite:10]{index=10} \ | |
rtw_led_ctrl=1 # LED normal blink :contentReference[oaicite:11]{index=11} \ |
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
bc1qrvepmcapn8lywndcnyr8wxs969vgjhrue24gv0 |
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
# Systemd service file. | |
# Save to: /etc/systemd/system/ | |
# Then: 'sudo systemctl enable corsair-quiet.service' | |
# Delete these four commented lines before saving this file | |
[Unit] | |
Description=Corsair AIO Manager | |
After=multi-user.target | |
[Service] | |
Type=oneshot |
NewerOlder