Skip to content

Instantly share code, notes, and snippets.

View Gesugao-san's full-sized avatar
💭
⌈Wired Sound for Wired People⌋

Gesugao-san

💭
⌈Wired Sound for Wired People⌋
View GitHub Profile
@blluv
blluv / decrypt.py
Last active November 4, 2023 06:39
HighFleet seria_enc decrypt
f = open("./english.seria_enc", "rb")
data = list(f.read())
a = 0
b = 2531011
while a < len(data):
data[a] = (b ^ (b >> 15) ^ data[a]) & 0xff
b += 214013
@Gesugao-san
Gesugao-san / exclude_fl_from_firewall.bat
Created October 26, 2021 07:02
For "FL Studio Producer Edition 20.8.3.2304 Signature Bundle [En]"
@REM From: https://stackoverflow.com/a/10665562
@REM Path: "C:\Windows\System32\drivers\etc\hosts"
@ECHO OFF
ECHO MAKE SURE YOU ARE RUNNING THIS UNDER ADMIN PRIVILEGES!
SET NEWLINE=^& echo.
SET HOSTS="%WINDIR%\System32\drivers\etc\hosts"
FIND /C /I "support.image-line.com" %HOSTS%
IF %ERRORLEVEL% NEQ 0 ECHO %NEWLINE%^127.0.0.1 support.image-line.com>>%HOSTS%
@Gesugao-san
Gesugao-san / README.md
Last active June 21, 2024 10:20
Open in WBM (v2.0, bookmarklet)

Requirements

  • Google Chrome with latest version (mine is: 94).

Maybe:

  • Microsoft Windows 10 (mine is: 20H2);
@Gesugao-san
Gesugao-san / wbm_v1_bookmarklet.js
Last active June 21, 2024 10:20
Open in WBM (v1.0, primitive bookmarklet)
javascript:(() => {
return console.log("Moved to https://github.com/Gesugao-san/archive-wbm-save-addons");
})();
@Awoocado
Awoocado / Routes.md
Last active May 6, 2025 02:00
Discord protocol routes

Home

User profile: discord://-/users/:userID example: discord://-/users/224619540263337984

Friends list: discord://-/channels/@me

Stage Discovery: discord://-/discovery/

Games Library: discord://-/library/

Store: ( redirects to nitro tab )

@GodderE2D
GodderE2D / discord_official_domains.md
Created September 7, 2021 09:48
List of Discord Official Web Domains

Discord Official Web Domains

Listed below are the web domains that Discord currently own. If you see a link sending you to a domain that claims is a "Discord owned website", check if it is one of the below domain names! If it's not, assume it's a scam and report it.

Note: This is not an exhaustive list, there may be some missing domains that Discord owns, but there are no domains listed here that aren't owned by Discord.

@Gesugao-san
Gesugao-san / list_remotes.cmd
Last active August 18, 2021 08:29
This script will loop through subdirs in current dir and log it's git remotes to log file.
@ECHO OFF
CLS
ECHO ******************
ECHO Moved to: https://github.com/Gesugao-san/list_remotes
ECHO ******************
PAUSE
EXIT /B %ERRORLEVEL%
@M0r13n
M0r13n / doh
Last active June 18, 2025 16:37
Setup Cloudflare as a DoH (DNS over HTTPS) resolver on Mikrotik devices (RouterOS v7.0.2+)
# Temporarily add a normal upstream DNS resolver
/ip dns set servers=1.1.1.1,1.0.0.1
# CA certificates extracted from Mozilla
/tool fetch url=https://curl.se/ca/cacert.pem
# Import the downloaded ca-store (127 certificates)
/certificate import file-name=cacert.pem passphrase=""
# Set the DoH resolver to cloudflare
@d3noob
d3noob / .block
Last active October 16, 2024 02:22
Simple vertical tree diagram using v7
license: mit