This commit is contained in:
Edgar 2024-02-13 10:04:21 +01:00
parent aae1a638cb
commit 33b7e86514
No known key found for this signature in database
GPG key ID: 70ADAE8F35904387
4 changed files with 35 additions and 4 deletions

25
content/misc.md Normal file
View file

@ -0,0 +1,25 @@
+++
title = "Miscellaneous Stuff"
template_page = "page.html"
+++
This page lists miscellaneous stuff I found or like, such as links, opinions, etc.
## External Links
### Rust
- [Writing an OS in Rust](https://os.phil-opp.com/)
### Software Philosophy
- [Why Open Source Misses the Point of Free Software](https://www.gnu.org/philosophy/open-source-misses-the-point.en.html)
- [Copyleft: Pragmatic Idealism](https://www.gnu.org/philosophy/pragmatic.en.html)
- [How To Become A Hacker](http://www.catb.org/~esr/faqs/hacker-howto.html)
### Interesting projects
#### Games
- [DDraceNetwork](https://github.com/ddnet/ddnet)
#### Rendering / GPU
- [ZLUDA](https://github.com/vosen/ZLUDA)

View file

@ -205,9 +205,10 @@ ul {
margin-bottom: 10px;
}
h1,h2,h3 {
border-bottom: 4px $color solid;
h1,h2 {
border-bottom: 2px $color solid;
border-bottom-color: #FFAA00;
margin-bottom: 1rem;
}
table {

View file

@ -39,6 +39,11 @@
>Projects</a
>
</li>
<li>
<a href="/misc" title="Miscellaneous stuff"
>Misc</a
>
</li>
<li>
<a href="https://github.com/edg-l" title="My GitHub profile"
>GitHub</a
@ -50,7 +55,7 @@
{% block content %} {% endblock %}
</section>
<section class="section container" style="border-top: 4px #FFAA00 solid">
<section class="section container" style="border-top: 2px #FFAA00 solid">
<p>Copyright &copy; 2019-2024 Edgar Luque</p>
<p>This page is licensed under a <a href="https://creativecommons.org/licenses/by-nd/4.0/">Creative Commons Attribution-NoDerivatives 4.0 International License</a>.</p>
</section>

View file

@ -20,7 +20,7 @@
<p class="blog-date"><strong><time datetime="{{ page.date }}">{{ page.date }}</time></strong></p>
<p class="blog-date">
{% for category in page.taxonomies["categories"] %}
<a class="category-link capitalize" href="{{ get_taxonomy_url(kind="categories", name=category) | safe }}">{{ category }}</a>
<a class="category-link capitalize" href="{{ get_taxonomy_url(kind="categories", name=category) | safe }}"><i>{{ category }}</i></a>
{% endfor %}</p>
{{ page.content | safe }}
</article>