Skip to content

Instantly share code, notes, and snippets.

View 0xTeles's full-sized avatar
🎯
Focusing

João Teles 0xTeles

🎯
Focusing
View GitHub Profile
@testanull
testanull / Microsoft SharePoint setup guide.md
Last active July 23, 2025 22:15
Microsoft SharePoint setup guide
@Bilka2
Bilka2 / webhook.py
Last active July 21, 2025 04:18
Simple discord webhook with python
import requests # dependency
url = "<your url>" # webhook url, from here: https://i.imgur.com/f9XnAew.png
# for all params, see https://discordapp.com/developers/docs/resources/webhook#execute-webhook
data = {
"content" : "message content",
"username" : "custom username"
}