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
@corenting
corenting / ed_notes.md
Last active September 22, 2025 23:59
Elite: Dangerous APIs findings
@FFY00
FFY00 / tracker-list.txt
Last active October 12, 2025 16:49
Torrent Trackers
http://104.28.1.30:8080/announce
http://104.28.16.69/announce
http://107.150.14.110:6969/announce
http://109.121.134.121:1337/announce
http://114.55.113.60:6969/announce
{
"homepage": "https://www.curseforge.com/minecraft/mc-mods/travelers-backpack",
"promos": {
"1.20.4-recommended": "9.4.2",
"1.20.4-latest": "9.4.2",
"1.20.2-recommended": "9.2.4",
"1.20.2-latest": "9.2.4",
"1.20.1-recommended": "9.1.16",
"1.20.1-latest": "9.1.16",
"1.20-recommended": "9.0.2",
@GABRlEL
GABRlEL / steam free packages list by gab.txt
Last active June 15, 2022 07:36
IDs for all free packages on Steam
// LIST BY GAB - https://high-minded.net/members/gab.41181/ - http://steamcommunity.com/profiles/76561198083428831 - t.me/Bruzzzler //
Last updated: 5 Mar 2019
data-subid="13261" data-appid="8650" https://steamdb.info/sub/13261/ || App-ID: 13261 || App-Name: RACE 07: Andy Priaulx Crowne Plaza Raceway
data-subid="13437" data-appid="202485" data-parent="72850" https://steamdb.info/sub/13437/ || App-ID: 13437 || App-Name: Skyrim High Resolution Texture Pack
data-subid="20000" data-appid="81096" https://steamdb.info/sub/20000/ || App-ID: 20000 || App-Name: The Binding of Isaac Trailer
data-subid="20001" data-appid="81097" https://steamdb.info/sub/20001/ || App-ID: 20001 || App-Name: Dead Island Launch Trailer (ESRB)
data-subid="20002" data-appid="81098" https://steamdb.info/sub/20002/ || App-ID: 20002 || App-Name: Astro Tripper Trailer
data-subid="20003" data-appid="81099" https://steamdb.info/sub/20003/ || App-ID: 20003 || App-Name: Dead Island Launch Trailer (PEGI)
@Log1x
Log1x / debloatNox.md
Last active October 29, 2025 17:01
Debloating & Optimizing Nox

Debloating Nox

Nox, despite being the most feature-filled Android emulator, has a lot of negativity surrounding it due to their antics when it comes to making income off of their program. It is known for running repeated advertisments in the background, calling home and passing along system information (outside of your Android instance) as well as a vast amount of potentially sensitive data in an encrypted payload back to their multitude of servers. With the following preventitive measures, we can stop a majority of this happening as well as greatly improve the overall performance.

  1. Download and Install a fresh copy of Nox. The latest version is fine (for now). If you already have it installed, that is fine too. No need to reinstall.

  2. Enable Root Mode on Nox by clicking the gear icon and then checking the Root Startup box.

  3. Install a new Launcher from the Play Store. ANYTHING but Nox's default. I suggest [Nova Launcher](https://play.google.com/s

@roustem
roustem / Setting-up-Windows-WSL1.md
Last active March 22, 2025 17:18
Setting-up-Windows-WSL1
@magician11
magician11 / decoder.js
Created January 12, 2019 19:44
How to edit HTML game files
/*
This will take a .save game file, decode it into its JSON form,
and then save it to game-data.json
*/
const fs = require('fs');
const LZString = require('lz-string');
if (process.argv.length === 3) {
try {
const encodedData = fs.readFileSync(process.argv[2], 'utf8');
@Pliner
Pliner / import
Last active April 6, 2025 21:49
Mikrotik antifilter.download update script
:do {
:do {
/file remove "/ipsum.rsc";
/file remove "/subnet.rsc";
} on-error={}
:put "Downloading ipsum.rsc...";
:do {
/tool fetch url="https://antifilter.download/list/ipsum.rsc" dst-path="/ipsum.rsc"
} on-error={

Installing Cool-Retro-Term on Windows10

First of all, this document is just a recompilation of different resources that already existed on the web previously that I personally tested some ones did work and other not. I liked the idea to make a full guide from start to end so all of you could also enjoy playing with cool-retro-term on windows 10. Personally I installed it on a windows 10 pro version. Fingers crossed!

result

@bvaughn
bvaughn / index.md
Last active September 8, 2025 00:55
How to use profiling in production mode for react-dom

React recently introduced an experimental profiler API. This page gives instructions on how to use this API in a production release of your app.

Table of Contents

Profiling in production

React DOM automatically supports profiling in development mode for v16.5+, but since profiling adds some small additional overhead it is opt-in for production mode. This gist explains how to opt-in.