Skip to content

Instantly share code, notes, and snippets.

View TuckerWarlock's full-sized avatar

Tucker Warlock TuckerWarlock

  • Warlock Industries
  • Colorado
  • 01:54 (UTC -06:00)
View GitHub Profile
@TuckerWarlock
TuckerWarlock / qbit_proton_port.ps1
Last active October 16, 2025 04:22
Powershell script to pull the current port forwarded by Proton VPN and set in Qbittorrent client.
########################################################################################################################
# Script to Synchronize qBittorrent Listening Port with ProtonVPN assigned port on Windows.
# FIXED VERSION for Win11 - Now reads from WAL file to get current notifications
# Original script here: https://gist.github.com/thejorro/a63dfa17e6e25a85d7a2f9ddd8c6a652
# Usage:
# 1. Ensure qBittorrent's Web UI is enabled and note the username and password.
# 2. Encrypt and store your qBittorrent password:
# - Convert your password to a secure string with these commands:
# $securePassword = ConvertTo-SecureString "YourPassword" -AsPlainText -Force
@TuckerWarlock
TuckerWarlock / valheim_plus.cfg
Created May 19, 2024 00:21
Valheim Plus server configuration
[ValheimPlus]
; Change false to true to enable this section. https://valheim.plus/documentation/list#ValheimPlus
enabled = true
; Display the Valheim Plus logo in the main menu
mainMenuLogo = true
; Display the advertisement of our server hosting partner on the server browser menu
serverBrowserAdvertisement = false
@TuckerWarlock
TuckerWarlock / Calculator.java
Last active September 20, 2020 20:17
// Calculator.java - This program performs arithmetic, ( +. -, *. /, % ) on two numbers
// Calculator.java - This program performs arithmetic, ( +. -, *. /, % ) on two numbers
// Input: Interactive.
// Output: Result of arithmetic operation
import java.util.Scanner;
public class Calculator
{
public static void main(String[] args)
{
//Tucker Parker-Warwick
//CSC 240 Java Programming
//8.5.2020
import javafx.application.Application;
import javafx.event.EventHandler;
import javafx.event.ActionEvent;
import javafx.geometry.Insets;
import javafx.geometry.Pos;
import javafx.scene.Scene;