Skip to content

Instantly share code, notes, and snippets.

View aeongdesu's full-sized avatar
๐Ÿ”

aeongdesu

๐Ÿ”
View GitHub Profile
:: 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
@aeongdesu
aeongdesu / osu-alsr.reg
Created November 8, 2023 03:08
If osu requires ASLR but you don't want to enable Windows Defender, you can use this registry file to fix the issue. (from ReviOS discord, not mine!)
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"=""
@aeongdesu
aeongdesu / script.js
Created September 21, 2023 03:07
prevent colab inactive session (from ai hub)
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
@aeongdesu
aeongdesu / awesome-osu.md
Last active December 30, 2024 16:26
awesome osu projects
@aeongdesu
aeongdesu / toonation-alertbox-twip-skin.md
Last active November 5, 2024 12:57
ํˆฌ๋„ค์ด์…˜ ์•Œ๋ฆผ์ฐฝ ํŠธ์œ• ์Šคํ‚จ(?)


์ƒ๋‹จ - ํˆฌ๋„ค์ด์…˜ | ํ•˜๋‹จ - ํŠธ์œ•

ํˆฌ๋„ค ์•Œ๋ฆผ์ฐฝ ํŠธ์œ• ์Šคํ‚จ(?)

ํ•˜์‹œ๊ธฐ ์ „

  • ํฐํŠธ ์ œ์ฃผ ๊ณ ๋”•
  • ์‹œ์Šคํ…œ ํ…์ŠคํŠธ ํฌ๊ธฐ: 45px
  • ํ›„์› ๋‚ด์šฉ ํ…์ŠคํŠธ ํฌ๊ธฐ 24px
  • ์‚ฌ์ด์ฆˆ 1920x150
@aeongdesu
aeongdesu / giscus.css
Last active May 23, 2021 03:49
Remove giscus white box
.giscus, .giscus-frame {
width: 100%;
border: none;
}
@aeongdesu
aeongdesu / .md
Created April 14, 2021 01:22
๋„ค์ด๋ฒ„ ์นดํŽ˜ ๋Œ“๊ธ€ ์ž๋™์‚ญ์ œ ์Šคํฌ๋ฆฝํŠธ ์•„์นด์ด๋ธŒ

์ถœ์ฒ˜ : https://blog.naver.com/ybshin5657/222029658106

ํ˜น์‹œ ๋ชฐ๋ผ ์•„์นด์ด๋ธŒ ํ•ด๋‘ก๋‹ˆ๋‹ค

๋Œ“๊ธ€ ์‚ญ์ œ

function deleteComment2() 
{
	const x = document.getElementById('cafe_main').contentWindow.document.getElementById('innerNetwork').contentWindow
	var arr = [];
@aeongdesu
aeongdesu / - README.md
Created April 10, 2021 13:15
Archive coin mining github actions file
git fetch --all
git reset --hard origin/main
git pull origin main
@aeongdesu
aeongdesu / git_clear_history
Last active November 15, 2020 09:12
Delete your history from repo
# 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 ""