initial to gitea

This commit is contained in:
2025-02-23 10:43:08 +07:00
commit d6e3946296
183 changed files with 22627 additions and 0 deletions

16
.vscode/codeblock.code-snippets vendored Normal file
View File

@@ -0,0 +1,16 @@
{
"DocuCodeBlock": {
"prefix": "codeblock",
"description": "Checks if the rocket is stable and prevents a crash if it's not.",
"body": [
"```${1:javascript:main.js} showLineNumbers {${2:3-4}}",
"function isRocketAboutToCrash() {",
" // Check if the rocket is stable",
" if (!isStable()) {",
" NoCrash(); // Prevent the crash",
" }",
"}",
"```",
],
}
}