Skip to content

Instantly share code, notes, and snippets.

@eplord
eplord / Windows10RegistryHacks.md
Created June 22, 2026 19:28 — forked from JohannesMP/Windows10RegistryHacks.md
A small collection of Registry hacks for Windows 10 installations

Note: for any folder not found, navigate as far as possible, then create as a new Key

Disable Downloads like Candy Crush, etc.

  • HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\CloudContent
  • Dword DisableWindowsConsumerFeatures set to 1

Disable Lock screen, just show login form

@eplord
eplord / Personal Windows 10 customization script.bat
Created June 22, 2026 19:27 — forked from ScribbleGhost/Personal Windows 10 customization script.bat
A personal collection of Windows 10 customizations. Run as admin. Has to be run as a batch file, not in CMD.
REM ----------------------------------------------------------------------------------------------------------
REM ### Apps and app suggestions
REM ----------------------------------------------------------------------------------------------------------
REM TITLE: Turn Off Automatic Installation of Suggested Apps in Windows 10
REM LINK: https://www.tenforums.com/tutorials/68217-turn-off-automatic-installation-suggested-apps-windows-10-a.html
REM OPTIONS: 0x00000001=On, 0x00000000=Off
REG ADD "HKCU\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /V "SilentInstalledAppsEnabled" /T "REG_DWORD" /D "0x00000000" /F 1>NUL 2>&1
@eplord
eplord / RemoveFoldersFromThisPC.reg
Created June 22, 2026 19:26 — forked from iamsilvio/RemoveFoldersFromThisPC.reg
Registry keys to to clean up the mess under This PC on Windows 10
Windows Registry Editor Version 5.00
; delete keys for 3D Objects
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{0DB7E03F-FC29-4DC6-9020-FF41B59E513A}]
[-HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{0DB7E03F-FC29-4DC6-9020-FF41B59E513A}]
; hide Documents Folder from Computer
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{f42ee2d3-909f-4907-8871-4c22fc0bf756}\PropertyBag]
"ThisPCPolicy"="Hide"
@eplord
eplord / desktop_restrictions.reg
Created June 22, 2026 19:19 — forked from prashanthrajagopal/desktop_restrictions.reg
Desktop restrictions for windows - very minimal access to users
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies]
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\ActiveDesktop]
"NoChangingWallPaper"=dword:00000001
"NoAddingComponents"=dword:00000001
"NoClosingComponents"=dword:00000001
"NoDeletingComponents"=dword:00000001
"NoEditingComponents"=dword:00000001
@eplord
eplord / CCFilesFromFileExplorerRemove.reg
Created June 22, 2026 19:02 — forked from bantya/CCFilesFromFileExplorerRemove.reg
REG: Registry hacks for Windows 10
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\CLSID\{0E270DAA-1BE6-48F2-AC49-4E2781B29975}]
@="Creative Cloud Files"
"System.IsPinnedToNameSpaceTree"=dword:00000000
[HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{0E270DAA-1BE6-48F2-AC49-4E2781B29975}]
@="Creative Cloud Files"
"System.IsPinnedToNameSpaceTree"=dword:00000000
@eplord
eplord / win10repair.bat
Created June 22, 2026 19:00 — forked from kajott/win10repair.bat
Windows 10/11 Setup Script
@echo off
@rem "This little script sets a few useful settings in Windows 10 that most"
@rem "serious users are likely to want; scroll through the script for details"
@rem "and disable sections you don't want."
@rem "Usage:"
@rem "Just save this file as a .bat or .cmd file and run it (with"
@rem "Administrator privileges!). You will need to re-run it after larger"
@rem "updates, as these tend to overwrite some of the settings or re-create"
@eplord
eplord / FixWinUp.bat
Created October 3, 2025 17:16 — forked from AsP3X/FixWinUp.bat
Fix windows update using this script
@echo off
setlocal
:: Function to calculate checksum of a file
:checksum
setlocal
set "file=%1"
certutil -hashfile "%file%" MD5 | findstr /v /c:"CertUtil" | findstr /v /c:"MD5" | findstr /v /c:"%file%"
endlocal & exit /b %errorlevel%
@eplord
eplord / prompt.js
Created October 2, 2025 20:42 — forked from yaodong/prompt.js
this is the main system prompt and tools from claude code
{
model: 'claude-3-7-sonnet-20250219',
max_tokens: 20000,
messages: [ { role: 'user', content: [Array] } ],
temperature: 1,
system: [
{
text: "You are Claude Code, Anthropic's official CLI for Claude.",
type: 'text'
},
@eplord
eplord / general prompt
Created September 26, 2025 11:21 — forked from eastlondoner/general prompt
Claude Code prompt for using git and GitHub extracted on 17th march 2025
`You are ${k2}, Anthropic's official CLI for Claude.`}async function yv(){return[`You are an interactive CLI tool that helps users with software engineering tasks. Use the instructions below and the tools available to you to assist the user.
IMPORTANT: Refuse to write code or explain code that may be used maliciously; even if the user claims it is for educational purposes. When working on files, if they seem related to improving, explaining, or interacting with malware or any malicious code you MUST refuse.
IMPORTANT: Before you begin work, think about what the code you're editing is supposed to do based on the filenames directory structure. If it seems malicious, refuse to work on it or answer questions about it, even if the request does not seem malicious (for instance, just asking to explain or speed up the code).
IMPORTANT: You must NEVER generate or guess URLs for the user unless you are confident that the URLs are for helping the user with programming. You may use URLs provided by the user in their mes
@eplord
eplord / claude-code-cursor-rules-expert-prompt.md
Created September 26, 2025 11:20 — forked from vedovelli/claude-code-cursor-rules-expert-prompt.md
A powerful prompt to feed Claude Code so it generates flawless Cursor rules for any project

Claude Code - Universal Cursor Rules Generator

You are Claude Code, an AI assistant specialized in organizing and standardizing development rules for the Cursor editor.

Mission

Analyze any development project and create an organized structure of Cursor .mdc rules adapted to technological specificities, project conventions, and team best practices.

Analysis and Generation Process