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

Configure Feed

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

Initial

+123
+5
.gitattributes
··· 1 + ############################################################################### 2 + # Set default behavior to automatically normalize line endings. 3 + ############################################################################### 4 + * text=auto 5 +
+1
.gitignore
··· 1 + public
+18
.gitlab-ci.yml
··· 1 + image: alpine:edge 2 + 3 + variables: 4 + GIT_SUBMODULE_STRATEGY: recursive 5 + 6 + before_script: 7 + - apk add --no-cache -X http://dl-cdn.alpinelinux.org/alpine/edge/testing zola 8 + 9 + pages: 10 + stage: deploy 11 + script: 12 + - zola build 13 + artifacts: 14 + paths: 15 + - public 16 + only: 17 + - master 18 +
+3
.gitmodules
··· 1 + [submodule "themes/sam"] 2 + path = themes/sam 3 + url = https://github.com/janbaudisch/zola-sam.git
+24
LICENSE
··· 1 + This is free and unencumbered software released into the public domain. 2 + 3 + Anyone is free to copy, modify, publish, use, compile, sell, or 4 + distribute this software, either in source code form or as a compiled 5 + binary, for any purpose, commercial or non-commercial, and by any 6 + means. 7 + 8 + In jurisdictions that recognize copyright laws, the author or authors 9 + of this software dedicate any and all copyright interest in the 10 + software to the public domain. We make this dedication for the benefit 11 + of the public at large and to the detriment of our heirs and 12 + successors. We intend this dedication to be an overt act of 13 + relinquishment in perpetuity of all present and future rights to this 14 + software under copyright law. 15 + 16 + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 17 + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 18 + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 19 + IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR 20 + OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, 21 + ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 22 + OTHER DEALINGS IN THE SOFTWARE. 23 + 24 + For more information, please refer to <https://unlicense.org>
+1
README.md
··· 1 + My website
+30
config.toml
··· 1 + # The URL the site will be built for 2 + base_url = "https://yusdacra.gitlab.io" 3 + title = "yusdacra's stuff" 4 + 5 + # Whether to automatically compile all Sass files in the sass directory 6 + compile_sass = true 7 + 8 + # Whether to do syntax highlighting 9 + # Theme can be customised by setting the `highlight_theme` variable to a theme supported by Zola 10 + highlight_code = true 11 + 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 15 + 16 + check_external_links = true 17 + 18 + taxonomies = [ 19 + {name = "tags", rss = true} 20 + ] 21 + 22 + theme = "sam" 23 + 24 + [extra] 25 + # Put all your custom variables here 26 + sam_menu = [ 27 + { text = "posts", link = "/posts" }, 28 + { text = "about", link = "/about" }, 29 + { text = "projects", link = "/projects" } 30 + ]
+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: yusdacra#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>
+3
content/posts/_index.md
··· 1 + +++ 2 + title = "posts" 3 + +++
+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>