-
Go to about:config in the address bar.
-
Search for toolkit.legacyUserProfileCustomizations.stylesheets and set it to True
Discover gists
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
| -a | |
| -ability | |
| -able | |
| -ably | |
| -ac | |
| -acean | |
| -aceous | |
| -ad | |
| -ade | |
| -aemia |
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
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
| { | |
| "background" : "#282828", | |
| "black" : "#282828", | |
| "blue" : "#458588", | |
| "brightBlack" : "#928374", | |
| "brightBlue" : "#83A598", | |
| "brightCyan" : "#8EC07C", | |
| "brightGreen" : "#B8BB26", | |
| "brightPurple" : "#D3869B", | |
| "brightRed" : "#FB4934", |
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
| // | |
| // ListeningVoiceAnimation.swift | |
| // | |
| // Created by Amos Gyamfi on 12.12.2025. | |
| // | |
| import SwiftUI | |
| struct ListeningVoiceAnimation: View { | |
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
| #!/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' |
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/perl | |
| use strict; | |
| use File::Temp qw/tempfile/; | |
| use Getopt::Long; | |
| use constant PATH_TO_JTR => ""; | |
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
| # 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 |
- https://chat.openai.com/
- Is ChatGPT "DAN" Real? Gonna find out [Part 1]
(https://www.youtube.com/watch?v=-q8woRG9FrI) - Part 2: I thought ChatGPT DAN was a hoax, but...
(https://www.youtube.com/watch?v=rHZRrDu3A2U&lc=UgxfrxX8aK7gnCzkend4AaABAg)
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 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): |
NewerOlder