mirror of
https://github.com/edg-l/edgarluque.com.git
synced 2024-11-09 09:38:23 +00:00
more
This commit is contained in:
parent
aae1a638cb
commit
33b7e86514
25
content/misc.md
Normal file
25
content/misc.md
Normal 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)
|
|
@ -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 {
|
||||
|
|
|
@ -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 © 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>
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue