- Show Documentation: K
- Go to Code Action: leader + ca
- Go to Definition: gd
- Comment: leader + /
- Toggle Line Number: leader + n
- New Buffer: leader + b
- Relative number: leader + rn
- Copy whole file: Ctrl + c
This file contains 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
client | |
clientupload | |
temp/log | |
temp | |
client/main/patches/** | |
client/main/patches/modulehrent/generate/** | |
*.dup | |
.gitignore |
This file contains 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
go mod init example.com/example | |
go mod tidy | |
go build | |
go get github.com/githubnemo/CompileDaemon | |
go install https://github.com/githubnemo/CompileDaemon | |
go get github.com/joho/godotenv |
This file contains 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
CREATE TABLE `employees` ( | |
`id` int unsigned NOT NULL AUTO_INCREMENT, | |
`firstname` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, | |
`lastname` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, | |
`contact_no` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, | |
`official_email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, | |
`personal_email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, | |
`identity_no` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, | |
`date_of_birth` date DEFAULT NULL, | |
`gender` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, |
This is a basic implementation of the game Tetris, but it's missing a few things intentionally and they're left as further exploration for the reader.
- Score
- When a line is cleared, the score should increase based on the number of lines cleared at once. See https://tetris.fandom.com/wiki/Scoring
This file contains 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": "Bulbasaur", | |
"id": "#001", | |
"imageurl": "https://assets.pokemon.com/assets/cms2/img/pokedex/full/001.png", | |
"xdescription": "Bulbasaur can be seen napping in bright sunlight. There is a seed on its back. By soaking up the sun's rays, the seed grows progressively larger.", | |
"ydescription": "Bulbasaur can be seen napping in bright sunlight. There is a seed on its back. By soaking up the sun's rays, the seed grows progressively larger.", | |
"height": "2' 04\"", | |
"category": "Seed", | |
"weight": "15.2 lbs", |