Skip to content

Instantly share code, notes, and snippets.

@825i
825i / debloatLDPlayer.md
Last active March 21, 2025 15:14 — forked from TameemS/debloatLDPlayer.md
Debloating LDPlayer

Debloating LDPlayer 9.1.x (September 2024)

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 April 24, 2025 14:09
Complete Recent Discord Quest

Complete Recent Discord Quest

Note

This does not works in browser for non-video, non-activity quests! For stream/play quests use the desktop app!

Note

When doing stream quests, you need at least 1 other account in the vc!

How to use this script:

  1. Accept a quest under Discover -> Quests
@kalomaze
kalomaze / llm_samplers_explained.md
Last active April 19, 2025 10:39
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 April 24, 2025 21:27
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 February 4, 2025 12:22
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 March 25, 2025 20:37
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)
@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",
@spvkgn
spvkgn / opus-tools_static_build.sh
Last active September 14, 2024 15:57
Script to build a statically linked opus-tools
#!/bin/bash
set -eo pipefail
# Script to build a statically linked version of opus-tools
#
# Release tarballs:
# http://downloads.xiph.org/releases/opus/
# http://downloads.xiph.org/releases/ogg/
# http://downloads.xiph.org/releases/flac/
#
@Pulimet
Pulimet / AdbCommands
Last active April 24, 2025 14:48
Adb useful commands list
Hi All!
I've recently launched a tool that wraps many of the commands here with a user interface. This desktop application is currently available for macOS. There's a roadmap outlining planned features for the near future.
Feel free to request any features you'd like to see, and I'll prioritize them accordingly.
One of the most important aspects of this application is that every command executed behind the scenes is displayed in a special log section. This allows you to see exactly what’s happening and learn from it.
Here's the link to the repository: https://github.com/Pulimet/ADBugger
App Description:
ADBugger is a desktop tool designed for debugging and QA of Android devices and emulators. It simplifies testing, debugging, and performance analysis by offering device management, automated testing, log analysis, and remote control capabilities. This ensures smooth app performance across various setups.