···1010highlight_code = true
11111212# Whether to build a search index to be used later on by a JavaScript library
1313-build_search_index = false
1414-generate_rss = false
1313+build_search_index = true
1414+generate_rss = true
15151616check_external_links = true
17171818taxonomies = [
1919- {name = "tags", rss = true}
1919+ {name = "categories", rss = true},
2020+ {name = "tags", rss = true},
2021]
21222222-theme = "sam"
2323+theme = "after-dark"
23242425[extra]
2526# Put all your custom variables here
2626-sam_menu = [
2727- { text = "posts", link = "/posts" },
2828- { text = "about", link = "/about" },
2929- { text = "projects", link = "/projects" }
2727+after_dark_menu = [
2828+ { name = "posts", url = "$BASE_URL" },
2929+ { name = "about me", url = "$BASE_URL/info/about" },
3030+ { name = "projects", url = "$BASE_URL/info/projects" },
3031]
-17
content/about.md
···11-+++
22-title = "about"
33-44-[extra]
55-no_header = true
66-+++
77-88-Hello. This is where I post about my stuff.
99-Feel free to send me an e-mail or DM on Discord / Matrix if you have anything to ask.
1010-1111-Contacts:
1212-- Discord: arcadsuy#7447
1313-- Matrix: @yusdacra:feneas.org
1414-- E-Mail: y.bera003.06@pm.me
1515----
1616-- Gitlab: <https://gitlab.com/yusdacra>
1717-- Github: <https://github.com/yusdacra>
···11++++
22+title = "about me"
33++++
44+55+Hello. This is where I post about my stuff.
66+Feel free to send me an e-mail or DM on Discord / Matrix (i prefer Matrix) if you have anything to ask.
77+88++ Contact:
99+ - Matrix: @yusdacra:matrix.org
1010+ - Discord: arcadsuy#7447
1111+ - E-Mail: y.bera003.06@pm.me
1212+ - GitLab: <https://gitlab.com/yusdacra>
1313+ - GitHub: <https://github.com/yusdacra>
1414+1515+## Bio
1616+I mainly work with Rust and Dart (with Flutter). My main areas of interest are
1717+embedded, operating systems and game development, although I'm open to
1818+anything else as well. I also work with C++ (mostly for Arduino),
1919+GDScript (for Godot Engine), Kotlin (for my application's native Android
2020+needs that Flutter can't satisfy). I have worked with C# and Unity
2121+for about 5 years.
2222+2323++ I mainly use a NixOS system, you can find all my configurations here:
2424+ - [My personal configuration files.](https://gitlab.com/yusdacra/nixos-config)
2525+ - [Repo where I keep reusable configuration and packages.](https://gitlab.com/yusdacra/nix-exprs)
2626+2727+I also use Fedora from time to time.
+40
content/info/projects.md
···11++++
22+title = "projects"
33++++
44+55+## Projects I maintain
66+- [Hakkero OS](https://gitlab.com/hakkero-os/hakkero)
77+ - Learning project to create a micro-kernel that runs on x86, arm and risc-v.
88+ - Current goal is to support webassembly and be able to run everything in ring 0, thanks to it's sandboxing features.
99+1010+- [Neonment](https://gitlab.com/yusdacra/neonment)
1111+ - Neonment is a first person hero shooter. Name is subject to change.
1212+1313+- [treeculler](https://gitlab.com/yusdacra/treeculler)
1414+ - A Rust crate for working with frustum and occlusion culling.
1515+1616+- [bevy_networking_delivery](https://gitlab.com/yusdacra/bevy_prototype_networking_delivery)
1717+ - A Rust crate for Bevy game engine that implements a simple `Delivery` based networking layer.
1818+1919+- [kIDE](https://gitlab.com/yusdacra/kide)
2020+ - Opinionated configuration for kakoune text editor, focusing on an IDE-like experience.
2121+2222+- [FlutterEnhancements](https://github.com/yusdacra/FlutterEnhancements)
2323+ - Basic Flutter support for Sublime Text 3.
2424+2525+----
2626+2727+## Projects I contribute(d) to
2828+- [Veloren](https://gitlab.com/veloren/veloren) and it's [Book](https://gitlab.com/veloren/book)
2929+ - Veloren is a multiplayer voxel RPG written in Rust.
3030+ - 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.
3131+3232+- [iced](https://github.com/hecrj/iced)
3333+ - A cross-platform GUI library for Rust, inspired by Elm.
3434+3535+- [nixpkgs](https://github.com/NixOS/nixpkgs)
3636+ - The Nix Packages collection for the [Nix package manager](https://github.com/NixOS/nix).
3737+ - Packaging contributions.
3838+3939+- [Nihonoari](https://github.com/aeri/Nihonoari-App)
4040+ - A little and minimalist Flutter application for Japanese Kana training.
···11-+++
22-title = "projects"
33-44-[extra]
55-no_header = true
66-+++
77-88-### Neonment
99-Neonment is a first person hero shooter. Name is subject to change. WIP.
1010-1111-<https://gitlab.com/yusdacra/neonment>
1212-1313-### treeculler
1414-A Rust crate for working with frustum and occlusion culling. WIP.
1515-1616-<https://gitlab.com/yusdacra/treeculler>
1717-1818-### Hakkero OS
1919-Learning project, implementation of <https://os.phil-opp.com/>.
2020-2121-<https://gitlab.com/hakkero-os/hakkero>