Skip to content

Instantly share code, notes, and snippets.

View NaysKutzu's full-sized avatar

NaysKutzu NaysKutzu

View GitHub Profile
@NaysKutzu
NaysKutzu / install-guna-cleaner.ps1
Created June 20, 2025 09:01
GunaUI Trial Reset Script!
# === SETUP VARIABLES ===
$cleanupScriptPath = "$env:ProgramData\guna-cleanup.ps1"
$taskName = "Guna Cleanup Task"
$taskTime = "10:00AM"
# === WRITE CLEANUP SCRIPT TO DISK ===
$cleanupCode = @'
# Guna cleanup script
$regPath = "HKCU:\Software\Guna"
@NaysKutzu
NaysKutzu / MinecraftMP.php
Last active September 24, 2025 10:48
Minecraft-MP API Wrapper in php
<?php
/*
* This file is part of McCloudAdmin.
* Please view the LICENSE file that was distributed with this source code.
*
* 2021-2025 (c) All rights reserved
*
* MIT License
*
@NaysKutzu
NaysKutzu / login.html
Created July 31, 2023 17:40
Code server login template
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no" />
<title>MythicalSystems | Code-Server</title>
<link rel="icon" href="https://avatars.githubusercontent.com/u/117385445" />
@NaysKutzu
NaysKutzu / code-server.conf
Created July 31, 2023 15:21
CodeServer Apache2 WebServer Config
<VirtualHost *:80>
ServerName <domain>
RewriteEngine On
RewriteCond %{HTTPS} !=on
RewriteRule ^/?(.*) https://%{SERVER_NAME}/$1 [R,L]
</VirtualHost>
<VirtualHost *:443>
ServerName <domain>