Skip to content

Instantly share code, notes, and snippets.

@TayouVR
TayouVR / DynamicPenetrationSystem.md
Last active July 28, 2025 04:38
A Guide to the Dynamic Penetration System

Dynamic Penetration Guide (EN) (日本語版)

for Dynamic Penetration System v1_21 (Gumroad)
I noticed some things aren't super clear for the Dynamic Penetration System, there is a lack of documentation to some extent.
This Guide does not describe how to set up penetrators using the provided script, but rather aids people in the manual process. Instructions for the Script may come at a later point.


Channels:

Light Ranges correspond to channels.

Zula Europe curl, https://curl.haxx.se/ Average rating: Unknown; My rating: Unknown 7.64.0 8/6/2021 4.41 GB No X86 SteamHelper.exe uninstall 513650 S:\SteamLibrary\steamapps\common\Zula EU Steam No No SteamHelper.exe uninstall /silent 513650
ZOMBI Average rating: Unknown; My rating: Unknown 8/6/2021 21.17 GB No X86 SteamHelper.exe uninstall 339230 S:\SteamLibrary\steamapps\common\ZOMBI Steam No No SteamHelper.exe uninstall /silent 339230
ZeroTier One ZeroTier, Inc. Average rating: Unknown; My rating: Unknown 1.10.2 11/2/2022 8.48 MB No X86 MsiExec.exe /X{49E28DB8-25E1-4B84-81B8-D6C7C8091A40} https://www.zerotier.com/ C:\ProgramData\chocolatey\lib\zerotier-one\tools C:\Program Files (x86)\ZeroTier\One Windows Installer Yes No {49E28DB8-25E1-4B84-81B8-D6C7C8091A40} {49E28DB8-25E1-4B84-81B8-D6C7C8091A40} MsiExec.exe /qb /X{49e28db8-25e1-4b84-81b8-d6c7c8091a40} REBOOT=ReallySuppress /norestart
ZeroTier One ZeroTier, Inc. Average rating: Good; My rating: Unknown 1.10.2 11/2/2022 8.52 MB No X86 msiexec.ex
@5kr1p7
5kr1p7 / open_tracker_list.txt
Last active March 26, 2026 15:24
Open BitTorrent trackers
http://0123456789nonexistent.com:80/announce
http://0d.kebhana.mx:443/announce
http://1337.abcvg.info:80/announce
http://aboutbeautifulgallopinghorsesinthegreenpasture.online:80/announce
http://bittorrent-tracker.e-n-c-r-y-p-t.net:1337/announce
http://bt1.xxxxbt.cc:6969/announce
http://bt.poletracker.org:2710/announce
http://bt.rer.lol:2710/announce
http://buny.uk:6969/announce
http://bvarf.tracker.sh:2086/announce
@BenKato151
BenKato151 / VTube Studio [Arch Linux Guide].md
Last active May 6, 2026 14:22
A Guide to get VTube Studio and VSeeFace working on Linux. Tested on Arch Linux

VTube Studio/OpenSeeFace/VSeeFace Guide (tested on Arch Linux)

Requirements:

  • Latest Proton (GE-Proton, Proton-Experimental are both okay)
  • git
  • wine64
  • lutris (winetricks)
  • Install system packages for python (3.11.3 is okay):
@tatumroaquin
tatumroaquin / archlinux-qemu-kvm.md
Last active August 12, 2026 13:34
QEMU-KVM Installation for Arch Linux

QEMU-KVM in Arch Linux

Check Virtualization Support

lscpu | grep -i Virtualization
  • VT-x for Intel
  • AMD-Vi for AMD

Ensure that your kernel includes KVM modules

yt-dlp termux full installation guide.md

Prepare

  1. Install Termux from Github: https://github.com/termux/termux-app/releases
  2. Download the apk and install it -> Note that installing termux from Play Store is highly discouraged.

In Termux:

pkg update
@wrmack
wrmack / Win11.md
Last active May 13, 2026 02:53
Windows 11 on MacBook M1

Windows 11 on MacBook M1 (ARM)

Steps I went through to install a Windows Insider Preview VHDX on a Macbook Pro using UTM. I needed Windows because I was developing an app to submit to the Microsoft Store. With the following setup I was able to develop an electron-based app and submit it to the Microsoft Store.

  1. Download the VHDX from Windows Insider Previews. You need to register for the Insider Program and sign in.
    • under Select edition select the Canary channel and press Confirm
    • select language and confirm
    • press Download
  2. Open UTM and press + to create a new virtual machine
    • Virtualize
  • Windows
@ammuench
ammuench / 8BitDoUltimateWifi_Linux.MD
Last active July 25, 2026 07:58
8BitDo Ultimate 2.4GHz wifi working in linux
@safijari
safijari / convert_valve_video.py
Created June 27, 2024 04:46
Sketch ass script to convert the m4s files being saved by the new Steam Game Recording feature into an mp4 file. It also allows "clipping" the last 30 seconds of the most recent active background recording.
import os
import subprocess
from random import sample
from uuid import uuid4
from pathlib import Path
def create_filelist(folder, init_file, file_pattern):
files = sorted([f for f in os.listdir(folder) if f.startswith(file_pattern) and f.endswith('.m4s')])
return [f"{os.path.join(folder, init_file)}"] + [f"{os.path.join(folder, file)}" for file in files]