update stuff
This commit is contained in:
parent
c623c1f86c
commit
f16a153af8
6
.gitmodules
vendored
6
.gitmodules
vendored
@ -1,3 +1,3 @@
|
|||||||
[submodule "themes/sam"]
|
[submodule "themes/after-dark"]
|
||||||
path = themes/sam
|
path = themes/after-dark
|
||||||
url = https://github.com/janbaudisch/zola-sam.git
|
url = https://github.com/yusdacra/after-dark.git
|
||||||
|
17
config.toml
17
config.toml
@ -10,21 +10,22 @@ compile_sass = true
|
|||||||
highlight_code = true
|
highlight_code = true
|
||||||
|
|
||||||
# Whether to build a search index to be used later on by a JavaScript library
|
# Whether to build a search index to be used later on by a JavaScript library
|
||||||
build_search_index = false
|
build_search_index = true
|
||||||
generate_rss = false
|
generate_rss = true
|
||||||
|
|
||||||
check_external_links = true
|
check_external_links = true
|
||||||
|
|
||||||
taxonomies = [
|
taxonomies = [
|
||||||
{name = "tags", rss = true}
|
{name = "categories", rss = true},
|
||||||
|
{name = "tags", rss = true},
|
||||||
]
|
]
|
||||||
|
|
||||||
theme = "sam"
|
theme = "after-dark"
|
||||||
|
|
||||||
[extra]
|
[extra]
|
||||||
# Put all your custom variables here
|
# Put all your custom variables here
|
||||||
sam_menu = [
|
after_dark_menu = [
|
||||||
{ text = "posts", link = "/posts" },
|
{ name = "posts", url = "$BASE_URL" },
|
||||||
{ text = "about", link = "/about" },
|
{ name = "about me", url = "$BASE_URL/info/about" },
|
||||||
{ text = "projects", link = "/projects" }
|
{ name = "projects", url = "$BASE_URL/info/projects" },
|
||||||
]
|
]
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
+++
|
+++
|
||||||
title = "posts"
|
title = "posts"
|
||||||
|
paginate_by = 5
|
||||||
+++
|
+++
|
@ -1,17 +0,0 @@
|
|||||||
+++
|
|
||||||
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
Normal file
2
content/info/_index.md
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
+++
|
||||||
|
+++
|
27
content/info/about.md
Normal file
27
content/info/about.md
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
+++
|
||||||
|
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
Normal file
40
content/info/projects.md
Normal file
@ -0,0 +1,40 @@
|
|||||||
|
+++
|
||||||
|
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,21 +0,0 @@
|
|||||||
+++
|
|
||||||
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>
|
|
1
themes/after-dark
Submodule
1
themes/after-dark
Submodule
@ -0,0 +1 @@
|
|||||||
|
Subproject commit a84f503545efbf6d5d79f0595bc8c6262c530d93
|
@ -1 +0,0 @@
|
|||||||
Subproject commit 55cc63ae5dff78351cd8835606915e3a4f6af169
|
|
Loading…
Reference in New Issue
Block a user