git config --global http.version HTTP/1.1
git config --global http.postBuffer 157286400
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"name": "Afghanistan", | |
"code": "AF", | |
"phoneCode": "+93", | |
"flagEmoji": "🇦🇫" | |
}, | |
{ | |
"name": "Aland Islands", | |
"code": "AX", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//----------// | |
//const declarations | |
const Discord = require("discord.js");//created on version 11.6.3 - May break on v12+ (Have not tested on v12+.) | |
const bot = new Discord.Client({ disableEveryone: true });//declaring "bot" as the client. | |
const token = "tokenhere"//bot token goes here | |
const prefix = "!" //your prefix goes here | |
//----------// | |
//code | |
bot.on("message", async message => {//when a message is sent (that the bot can read) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apiVersion: extensions/v1beta1 | |
kind: Deployment | |
metadata: | |
name: konga | |
spec: | |
replicas: 1 | |
template: | |
metadata: | |
labels: | |
name: konga |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Users and their passwords attempts | |
[0] | |
4 | |
1 | |
1 - | |
2 ! | |
2 !@ | |
1 & | |
1 0 | |
3 0000 |
In your command-line run the following commands:
brew doctor
brew update
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"items": [ | |
{ | |
"simpleResponse": { | |
"textToSpeech":"This is the first simple response for a basic card" | |
} | |
}, | |
{ | |
"basicCard": { | |
"title":"Title: this is a title", |
Snake is a fun game to make as it doesn't require a lot of code (less than 100 lines with all comments removed). This is a basic implementation of the snake game, but it's missing a few things intentionally and they're left as further exploration for the reader.
- Score
- When the snake eats an apple, the score should increase by one. Use context.fillText() to display the score to the screen
NewerOlder