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
""" | |
electron_patcher.py: Enforce 'use-angle@1' in Chrome and Electron applications | |
This script patches Chromium-based applications (including Electron apps and Chrome) | |
to enforce the use of OpenGL rendering through the 'use-angle@1' setting. | |
Features: | |
- macOS only: Optimized for macOS Electron applications | |
- Auto-detection: Automatically finds Electron applications in standard locations | |
- Specific apps: Has special handling for common apps like Spotify, Discord, VSCode, Microsoft Teams |
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
[class^=inspector-] img[alt=":pleading_face:"], | |
[data-type=emoji]:is([data-name=":pleading_face:"], | |
[data-name=pleading_face]) { | |
-moz-box-sizing: border-box; | |
box-sizing: border-box; | |
background: url("https://toxicaven.dev/pleading.svg") no-repeat; | |
width: 1.375em; | |
height: 1.375em; | |
padding-left: 1.375em; | |
} |
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
// doing ajax because easy csrf handling w/their middleware lol | |
$.ajax({ | |
method: "POST", | |
url: "https://avatar.roblox.com/v1/avatar/thumbnail-customization", | |
contentType: "application/json", | |
data: JSON.stringify({ | |
"camera": { | |
// Ranges are inclusive. | |
"distanceScale": 1, // 0.5 to 4 | |
"fieldOfViewDeg": 15, // 15 to 45 |
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 | |
## | |
# Discord Webhook | |
# Change the 'your_discord_webhook_name' with your actual Discord Webhook | |
## | |
## | |
# add to linux cron: | |
# sudo crontab -e |
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
Mute these words in your settings here: https://twitter.com/settings/muted_keywords | |
ActivityTweet | |
generic_activity_highlights | |
generic_activity_momentsbreaking | |
RankedOrganicTweet | |
suggest_activity | |
suggest_activity_feed | |
suggest_activity_highlights | |
suggest_activity_tweet |
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
<# | |
.SYNOPSIS | |
Reports if your password is pwned by querying haveibeenpwned.com | |
.DESCRIPTION | |
Query haveibeenpwned.com to see if a password has appeared in a breach. | |
The query sends the first 5 characters of the SHA1 hash, so the query should be considered safe and anonymous. |