update bookmarks, add fediring

This commit is contained in:
Norman Köhring 2025-03-08 13:23:45 +01:00
parent 3c718d98cf
commit 60261a3c6a
9 changed files with 43 additions and 3 deletions

View file

@ -32,7 +32,7 @@ const templatePrefix = `---
.date = @date("2024-07-16T00:00:00"),
.author = "koehr",
.draft = false,
.layout = "page.html",
.layout = "page.shtml",
.description = "Websites that inspired me, that I think are worth reading, useful and I don't want to forget about.",
.tags = [],
}

File diff suppressed because one or more lines are too long

View file

@ -16,6 +16,15 @@ This page is intended to be generated as part of the build step in the future, b
---
* [Crossing the uncanny valley of conversational voice](https://www.sesame.com/research/crossing_the_uncanny_valley_of_voice#demo) - At Sesame, our goal is to achieve “voice presence”—the magical quality that makes spoken interactions feel real, understood, and valued.
[#tts](https://url.koehr.ing/bookmarks/shared?q=%23tts) [#voice](https://url.koehr.ing/bookmarks/shared?q=%23voice)
* [PocketBase - Open Source backend in 1 file](https://pocketbase.io/) - Open Source backend in 1 file with realtime database, authentication, file storage and admin dashboard
[#webdev](https://url.koehr.ing/bookmarks/shared?q=%23webdev) [#webapp](https://url.koehr.ing/bookmarks/shared?q=%23webapp) [#application-server](https://url.koehr.ing/bookmarks/shared?q=%23application-server)
* [Welcome to TrailBase | TrailBase](https://trailbase.io/) - A blazingly fast, open-source, single-executable, featureful backend.
[#webdev](https://url.koehr.ing/bookmarks/shared?q=%23webdev) [#webapp](https://url.koehr.ing/bookmarks/shared?q=%23webapp) [#application-server](https://url.koehr.ing/bookmarks/shared?q=%23application-server)
* [About Ideas Now | Search 1000s of personal sites](https://aboutideasnow.com/?q=kagi) - Find people to collaborate with by searching through the /about, /ideas and /now pages of 1000s of personal sites
[#personal](https://url.koehr.ing/bookmarks/shared?q=%23personal) [#web](https://url.koehr.ing/bookmarks/shared?q=%23web) [#search](https://url.koehr.ing/bookmarks/shared?q=%23search) [#smallweb](https://url.koehr.ing/bookmarks/shared?q=%23smallweb)

View file

@ -65,6 +65,11 @@
</div>
<footer>
<a href="#intro">back to top</a>
<div class="fediring">
<a href="https://fediring.net/previous?host=koehr.ing">←</a>
<a href="https://fediring.net/">Fediring</a>
<a href="https://fediring.net/next?host=koehr.ing">→</a>
</div>
</footer>
</main>

View file

@ -135,6 +135,15 @@ body>main>header {
padding: 2em 0;
}
body>main>footer {
display: flex;
flex-flow: column nowrap;
justify-content: space-between;
align-items: center;
gap: .5rem;
margin: 3rem 0 0;
}
a {
color: var(--page-link-color);
}

3
update-bookmarks.sh Executable file
View file

@ -0,0 +1,3 @@
curl https://url.koehr.ing/api/bookmarks/shared/ > ./content/bookmarks.json
deno run --allow-read ./bookmarks_json2smd.ts > ./content/bookmarks.smd
git diff ./content/bookmarks.smd

File diff suppressed because one or more lines are too long

View file

@ -102,6 +102,11 @@
</div>
<footer>
<a href="#intro">back to top</a>
<div class="fediring">
<a href="https://fediring.net/previous?host=koehr.ing"></a>
<a href="https://fediring.net/">Fediring</a>
<a href="https://fediring.net/next?host=koehr.ing"></a>
</div>
</footer>
</main>

View file

@ -135,6 +135,15 @@ body>main>header {
padding: 2em 0;
}
body>main>footer {
display: flex;
flex-flow: column nowrap;
justify-content: space-between;
align-items: center;
gap: .5rem;
margin: 3rem 0 0;
}
a {
color: var(--page-link-color);
}