vault backup: 2025-10-17 20:39:42

This commit is contained in:
2025-10-17 20:39:42 +02:00
parent bc88732dea
commit dfcd08f048
9 changed files with 3934 additions and 9 deletions

View File

@ -1 +1,5 @@
{} {
"cssTheme": "Minimal",
"theme": "system",
"baseFontSize": 21
}

View File

@ -0,0 +1,8 @@
{
"name": "Minimal",
"version": "8.0.4",
"minAppVersion": "1.9.0",
"author": "@kepano",
"authorUrl": "https://twitter.com/kepano",
"fundingUrl": "https://www.buymeacoffee.com/kepano"
}

2251
.obsidian/themes/Minimal/theme.css vendored Normal file

File diff suppressed because one or more lines are too long

7
.obsidian/themes/Things/manifest.json vendored Normal file
View File

@ -0,0 +1,7 @@
{
"name": "Things",
"version": "2.1.20",
"minAppVersion": "1.0.0",
"author": "@colineckert",
"authorUrl": "https://twitter.com/colineckert"
}

1628
.obsidian/themes/Things/theme.css vendored Normal file

File diff suppressed because it is too large Load Diff

View File

@ -13,15 +13,30 @@
"state": { "state": {
"type": "markdown", "type": "markdown",
"state": { "state": {
"file": "README.md.md", "file": "README.md",
"mode": "preview", "mode": "preview",
"source": false "source": false
}, },
"icon": "lucide-file", "icon": "lucide-file",
"title": "README.md" "title": "README"
}
},
{
"id": "8993418c0d52e2c6",
"type": "leaf",
"state": {
"type": "markdown",
"state": {
"file": "Coding Game.md",
"mode": "source",
"source": false
},
"icon": "lucide-file",
"title": "Coding Game"
} }
} }
] ],
"currentTab": 1
} }
], ],
"direction": "vertical" "direction": "vertical"
@ -170,10 +185,11 @@
"obsidian-git:Open Git source control": false "obsidian-git:Open Git source control": false
} }
}, },
"active": "7f87c033dfaa09b9", "active": "8993418c0d52e2c6",
"lastOpenFiles": [ "lastOpenFiles": [
"README.md",
"Coding Game.md",
"Game Development.md", "Game Development.md",
"README.md.md",
"level1.md" "level1.md"
] ]
} }

11
Coding Game.md Normal file
View File

@ -0,0 +1,11 @@
In this file I describe key concepts about the game where a person could learn programming and do some interesting stuff by coding.
## Motivation
The game is designed to encourage children and teenagers primarily to start learning how to code and dive deeper into IT branch. It supposed to be a start-point for every person new to IT where he can decide which niche he would like to learn, study and work in.
Another point and target by starting developing this game was to fulfill childhood dream of developing game where people mainly do something I really love to do every single day and never get bored - to code.
## Future and Possible Applications
As of now (10/2025) the game is planned to have two modes. The first mode is game plot - a story in which the player is being introduced to key concepts of programming and it's possible uses in our lives. The player is supposed to get familiar with different parts of IT like hacking, software engineering, network administration and trying to use them and apparently combine some of them together in order to complete specific game tasks and improving player's level and experience.
The second mode is a cooperative mode. It allows to have competitions or knowledge transfers between multiple users. As of now this mode is seen to be split in 2 sub-modes - competitions as championships and cooperation as for example class with students and teacher where they are supposed to learn programming concepts by visualizing those concepts and interacting with them and during the interaction also understand real-world usages of such concepts. Championships could be beneficial for sharing experiences or even starting to collect your portfolio.

3
README.md Normal file
View File

@ -0,0 +1,3 @@
# Coding Game with custom Engine
This repository is designed as documentation for unnamed game engine that is used for coding game development. Apart from it the repository also contains ideas and design sketches for the game itself.

View File

@ -1,3 +0,0 @@
# Coding Game with custom Engine
Introduction