Transfer links over from data.js

This commit is contained in:
jultty 2024-08-18 15:19:50 -03:00
commit 5a83b66d77
17 changed files with 88 additions and 10 deletions

View file

@ -0,0 +1,6 @@
+++
title = "JFryy/qq: jq multi-configuration format tool with interactive REPL."
date = 2024-06-23
[extra]
url = "https://github.com/JFryy/qq/"
+++

View file

@ -0,0 +1,6 @@
+++
title = "jgs font - Adel Faure"
date = 2024-07-02
[extra]
url = "https://adelfaure.net/tools/jgs/"
+++

View file

@ -0,0 +1,6 @@
+++
title = "Capital Offense How to Handle Abbreviations in CamelCase - Approxion"
date = 2024-06-05
[extra]
url = "https://www.approxion.com/capital-offenses-how-to-handle-abbreviations-in-camelcase/"
+++

View file

@ -0,0 +1,6 @@
+++
title = "aryak/mozhi: Mozhi is an alternative-frontend for many translation engines. - Codeberg.org"
date = 2024-06-27
[extra]
url = "https://codeberg.org/aryak/mozhi"
+++

View file

@ -0,0 +1,6 @@
+++
title = "Differential Analysis: A Summary"
date = 2024-06-28
[extra]
url = "https://blog.brownplt.org/2024/06/27/differential-analysis.html"
+++

View file

@ -0,0 +1,6 @@
+++
title = "Effects Showroom - TerminalTextEffects Docs"
date = 2024-06-10
[extra]
url = "https://chrisbuilds.github.io/terminaltexteffects/showroom/"
+++

View file

@ -0,0 +1,6 @@
+++
title = "phyphox | F-Droid - Free and Open Source Android App Repository"
date = 2024-06-21
[extra]
url = "https://f-droid.org/packages/de.rwth_aachen.phyphox/"
+++

View file

@ -0,0 +1,6 @@
+++
title = "Share Paste O2 | F-Droid - Free and Open Source Android App Repository"
date = 2024-06-08
[extra]
url = "https://f-droid.org/en/packages/alt.nainapps.sharepaste.fdroid/"
+++

View file

@ -0,0 +1,6 @@
+++
title = "UserLAnd | F-Droid - Free and Open Source Android App Repository"
date = 2024-06-21
[extra]
url = "https://f-droid.org/en/packages/tech.ula/"
+++

View file

@ -0,0 +1,6 @@
+++
title = "hackerb9/lsix Like ls, but for images. Shows thumbnails in terminal using sixel graphics."
date = 2024-06-06
[extra]
url = "https://github.com/hackerb9/lsix"
+++

View file

@ -4,5 +4,3 @@ date = 2024-08-06
[extra] [extra]
url = "https://github.com/mrusme/reader" url = "https://github.com/mrusme/reader"
+++ +++
Happy to see *any* tool that reduces having to open a browser.

View file

@ -1,8 +0,0 @@
+++
title = "mrusme/reader: pra sua linha de comando o que o 'readability view' é para navegadores"
date = 2024-08-06
[extra]
url = "https://github.com/mrusme/reader"
+++
Bom ver *qualquer* ferramenta que evita precisar abrir um navegador.

View file

@ -0,0 +1,6 @@
+++
title = "A handful of reasons JavaScript wont be available - Piccalilli"
date = 2024-08-01
[extra]
url = "https://piccalil.li/blog/a-handful-of-reasons-javascript-wont-be-available/"
+++

6
content/links/piku.md Normal file
View file

@ -0,0 +1,6 @@
+++
title = "Piku"
date = 2024-06-10
[extra]
url = "https://piku.github.io/"
+++

View file

@ -0,0 +1,6 @@
+++
title = "Sounds of the Forest - Soundmap Timber Festival"
date = 2024-06-14
[extra]
url = "https://timberfestival.org.uk/soundsoftheforest-soundmap/"
+++

View file

@ -0,0 +1,6 @@
+++
title = "Moving Beyond Type Systems | Vhyrro's Digital Garden"
date = 2024-06-06
[extra]
url = "https://vhyrro.github.io/posts/effect-systems/"
+++

View file

@ -9,7 +9,11 @@
<ul id="posts"> <ul id="posts">
{% for page in english_section.pages %} {% for page in english_section.pages %}
<li> <li>
{% if page.content %}
<a class="post-date" href="{{ page.permalink }}">{{ page.date }}</a> <a class="post-date" href="{{ page.permalink }}">{{ page.date }}</a>
{% else %}
<span class="post-date">{{ page.date }}</a>
{% endif %}
<a href="{{ page.extra.url | safe }}">{{ page.title }}</a> <a href="{{ page.extra.url | safe }}">{{ page.title }}</a>
{% if page.content %} {% if page.content %}
{% set portuguese_page = get_page(path="links/" ~ page.slug ~ ".pt.md") %} {% set portuguese_page = get_page(path="links/" ~ page.slug ~ ".pt.md") %}