Skip to content

Instantly share code, notes, and snippets.

@kevinflo
kevinflo / prefix-suffix.txt
Last active December 17, 2025 04:04
prefix-suffix.txt
-a
-ability
-able
-ably
-ac
-acean
-aceous
-ad
-ade
-aemia
@AndreXime
AndreXime / setup.md
Last active December 17, 2025 04:00
Firefox Autohide Toolbar Custom CSS

How to Use Custom CSS in Firefox

Enable CSS Customization

  • Go to about:config in the address bar.

  • Search for toolkit.legacyUserProfileCustomizations.stylesheets and set it to True

Setting Up Custom CSS

how is the morph warp search tool working for you so far? Is it reliable and effective at finding relevant code? Use ultrathink

● Honestly, I haven't actually used the mcp__morph-mcp__warp_grep tool in this session at all. Let me reflect on why and give you a candid assessment:

My Actual Tool Usage This Session

I defaulted to the standard tools:

  • Grep for pattern searches (e.g., screenshot in deployment-monitor.sh)
  • Read for reading specific files I already knew about
@davialexandre
davialexandre / gruvbox_dark.json
Created June 23, 2019 18:09
Gruvbox Dark color scheme for the new Windows Terminal
{
"background" : "#282828",
"black" : "#282828",
"blue" : "#458588",
"brightBlack" : "#928374",
"brightBlue" : "#83A598",
"brightCyan" : "#8EC07C",
"brightGreen" : "#B8BB26",
"brightPurple" : "#D3869B",
"brightRed" : "#FB4934",
//
// ListeningVoiceAnimation.swift
//
// Created by Amos Gyamfi on 12.12.2025.
//
import SwiftUI
struct ListeningVoiceAnimation: View {
@tothi
tothi / magisk_ramdisk_patch_avd.sh
Last active December 17, 2025 03:56
Apply Magisk patches on AVD (Android Emulator) RAMDISK images for running Magisk (root) on Android Emulators
#!/bin/bash
#
# patch ramdisk.img (for installing Magisk on x64 Android emulator)
#
# x86_64 on Android 12 (API Level 32) is supported/tested currently
#
# install AVD:
#
# sudo sdkmanager 'system-images;android-32;google_apis_playstore;x86_64'
@Cairnarvon
Cairnarvon / cisco-cracker.pl
Created September 15, 2010 03:22
Cisco IOS configuration file password cracker.
#!/usr/bin/perl
use strict;
use File::Temp qw/tempfile/;
use Getopt::Long;
use constant PATH_TO_JTR => "";
@dayt0n
dayt0n / bfrestrict.py
Last active October 16, 2025 00:34
quickly bruteforce iOS restrictions passcode
# bfrestrict.py - bruteforce iOS restrictions passcode
#
# if you don't have an unencrypted backup folder ready, just plug in the device and run this program
#
# Note: make sure you have libimobiledevice installed (we need idevicebackup2) if you plan to plug-and-play
#
# made by Dayton Hasty (c)2018
import os
import sys
import hashlib
@dschrubba
dschrubba / dd2_extract_textures.py
Created December 11, 2025 22:48
Texture Extraction Script for Destruction Derby 2 (1996) | Experimental Python script, created when I was trying to make sense of the game's file formats
#!/usr/bin/env python3
import struct, os
from pathlib import Path
from PIL import Image
def read_u32_le(b, off): return struct.unpack_from("<I", b, off)[0]
def read_i16_le(b, off): return struct.unpack_from("<h", b, off)[0]
def read_u16_le(b, off): return struct.unpack_from("<H", b, off)[0]
def psx_bgr555_to_rgb888(word):