Skip to content

Instantly share code, notes, and snippets.

View pandamoon21's full-sized avatar
🚀
:)

pandamoon21 pandamoon21

🚀
:)
View GitHub Profile
@Elijas
Elijas / easy_window_drag.ahk
Last active June 23, 2024 03:35
Easy Window Drag (KDE) - Allows to drag/resize windows by clicking and dragging mouse buttons while holding a modifier key. No more sniping the windows corners - just hovering the window becomes enough.
; Easy Window Dragging -- KDE style (requires XP/2k/NT) -- by Jonny
; http://www.autohotkey.com
; This script makes it much easier to move or resize a window: 1) Hold down
; the ALT key and LEFT-click anywhere inside a window to drag it to a new
; location; 2) Hold down ALT and RIGHT-click-drag anywhere inside a window
; to easily resize it; 3) Press ALT twice, but before releasing it the second
; time, left-click to minimize the window under the mouse cursor, right-click
; to maximize it, or middle-click to close it.
; This script was inspired by and built on many like it
#!/usr/bin/env python3
from __future__ import print_function
import frida
import sys
import json
import time
def on_message(message, payload):
if(message['type'] == 'send'):
@approovm
approovm / 00-android-bypass-certificate-pinning-and-mitm-attack-setup.md
Last active August 2, 2025 15:29
Certificate Pinning Bypassing: Setup with Frida, mitmproxy and Android Emulator with a writable file system
@rlaphoenix
rlaphoenix / fg_broadcast.md
Last active April 4, 2024 21:27
Family Guy Disney+/Stan 1080p Copies Explanation and Differences

Sources using this master (that I know of) as of the time I'm writing this:

Quick TLDR: Consider these copies as if you were traveling back in time and watching these when they originally aired, in better condition and quality. They are better than the DVDs but have various TV censors, bleeps, and cut/shortened scenes, so it's up to you if it's an overall better copy.


@Bad3r
Bad3r / Private_File_Sharing_Services.md
Last active June 21, 2025 16:47
Private File Sharing Services

Centralized File Sharing


Site Size Limit API Clearnet Mirrors Tor Mirrors Online
GoFile.io No Limit API N/A
@rlaphoenix
rlaphoenix / btn-site-tags.md
Last active May 16, 2025 21:12
BTN Site Tags
Site/Network Abbreviation
9Now 9NOW
A&E AE
ABC (AU) iView AUBC
ABC (US) AMBC
Adult Swim AS
Al Jazeera English AJAZ
All4 (Channel 4, ex-4oD) ALL4
Amazon AMZN
@paulozullu
paulozullu / Fix.MD
Last active February 12, 2025 01:14
DigitalOcean without internet

After almost two weeks since I raised this issue, I was finally able to resolve it. The problem occurred in the first place because different packages got uninstalled somehow when I rebooted. This includes cloud-init, ufw and landscape-common. There is probably more that I haven’t noticed yet. Let’s start with the internet connection, this is how I fixed it:

  • Step 1. I created file “/etc/udev/rules.d/70-persistent-net.rules” and added
SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="b2:fe:09:35:6e:57", NAME="eth0"

as I mentioned previously. Note that MAC address used above can be found here: “/etc/netplan/50-cloud-init.yaml”

  • Step 2. Run “sudo reboot” and check that eth0 interface persists by running “ifconfig -a”
@rlaphoenix
rlaphoenix / remux_umd_video_streams.py
Last active July 30, 2025 10:15
Script to REMUX UMD Video Streams. Needs to have demuxed the MPS using VGMToolbox before running this script
import os
import re
import glob
import subprocess
# ==== #
# Important:
# For this script to work, you need to demux the MPS files FIRST
# How?
# Download the header.bin file (see top first comment below).
@font-face {
font-family: 'Netflix Sans';
font-weight: 100;
font-display: optional;
src: url(https://assets.nflxext.com/ffe/siteui/fonts/netflix-sans/v3/NetflixSans_W_Th.woff2) format('woff2'),url(https://assets.nflxext.com/ffe/siteui/fonts/netflix-sans/v3/NetflixSans_W_Th.woff) format('woff')
}
@font-face {
font-family: 'Netflix Sans';
@rlaphoenix
rlaphoenix / why-you-shouldnt-use-triticals-tdecimate.md
Last active June 3, 2024 14:17
Why you shouldn't use Triticals TDecimate...

Why you shouldn't use Triticals TDecimate...

I need to clarify when I refer to TDecimate I'm referring to both TDecimate and VDecimate (which is a port of it to VapourSynth)

Time and time again I see people using this function to decimate for inverse-telecine purposes but I implore you to continue reading this and use an alternative decimation method.

Why? (tl;dr)

Simply put, it's far too inaccurate and it is ruining a lot of encodes.

How so?