contact me on my discord server will be updated soon!
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
:: 256 Realtime | |
:: 128 High | |
:: 32768 Above normal | |
:: 32 Normal | |
:: 16384 Below normal | |
:: 64 Low | |
@echo off | |
wmic process where name="Discord.exe" CALL setpriority 32 | |
set "WMIC_CMD=wmic process where name^="Discord.exe" get /format:list ^| findstr Priority" | |
for /f "tokens=1* delims==" %%A in ('%WMIC_CMD%') do set PRIORITY=%%B |
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
Windows Registry Editor Version 5.00 | |
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\osu!.exe] | |
"MitigationOptions"=hex:00,00,21,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\ | |
00,00,00,00,00,00 | |
"MitigationAuditOptions"=hex:00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\ | |
00,00,00,00,00,00,00,00 | |
"EAFModules"="" |
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
function ClickConnect() { | |
console.log("Working") | |
document.querySelector("#top-toolbar > colab-connect-button").shadowRoot.querySelector("#connect").click() | |
} | |
setInterval(ClickConnect, 60000) | |
// Run this function to prevent the robot prompt when it appears | |
function preventRobotPrompt() { | |
// Disable the robot prompt function |
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
.giscus, .giscus-frame { | |
width: 100%; | |
border: none; | |
} |
์ถ์ฒ : https://blog.naver.com/ybshin5657/222029658106
ํน์ ๋ชฐ๋ผ ์์นด์ด๋ธ ํด๋ก๋๋ค
function deleteComment2()
{
const x = document.getElementById('cafe_main').contentWindow.document.getElementById('innerNetwork').contentWindow
var arr = [];
Actions list https://archive.is/wrVmY
Actions log https://archive.is/LuooF
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
git fetch --all | |
git reset --hard origin/main | |
git pull origin main |
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
# Remove the history from .git | |
rm -rf .git | |
# recreate the repos from the current content only | |
git init | |
git add . | |
# tmi) git commit --allow-empty-message --message "" |