Skip to content

Instantly share code, notes, and snippets.

View Wolfhound905's full-sized avatar
💭
Prob not doing anything.

Wolfhound905

💭
Prob not doing anything.
  • US
  • 14:15 (UTC -04:00)
View GitHub Profile

Stage Channels with Video was being tested for this stage. This includes Webcam + Stream

  • Quick API Updates
    • 10-Nov Active Devloper Badge
    • 16-Nov nsfw flag on commands
      • Apps in App Directory cannot have NSFW commands
    • 12-Dec Linked Roles + Connection Metadata
      • Linked Roles
  • Listed when you clck on a role
@ghostrider-05
ghostrider-05 / discord_app_protocols.md
Last active May 10, 2025 11:30
An unofficial list of discord app protocol routes

Discord app protocol routes

Home:

  • /: discord://-/
  • friends: discord://-/channels/@me/
  • nitro: discord://-/store
  • shop: discord://-/shop
  • message requests: discord://-/message-requests
  • family centre: discord://-/family-center
@bugb
bugb / gist.md
Last active October 27, 2024 19:00
Mongo DB behind Nginx as reverse proxy, share your Mongo DB with your friends in LAN network

Mongo DB works with raw TCP instead of HTTP so we need create stream with Nginx.

Add the below code above http block in nginx config file (eg: /etc/nginx/nginx.conf for Ubuntu)

stream {
    server {
        listen  9999;
        proxy_connect_timeout 1s;
 proxy_timeout 3s;