data endpoint for entity 90008 (aka. a website)

update stuff

+3 -3
.gitmodules
···
-
[submodule "themes/sam"]
-
path = themes/sam
-
url = https://github.com/janbaudisch/zola-sam.git
+
[submodule "themes/after-dark"]
+
path = themes/after-dark
+
url = https://github.com/yusdacra/after-dark.git
+9 -8
config.toml
···
highlight_code = true
# Whether to build a search index to be used later on by a JavaScript library
-
build_search_index = false
-
generate_rss = false
+
build_search_index = true
+
generate_rss = true
check_external_links = true
taxonomies = [
-
{name = "tags", rss = true}
+
{name = "categories", rss = true},
+
{name = "tags", rss = true},
]
-
theme = "sam"
+
theme = "after-dark"
[extra]
# Put all your custom variables here
-
sam_menu = [
-
{ text = "posts", link = "/posts" },
-
{ text = "about", link = "/about" },
-
{ text = "projects", link = "/projects" }
+
after_dark_menu = [
+
{ name = "posts", url = "$BASE_URL" },
+
{ name = "about me", url = "$BASE_URL/info/about" },
+
{ name = "projects", url = "$BASE_URL/info/projects" },
]
-17
content/about.md
···
-
+++
-
title = "about"
-
-
[extra]
-
no_header = true
-
+++
-
-
Hello. This is where I post about my stuff.
-
Feel free to send me an e-mail or DM on Discord / Matrix if you have anything to ask.
-
-
Contacts:
-
- Discord: arcadsuy#7447
-
- Matrix: @yusdacra:feneas.org
-
- E-Mail: y.bera003.06@pm.me
-
---
-
- Gitlab: <https://gitlab.com/yusdacra>
-
- Github: <https://github.com/yusdacra>
+2
content/info/_index.md
···
+
+++
+
+++
+27
content/info/about.md
···
+
+++
+
title = "about me"
+
+++
+
+
Hello. This is where I post about my stuff.
+
Feel free to send me an e-mail or DM on Discord / Matrix (i prefer Matrix) if you have anything to ask.
+
+
+ Contact:
+
- Matrix: @yusdacra:matrix.org
+
- Discord: arcadsuy#7447
+
- E-Mail: y.bera003.06@pm.me
+
- GitLab: <https://gitlab.com/yusdacra>
+
- GitHub: <https://github.com/yusdacra>
+
+
## Bio
+
I mainly work with Rust and Dart (with Flutter). My main areas of interest are
+
embedded, operating systems and game development, although I'm open to
+
anything else as well. I also work with C++ (mostly for Arduino),
+
GDScript (for Godot Engine), Kotlin (for my application's native Android
+
needs that Flutter can't satisfy). I have worked with C# and Unity
+
for about 5 years.
+
+
+ I mainly use a NixOS system, you can find all my configurations here:
+
- [My personal configuration files.](https://gitlab.com/yusdacra/nixos-config)
+
- [Repo where I keep reusable configuration and packages.](https://gitlab.com/yusdacra/nix-exprs)
+
+
I also use Fedora from time to time.
+40
content/info/projects.md
···
+
+++
+
title = "projects"
+
+++
+
+
## Projects I maintain
+
- [Hakkero OS](https://gitlab.com/hakkero-os/hakkero)
+
- Learning project to create a micro-kernel that runs on x86, arm and risc-v.
+
- Current goal is to support webassembly and be able to run everything in ring 0, thanks to it's sandboxing features.
+
+
- [Neonment](https://gitlab.com/yusdacra/neonment)
+
- Neonment is a first person hero shooter. Name is subject to change.
+
+
- [treeculler](https://gitlab.com/yusdacra/treeculler)
+
- A Rust crate for working with frustum and occlusion culling.
+
+
- [bevy_networking_delivery](https://gitlab.com/yusdacra/bevy_prototype_networking_delivery)
+
- A Rust crate for Bevy game engine that implements a simple `Delivery` based networking layer.
+
+
- [kIDE](https://gitlab.com/yusdacra/kide)
+
- Opinionated configuration for kakoune text editor, focusing on an IDE-like experience.
+
+
- [FlutterEnhancements](https://github.com/yusdacra/FlutterEnhancements)
+
- Basic Flutter support for Sublime Text 3.
+
+
----
+
+
## Projects I contribute(d) to
+
- [Veloren](https://gitlab.com/veloren/veloren) and it's [Book](https://gitlab.com/veloren/book)
+
- Veloren is a multiplayer voxel RPG written in Rust.
+
- My main contributions are for rendering and UI. Also maintaining build files for the Nix package manager and the Turkish translation. And added some guides to the book.
+
+
- [iced](https://github.com/hecrj/iced)
+
- A cross-platform GUI library for Rust, inspired by Elm.
+
+
- [nixpkgs](https://github.com/NixOS/nixpkgs)
+
- The Nix Packages collection for the [Nix package manager](https://github.com/NixOS/nix).
+
- Packaging contributions.
+
+
- [Nihonoari](https://github.com/aeri/Nihonoari-App)
+
- A little and minimalist Flutter application for Japanese Kana training.
+1
content/posts/_index.md content/_index.md
···
+++
title = "posts"
+
paginate_by = 5
+++
-21
content/projects.md
···
-
+++
-
title = "projects"
-
-
[extra]
-
no_header = true
-
+++
-
-
### Neonment
-
Neonment is a first person hero shooter. Name is subject to change. WIP.
-
-
<https://gitlab.com/yusdacra/neonment>
-
-
### treeculler
-
A Rust crate for working with frustum and occlusion culling. WIP.
-
-
<https://gitlab.com/yusdacra/treeculler>
-
-
### Hakkero OS
-
Learning project, implementation of <https://os.phil-opp.com/>.
-
-
<https://gitlab.com/hakkero-os/hakkero>