Skip to content

Instantly share code, notes, and snippets.

View imeesa's full-sized avatar
💭
tell me if you have any cool projects to work on

Eesa imeesa

💭
tell me if you have any cool projects to work on
View GitHub Profile
@bribes
bribes / hacking-minecraft-realms.md
Last active July 18, 2025 20:49
Hacking Minecraft Realms: Spoofing Realms Owner
{
"193.25.217.28": "WoodieScan",
"51.75.66.201": "slowstack",
"151.115.73.107": "matscan",
"154.213.185.46": "MC Server Scanner",
"154.213.187.114": "MC Server Scanner",
"3.14.29.73": "MC Server Scanner",
"154.213.187.131": "MYNX scanner",
"172.104.152.224": "mcsrvstat.us",
"94.131.100.102": "ServerOverflow",
@aamiaa
aamiaa / CompleteDiscordQuest.md
Last active December 7, 2025 20:04
Complete Recent Discord Quest

Complete Recent Discord Quest

Note

This does not works in browser for quests which require you to play a game! Use the desktop app to complete those.

How to use this script:

  1. Accept a quest under Discover -> Quests
  2. Press Ctrl+Shift+I to open DevTools
  3. Go to the Console tab
  4. Paste the following code and hit enter:
@sunnniee
sunnniee / vencord-plugin-guide.md
Last active September 26, 2025 07:55
turns out i have a use for this again
@pinheaded
pinheaded / cog_ext.py
Last active October 25, 2025 11:58
a basic cog + extension example for discord.py v2
from discord import app_commands
from discord.ext import commands
# all cogs inherit from this base class
class ExampleCog(commands.Cog):
def __init__(self, bot):
self.bot = bot # adding a bot attribute for easier access
# adding a command to the cog
@commands.command(name="ping")

github.ref vs github.head_ref in GitHub Actions

Trigger event pull_request pull_request_target push
github.ref refs/pull/53/merge refs/heads/main refs/heads/test/pull_request_target
github.head_ref test/pull_request_target test/pull_request_target -
  • main: default branch
  • test/pull_request_target: topic branch name
  • 53: pull request number