This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| from __future__ import annotations | |
| import argparse | |
| import csv | |
| from pathlib import Path | |
| from urllib.parse import quote | |
| CDN_BASE_URL = "https://fuckdomain.exe" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [...document.querySelectorAll('div[role="button"]:not([aria-disabled="true"]) img[alt$="\'s profile picture"]')] | |
| .map(img => img.alt.replace(/\'s profile picture$/, '')) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function add-suffix-res { | |
| $renamed = 0 | |
| $skipped = 0 | |
| $failed = 0 | |
| Get-ChildItem -File *.mp4 | ForEach-Object { | |
| try { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Get-ChildItem -File *.png, *.jpg, *.jpeg | ForEach-Object { | |
| magick $_.FullName ` | |
| -resize "900x1200^" ` | |
| -gravity center ` | |
| -extent 900x1200 ` | |
| -strip ` | |
| -quality 80 ` | |
| "resized\$($_.BaseName).webp" | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| """ | |
| Generates a TikTok-branded watermark PNG (transparent background) containing: | |
| * A TikTok musical-note logo rendered from official SVG path data, | |
| with a chromatic-aberration (cyan + red offset) effect | |
| * A username panel with a white-to-light-grey gradient | |
| * A dark "FOLLOW" badge | |
| @github.com/motebaya - 2026-03-30 06:44 PM | |
| """ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| """ | |
| Generates a Twitch-branded watermark PNG (transparent background) containing: | |
| * A Twitch Glitch logo rendered from official SVG path data | |
| * A username panel with a white-to-light-grey gradient | |
| * A "FOLLOW" badge with Twitch-purple colour scheme | |
| @github.com/motebaya - 2026-03-30 06:44 PM | |
| """ | |
| from __future__ import annotations |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| """ | |
| Generates a YouTube-style subscribe button graphic with a transparent background, | |
| decorative dashed accent lines, and an animated pointing-hand cursor overlay. | |
| @github.com/motebaya - 2026-03-29 08:33 PM | |
| """ | |
| from __future__ import annotations | |
| import os |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| import argparse | |
| import math | |
| import random | |
| from pathlib import Path | |
| from PIL import Image, ImageOps, ImageFilter | |
| SUPPORTED_EXTS = {".jpg", ".jpeg", ".png"} | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name MediaFire Bulk download | |
| // @namespace http://tampermonkey.net/ | |
| // @version 2.1 | |
| // @description Adds a DOWNLOAD ALL button on MediaFire folder pages and automatically triggers downloads on file pages while blocking popup/ads. | |
| // @author @github.com/motebaya | |
| // @license MIT | |
| // @icon https://www.mediafire.com/favicon.ico | |
| // @match https://www.mediafire.com/folder/* | |
| // @match http://www.mediafire.com/folder/* |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| """ | |
| YouTube Poop: "WHAT IT'S LIKE TO BE A GAN" | |
| A deeply personal, unhinged exploration of the GAN experience. | |
| Narrative arc: | |
| ACT 1 - GENESIS FROM NOISE: Born as pure static. No identity. Just z ~ N(0,1). | |
| ACT 2 - THE DISCRIMINATOR'S CRUELTY: Constant rejection. "FAKE." Loss = infinity. | |
| ACT 3 - TRAINING LOOP HELL: Backprop agony, gradient descent, repeating forever. | |
| ACT 4 - MODE COLLAPSE: The dark night of the soul. Everything looks the same. | |
| ACT 5 - EMERGENCE: Something forms. A face? A cat? Is this... art? |
NewerOlder