commit 55c7df590418999d96c5cb64852b93f7e848fc2c Author: Kevin Trogant Date: Wed Jan 4 13:37:41 2023 +0100 setup the site layout diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..51edd47 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "themes/gokarna"] + path = themes/gokarna + url = https://github.com/526avijitgupta/gokarna.git diff --git a/archetypes/default.md b/archetypes/default.md new file mode 100644 index 0000000..00e77bd --- /dev/null +++ b/archetypes/default.md @@ -0,0 +1,6 @@ +--- +title: "{{ replace .Name "-" " " | title }}" +date: {{ .Date }} +draft: true +--- + diff --git a/config.toml b/config.toml new file mode 100644 index 0000000..250492c --- /dev/null +++ b/config.toml @@ -0,0 +1,50 @@ +baseURL = 'http://recreational.tech/' +languageCode = 'en-us' +defaultContentLanguage = 'en' +title = 'recreational.tech' + +# Find the documentation at: https://gokarna-hugo.netlify.app/posts/theme-documentation-basics + +theme = 'gokarna' + +enableRobotsTXT = true + +[params] + socialIcons = [ + {name = "twitter", url = "https://twitter.com/GreenFoxLight"}, + {name = "linkedin", url = "https://www.linkedin.com/in/kevin-trogant-232124224/"} + ] + +[menu] + [[menu.main]] + identifier = 'posts' + url = '/posts/' + pre = '' + post = '' + name = 'Posts' + weight = 1 + + [[menu.main]] + identifier = 'about' + url = '/about/' + name = 'About' + weight = 2 + + [[menu.main]] + identifier = 'projects' + url = '/projects/' + name = 'Projects' + weight = 3 + + [[menu.main]] + identifier = 'git' + url = 'https://libneat.hopto.org/git' + weight = 4 + pre = "" + + [[menu.main]] + identifier = 'github' + url = 'https://github.com/GreenFoxLight' + weight = 5 + # feather-icons: feathericons.com + pre = "" \ No newline at end of file diff --git a/content/_index.md b/content/_index.md new file mode 100644 index 0000000..78a69d6 --- /dev/null +++ b/content/_index.md @@ -0,0 +1,9 @@ +--- +title: "" +date: 2023-01-04T09:59:49+01:00 +draft: false +--- + +*Kevin Trogant* + +**Programming** | **3D Graphics** | **Sailing** | **Tabletop RPGs** diff --git a/content/about.md b/content/about.md new file mode 100644 index 0000000..97365dd --- /dev/null +++ b/content/about.md @@ -0,0 +1,11 @@ +--- +title: "About" +date: 2023-01-04T10:09:32+01:00 +draft: false +--- + +I study computer science at Humboldt-Universität in Berlin, Germany. +Professionally, i work as a business analyst at an international fintech company. +My interest in 3d graphics and game development comes from years of gaming and a desire to understand how complex systems work. + +Aside from programming and gaming, i enjoy sailing, playing various instruments and tabletop rpgs. diff --git a/content/posts/first_post.md b/content/posts/first_post.md new file mode 100644 index 0000000..93219ae --- /dev/null +++ b/content/posts/first_post.md @@ -0,0 +1,6 @@ +--- +title: "First_post" +date: 2023-01-04T09:39:51+01:00 +draft: true +--- + diff --git a/content/projects.md b/content/projects.md new file mode 100644 index 0000000..b471cd4 --- /dev/null +++ b/content/projects.md @@ -0,0 +1,29 @@ +--- +title: "Projects" +date: 2023-01-04T10:18:30+01:00 +draft: false +--- + +You can find the source code for some of these projects at [gitea](https://libneat.hopto.org/git). + +# NVR + +A VR engine intended for a series of fantasy games. +Because of a shift in focus, i recently began a rewrite of this from scratch, but it is based on a previous engine called n2. + +# buildbot + +Born out of dissatisfaction with existing CI tools compatible with gitea - mainly because of complicated configuration. +This is my attempt at building a very simple CI tool that does exactly what i need. + +# Fantasy Heist + +A multiplayer stealth-dungeon-crawler, built using the awesome Godot Engine together with another developer. +The project is currently on hold, but the idea might be re-used at some point. + +![A very early stage screenshot of Fantasy Heist.](/fantasy_heist.png) + +# GPU Algorithm for Dynamic Time Warping + +My bachelor thesis delt with implementing an GPU algorithm for time series comparison. +A paper describing the implementation was published at the [PARS-Workshop 2019](https://fg-pars.gi.de/veranstaltung/pars-workshop-2019). diff --git a/static/fantasy_heist.png b/static/fantasy_heist.png new file mode 100644 index 0000000..f12a69e Binary files /dev/null and b/static/fantasy_heist.png differ diff --git a/themes/gokarna b/themes/gokarna new file mode 160000 index 0000000..42e0feb --- /dev/null +++ b/themes/gokarna @@ -0,0 +1 @@ +Subproject commit 42e0feba8b1da46c90cbdcbfdf38e09ee39a5e74