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
######################################################################################################################## | |
# 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 |
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
[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 |
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
// 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) | |
{ |
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
//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; |