Skip to content

Instantly share code, notes, and snippets.

View thomasbnt's full-sized avatar
πŸ‘‹
Probably listening music now

Thomas Bonnet thomasbnt

πŸ‘‹
Probably listening music now
View GitHub Profile
twenty one pilots β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–Žβ–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘ 30 plays
Flume β–ˆβ–ˆβ–ˆβ–ˆβ–Œβ–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘ 22 plays
Oncor β–ˆβ–β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘ 7 plays
Swimming Paul β–ˆβ–Žβ–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘ 6 plays
abroad β–‹β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘ 3 plays
Avi Snow β–‹β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘ 3 plays
Klaverson β–‹β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘ 3 plays
Penelope Trappes β–‹β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘ 3 plays
ALEX KEEPER ▍░░░░░░░░░░░░░░░░ 2 plays
CRi ▍░░░░░░░░░░░░░░░░ 2 plays
// Checked that with console.log(Discord) from Discord.js
APIErrors: {
UNKNOWN_ACCOUNT: 10001,
UNKNOWN_APPLICATION: 10002,
UNKNOWN_CHANNEL: 10003,
UNKNOWN_GUILD: 10004,
UNKNOWN_INTEGRATION: 10005,
UNKNOWN_INVITE: 10006,
UNKNOWN_MEMBER: 10007,
@thomasbnt
thomasbnt / readme.md
Created July 17, 2022 00:01 — forked from AlexMercedCoder/readme.md
Web Development Glossary
  • Abstraction: Something that simplifies the complexities of something else to make it easier to use without the need to understand how it works.

  • Server: Application running on a network that takes request and generates a response. Often, these responses are either HTML web pages or data JSON format.

  • Client: Application that is made to create requests to servers and then render the response into something usable for the user. A internet browser is a client application that let's you send requests to web servers and render the html in the response as a visual webpage.

  • Web Browser: A desktop or mobile application that is for sending requests to web servers to get back a particular web site or web application.

  • Web Application: A software application written to be consumed via a web browser

# Git
alias gitc="git commit -m $1"
alias gc="git commit -m $1"
alias gita="git add"
alias ga="git add"
alias gits="git status"
alias gs="git status"

Semantic Commit Messages

See how a minor change to your commit message style can make you a better programmer.

Format: <type>(<scope>): <subject>

<scope> is optional

Example