Skip to content

Instantly share code, notes, and snippets.

View DeltaCoderr's full-sized avatar
Busy Irl

Subodh Inamdar DeltaCoderr

Busy Irl
View GitHub Profile
@DeltaCoderr
DeltaCoderr / MongoDB Cluster Database URL.md
Created March 18, 2021 13:25
Basic Tutorial for beginners on how to get a MongoDB Cluster Database URL

📝 MongoDB Cluster Database URL

As Many people were having troubles on generating an MongoDB Cluster Database URL. Just follow these steps, and you are good to go!

Note : Please read The Official MongoDB Documentation since they have actual docs and details about how MongoDB actually works.

1) Making an Account

  • In order to create a database, You need to create an account in the cloud. You can Register through Here
@advaith1
advaith1 / discordjs-slash-commands.md
Last active April 20, 2024 05:39
Slash Commands in Discord.js
@advaith1
advaith1 / intents.md
Last active July 6, 2024 19:32
Discord Gateway Intents Explainer

Intents Explainer

If you're wondering what Gateway Intents are, what Privileged Intents are, why your bot can't see statuses, or why your bot can't see member joins anymore, then this page should explain it to you!

if you do not know what intents are, please read this entire page

Intro

First, a short explanation of how bots work: bots can make requests over the REST (HTTP) API to retreive information and do actions, and they get real-time updates from Discord in the form of websocket gateway events. They can also fetch server members via the gateway.

Examples of gateway events you are probably familiar with are Message Create (a message was sent) and Guild Member Add (a user joined a server).