Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mcwertgaming/mcwertgaming
personal profile readme
https://github.com/mcwertgaming/mcwertgaming
profile profile-readme skills skillset
Last synced: about 2 months ago
JSON representation
personal profile readme
- Host: GitHub
- URL: https://github.com/mcwertgaming/mcwertgaming
- Owner: MCWertGaming
- Created: 2020-11-28T16:46:42.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2022-06-22T20:24:33.000Z (over 2 years ago)
- Last Synced: 2023-03-03T22:12:13.619Z (almost 2 years ago)
- Topics: profile, profile-readme, skills, skillset
- Homepage: https://github.com/mcwertgaming
- Size: 28.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
```cpp
#include
#includenamespace Profile {
std::string welcome() {
return "Welcome to my profile!\n"
"I'm Damon and specializing in"
"Backend- + Desktop- + Game-development\n";
}
std::string skills() {
return "My skills:\n"
// programming languages
"C++, GO, C, Java, Javascript, Typescript\n"
// Frameworks
"GTest, Gin\n"
// Markup languages
"Markdown, HTML, CSS\n"
// DevOps
"Docker, Docker-compose, PostgreSQL, Kubernetes, SQl, MongoDB\n";
}
std::string projects() {
return "Projects I work on:"
"CPP-Terminal - A TUI library for the modern terminal: https://github.com/jupyter-xeus/cpp-terminal\n"
"Snek - A simple snake game for the terminal: https://github.com/BlackVyperStudios/snek\n"
"Puroto - Next generation social media for furries: https://puroto.net\n"
"MyFursona - A place for animals to live together: https://myfursona.art\n";
}
std::string social() {
return "Find me here:"
"Twitter: @staxthefox\n" "Github: @MCWertGaming\n" "Steam: @MCWertGaming\n"
"Blog: openfoxblog.leven.dev\n" "Website: damon.leven.dev\n";
}
}
int main() {
std::cout << Profile::welcome() << Profile::skills() << Profile::projects() << Profile::social();
return 0;
}
```