You want know more about me? Go to the about section!
Oklou βββββββββββββββββ 14 plays | |
twenty one pilots βββββββββββββββββ 8 plays | |
Aaron Hibell βββββββββββββββββ 4 plays | |
Bassi Fox βββββββββββββββββ 4 plays | |
Glass Animals βββββββββββββββββ 4 plays | |
Roya βββββββββββββββββ 4 plays | |
Arctic Monkeys βββββββββββββββββ 3 plays | |
edapollo βββββββββββββββββ 3 plays | |
heylucas βββββββββββββββββ 3 plays | |
ItsArius βββββββββββββββββ 3 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, |
-
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" |