Skip to content

Instantly share code, notes, and snippets.

#!/bin/bash
# Safe Linux Mint Debloater — removes common pre-installed apps you likely don't need.
# Run as root: sudo bash debloat-safe.sh
set -euo pipefail
# ── Root check ────────────────────────────────────────────────────────────────
if [ "$EUID" -ne 0 ]; then
echo "Please run as root: sudo bash $0"
exit 1

CSS Clip-Path Shape() Based Squircle

Pure CSS Squircle has always been the fantasy of a web developer's good night's sleep. It is possible to clip a div with a custom SVG, but you have to make that SVG, put it on top of your HTML, then reference it inside the CSS, and regenerate it on each resize... It is a nightmare and the performance is horrible. You can go mad and implement a CSS Houdini to render squircle..., while this is mind-blowingly awesome, it doesn't work in Safari, and still not Pure CSS (my nightmare for those who disable JavaScript on their clients...). While there is work underway to add the superellipse() to CSS, the shape() function is now supported on all major

@aamiaa
aamiaa / CompleteDiscordQuest.md
Last active July 27, 2026 21:43
Complete Recent Discord Quest

Caution

As of April 7th 2026, Discord has expressed their intent to crack down on automating quest completion.

Some users have received the following system message:

image

There isn't much I can do to make the script undetected, so use it at your own risk, as you most likely WILL get flagged by doing so.

Complete Recent Discord Quest

@chikaibeneme
chikaibeneme / post migration rebuild.sql
Created February 10, 2026 09:03
Manually Rebuilding Custom Tables after Migration
-- The Events Calendar - Custom Tables Rebuild Script
-- Run this if events are not displaying on your website
-- This script will rebuild the wp_tec_events and wp_tec_occurrences tables
-- 1. DROP old/corrupted tables
DROP TABLE IF EXISTS wp_tec_occurrences;
DROP TABLE IF EXISTS wp_tec_events;
-- 2. CREATE wp_tec_events table
CREATE TABLE wp_tec_events (

Streaming with SOX

  • FILE audio file I/O
  • -d default audio device I/O
  • -p pipe: standard I/O

The simplest sox command format

sox INPUT_FILE OUTPUT_FILE
@Fuwn
Fuwn / README.md
Last active July 27, 2026 21:33
Windows XP All Editions Universal Product Keys Collection

Windows XP Logo

Although Microsoft no longer supports Windows XP updates, I'm sure many users still use it due to personal habits or job demands. Therefore, XP's product keys may still be necessary. Here lies the most comprehensive list of Windows XP product keys.

The following CD keys are official and original from Microsoft, primarily used for Windows XP Professional Service Pack 2/3 VOL/VLK system images, which are among the easiest to find on the Internet.

Windows XP Setup

Windows XP Professional 32-bit Edition

Visual Studio 2026 18.x
Professional: NVTDK-QB8J9-M28GR-92BPC-BTHXK
Enterprise: VYGRN-WPR22-HG4X3-692BF-QGT2V
Product Year Version Product Keys
Visual Studio 2022 2021 17.x
Professional: TD244-P4NB7-YQ6XK-Y8MMM-YWV2J
Enterprise: VHF9H-NXBBB-638P6-6JHCY-88JWH
Visual Studio 2019 2019 16.x
@gabrielfroes
gabrielfroes / prompt-de1click.md
Last active July 27, 2026 21:27
Prompt Replit para Aplicação Web Lista de Links

Crie um SaaS chamado de1.click

O de1.click é uma plataforma em português do Brasil para criação de páginas de links para redes sociais, semelhante a uma versão mais simples, rápida e objetiva do Linktree.

O público-alvo são empresários, freelancers, desenvolvedores, criadores de conteúdo, profissionais de marketing, jovens empreendedores e pessoas que precisam divulgar vários links em um único lugar.

A principal proposta do produto é simplicidade. O usuário deve conseguir criar sua página pública em poucos minutos, com uma experiência moderna, mobile first e intuitiva.

O fluxo principal do usuário deve ser:

@Stargrazer82301
Stargrazer82301 / Colourstamps_Example.py
Last active July 27, 2026 21:28
Colourstamps_Example.py
"""
A quick example for how to use the colorstamps package, and varying point sizes, to make a "5-D" density histogram
Code for using imshow and opacity can be found commented out at bottom of script
"""
# Import smorgasdbord
import numpy as np
import scipy.stats
import matplotlib.pyplot as plt
import colorstamps
@mthri
mthri / torob.py
Created July 27, 2026 10:35
Torob Product Tracker
"""
Scrape Torob API using curl_cffi to monitor product prices with Telegram and Bale alerts.
Installation:
pip install curl_cffi
Configuration:
Create a 'config.json' file in the same directory:
{
"bale_bot_token": "YOUR_BALE_TOKEN",