You want know more about me? Go to the about section!
| Fred again.. βββββββββββββββββ 17 plays | |
| Oskar med K βββββββββββββββββ 7 plays | |
| ODESZA βββββββββββββββββ 4 plays | |
| RΓFΓS DU SOL βββββββββββββββββ 4 plays | |
| BUNT. βββββββββββββββββ 3 plays | |
| Leo Stannard βββββββββββββββββ 3 plays | |
| Swimming Paul βββββββββββββββββ 3 plays | |
| Emmit Fenn βββββββββββββββββ 2 plays | |
| Good Neighbours βββββββββββββββββ 2 plays | |
| Jerro βββββββββββββββββ 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, |
-
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" |