Skip to content

Instantly share code, notes, and snippets.

View FasterMars's full-sized avatar
🏠
Working from home

FasterMars FasterMars

🏠
Working from home
View GitHub Profile
@FasterMars
FasterMars / manifest.json
Created July 27, 2022 16:15
Minecraft Bedrock pack manifest.json template (1.18.10 or above)
{
"format_version": 2,
"header": {
"description": "Minecraft pack manifest template",
"name": "Example Resource Pack",
"uuid": "6e435573-7b86-4c34-9be2-ddb6fa1ea5d1",
"version": [1, 0, 0],
"min_engine_version": [ 1, 18, 10 ]
},
"modules": [
@FasterMars
FasterMars / BoilerPlate.html
Created July 27, 2022 16:06
Basic HTML Boilerplate
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>HTML 5 Boilerplate</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
@FasterMars
FasterMars / UltimatePerformance.bat
Created July 27, 2022 16:03
Command for enabling Ultimate performance power plan, works on Windows 10 or above
powercfg -duplicatescheme e9a42b02-d5df-448d-aa00-03f14749eb61
@FasterMars
FasterMars / RemoveTakeOwnerShip.reg
Created July 27, 2022 16:01
Script for removing take ownership from context menu
Windows Registry Editor Version 5.00
[-HKEY_CLASSES_ROOT\*\shell\runas]
[-HKEY_CLASSES_ROOT\Directory\shell\runas]
@FasterMars
FasterMars / TakeOwnership.reg
Created July 27, 2022 15:59
Script for adding take ownership to context menu for taking rights to Other user's files or system files
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\*\shell\runas]
@="Take Ownership"
"NoWorkingDirectory"=""
[HKEY_CLASSES_ROOT\*\shell\runas\command]
@="cmd.exe /c takeown /f \"%1\" && icacls \"%1\" /grant administrators:F"
"IsolatedCommand"="cmd.exe /c takeown /f \"%1\" && icacls \"%1\" /grant administrators:F"