diff --git a/content/misc.md b/content/misc.md new file mode 100644 index 0000000..75ffe1a --- /dev/null +++ b/content/misc.md @@ -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) diff --git a/sass/style.scss b/sass/style.scss index 6ee5710..f75ee72 100644 --- a/sass/style.scss +++ b/sass/style.scss @@ -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 { diff --git a/templates/base.html b/templates/base.html index 8a032e9..e7083bd 100644 --- a/templates/base.html +++ b/templates/base.html @@ -39,6 +39,11 @@ >Projects +
Copyright © 2019-2024 Edgar Luque
This page is licensed under a Creative Commons Attribution-NoDerivatives 4.0 International License.
{% for category in page.taxonomies["categories"] %} -{{ category }} +{{ category }} {% endfor %}
{{ page.content | safe }}