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
| # Enable Full (Complete) BSOD Memory Dump on Windows | |
| # --- Self-elevate if not running as Administrator --- | |
| if (-not ([Security.Principal.WindowsPrincipal] [Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole( | |
| [Security.Principal.WindowsBuiltInRole]::Administrator)) { | |
| Start-Process -FilePath "powershell.exe" -ArgumentList "-ExecutionPolicy Bypass -File `"$PSCommandPath`"" -Verb RunAs | |
| exit | |
| } | |
| $CrashControlPath = "HKLM:\SYSTEM\CurrentControlSet\Control\CrashControl" |
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
| // ==UserScript== | |
| // @name linux.do no watermark | |
| // @namespace http://tampermonkey.net/ | |
| // @version 1.0 | |
| // @description 强制开启 ShadowRoot 并拦截/隐藏特定水印元素 | |
| // @author NtKrnl64 | |
| // @match *://linux.do/* | |
| // @run-at document-start | |
| // @grant none | |
| // ==/UserScript== |
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
| package org.krnl.mineBedrock; | |
| import org.bukkit.Material; | |
| import org.bukkit.World; | |
| import org.bukkit.block.Block; | |
| import org.bukkit.event.Listener; | |
| import org.bukkit.event.EventHandler; | |
| import org.bukkit.event.player.PlayerInteractEvent; | |
| import org.bukkit.event.block.Action; | |
| import org.bukkit.plugin.java.JavaPlugin; |
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
| // ==UserScript== | |
| // @name GitHub Switch Account Button | |
| // @icon https://github.com/favicon.ico | |
| // @version 1.0 | |
| // @description Adds a sticky 'Switch Account' button to the bottom right of GitHub pages. | |
| // @author NtKrnl32 / NtKrnl64 | |
| // @match https://github.com/* | |
| // @exclude https://github.com/switch_account* | |
| // @grant none | |
| // @run-at document-idle |
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
| package org.krnl.meowmeow.client; | |
| import net.fabricmc.api.ClientModInitializer; | |
| import net.fabricmc.fabric.api.client.message.v1.ClientSendMessageEvents; | |
| public class MeowmeowClient implements ClientModInitializer { | |
| @Override | |
| public void onInitializeClient() { | |
| ClientSendMessageEvents.MODIFY_CHAT.register(message -> { |