data endpoint for entity 90008 (aka. a website)
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

update stuff

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