Skip to content

Instantly share code, notes, and snippets.

@dungxtd
dungxtd / charles key
Created August 19, 2024 03:29
[charles proxy key] an activation key #key #activation
// Charles Proxy License
// Registration code for any version of Charles, who would want to use a cracked version?
// Charles 4.5.5 is currently the latest version and is available.
Registered Name: https://zhile.io
License Key: 48891cf209c6d32bf4
Author: Neo Peng
@825i
825i / debloatLDPlayer.md
Last active December 1, 2025 13:58 — forked from TameemS/debloatLDPlayer.md
Debloating LDPlayer

Debloating LDPlayer 9.10.x (September 2025)

I wanted to listen to The Bible using amazing Dwell app which sadly only has an Android or iOS app currently. 👎 So for this we need to use one of the cancerware CCP owned Chinese 🇨🇳 Android emulators. Yay! /s 🙄

Let's at least decrapify this thing as much as we can yeah? Optional/situational lines are in italics but these aren't required and may not work.

These below steps should work similarly for Nox/MEmu etc. because all these emulators are all owned by the same crapware company (see bottom of this gist), but you can older find guides for Nox here and MEMu here.

@aamiaa
aamiaa / CompleteDiscordQuest.md
Last active December 9, 2025 11:09
Complete Recent Discord Quest

Complete Recent Discord Quest

Note

This does not works in browser for quests which require you to play a game! Use the desktop app to complete those.

How to use this script:

  1. Accept a quest under Discover -> Quests
  2. Press Ctrl+Shift+I to open DevTools
  3. Go to the Console tab
  4. Paste the following code and hit enter:
@kalomaze
kalomaze / llm_samplers_explained.md
Last active November 13, 2025 17:49
LLM Samplers Explained

LLM Samplers Explained

Everytime a large language model makes predictions, all of the thousands of tokens in the vocabulary are assigned some degree of probability, from almost 0%, to almost 100%. There are different ways you can decide to choose from those predictions. This process is known as "sampling", and there are various strategies you can use which I will cover here.

OpenAI Samplers

Temperature

  • Temperature is a way to control the overall confidence of the model's scores (the logits). What this means is that, if you use a lower value than 1.0, the relative distance between the tokens will become larger (more deterministic), and if you use a larger value than 1.0, the relative distance between the tokens becomes smaller (less deterministic).
  • 1.0 Temperature is the original distribution that the model was trained to optimize for, since the scores remain the same.
  • Graph demonstration with voiceover: https://files.catbox.moe/6ht56x.mp4
@dvaupel
dvaupel / svt-av1_encoding_guide.md
Last active November 29, 2025 20:01
SVT-AV1 Encoding Guide

SVT-AV1 Encoding Guide

Open source encoders

  • AOMEnc[^4]. Developed by AOM, reference encoder with most features and highest quality.
  • SVT-AV1. Developed by Intel, production ready encoder with high performance and optimized for parallelism.
  • Rav1e. Developed by Mozilla/Xiph, used by Vimeo[^1].

Since all these tools are stil being actively developed, you should always use the newest versions and compile the standalone encoders yourself if necessary.

@HexedHero
HexedHero / mc_client_performance_guide.md
Last active November 16, 2025 21:02
Performance guide for Minecraft 1.20.6+ Clients

Performance guide for Minecraft 1.20.6+ Clients

📜 Fabric

Fabric is the "modern" Minecraft modding software that is very modular.
We use Fabric in this guide so install it by going to https://fabricmc.net/use/ Download the .jar or .exe and run it.

Below is a list of performance and utility mods to make your Minecraft experience better and most importantly smooth.
The list is in order of most importance and they all work together including what they do with why to use them.

@chaodonghu
chaodonghu / unfollow-everyone-instagram.js
Last active December 8, 2025 02:29
Google Chrome script that allows user to mass unfollow instagram users on user's profile
// Run GOOGLE CHROME - WORKING AS OF MARCH 23 2025
// Please @ me in the comments if this stops working, I will try to get it working again within the month
// INSTRUCTIONS
// 1. Open Instagram in Chrome
// 2. Click on "FOLLOWING" on your Instagram profile
// 3. Open developer tools by right clicking on the page and clicking "INSPECT"
// 4. Copy the code below and paste in the developer tools console and press enter to run
// 5. Script will not run if tab is navigated away from, minimized of unfocused (It is recommended to open a new chrome window or push tab to the side and let script run in background)
@painor
painor / FastTelethon.py
Last active October 19, 2025 21:35
This will increase the download/upload speed when using telethon
# copied from https://github.com/tulir/mautrix-telegram/blob/master/mautrix_telegram/util/parallel_file_transfer.py
# Copyright (C) 2021 Tulir Asokan
import asyncio
import hashlib
import inspect
import logging
import math
import os
from collections import defaultdict
from typing import Optional, List, AsyncGenerator, Union, Awaitable, DefaultDict, Tuple, BinaryIO
@joshtynjala
joshtynjala / profiles.json
Created August 8, 2019 15:46
Ayu color schemes for Windows Terminal
{
"schemes" :
[
{
"background" : "#fafafa",
"black" : "#000000",
"blue" : "#3199e1",
"brightBlack" : "#686868",
"brightBlue" : "#399ee6",
"brightCyan" : "#4cbf99",