Skip to content

Instantly share code, notes, and snippets.

View s626ch's full-sized avatar
💥
STIMMING ISN'T ENOUGH I NEED TO EXPLODE

Stitch s626ch

💥
STIMMING ISN'T ENOUGH I NEED TO EXPLODE
View GitHub Profile
@ToxicAven
ToxicAven / pleadingRevert.css
Created March 29, 2023 22:45
Reverts the 🥺 update to discord
[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;
}
@NobleDraconian
NobleDraconian / EmotePose.js
Created August 18, 2022 23:56
Roblox - avatar emote pose
// 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
@apfzvd
apfzvd / discord-bot.sh
Last active June 18, 2024 08:19
how to send a message to discord channel using the webhook via shell script
#!/bin/bash
##
# Discord Webhook
# Change the 'your_discord_webhook_name' with your actual Discord Webhook
##
##
# add to linux cron:
# sudo crontab -e
@IanColdwater
IanColdwater / twittermute.txt
Last active July 2, 2024 02:25
Here are some terms to mute on Twitter to clean your timeline up a bit.
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
@lzybkr
lzybkr / Get-AmIPwned.ps1
Last active August 21, 2023 08:16
Query haveibeenpwned.com
<#
.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.