357 private links
A venn diagramm of the fediverse:
- Furries
- Computer Science
- Hackers
- Furries + Computer Science = Musicians
- Computer Science + Hackers = Computer Art
- Hackers + Furries = LGBTQI+
- LGBTQI+ + Computer Art + Musicians = Demoscene
Automerge is a local-first sync engine for multiplayer apps that works offline, prevents conflicts, and runs fast.
T-1's congested due to porn traffic to the news server.
Always porn traffic or DDoS.
A collection of background effects.
The term was coined to explain a deliberate process where you write software quickly to gain knowledge
"If you discover a better way to do things, the old way of doing it that is embedded in your code base is now “debt”:
- you can either live with the debt, “paying interest” in the form of all the ways that it makes your code harder to work with;
- or you can “pay down” the debt by fixing all the code in light of your new knowledge, which takes up front resources which could have been spent on something else, but hopefully will make sense in the long term.
Technical debt isn’t just bad code—it represents the lessons you’ve learned about how to build software better. Refactoring isn’t “paying off a debt,” but investing in applying that knowledge. Ignoring it wastes what you’ve learned and, over time, leads to lost value and competitive disadvantage compared to those who actively improve their code.
Can I really say “we now know” that the existing code is inferior? Is it true that fixing the code is “investing my knowledge”?
RSS feeds for arbitrary websites, using CSS selectors.
So the project generates RSS feeds and populate items in it from CSS selectors. It can definitely be useful.
There is no safeguard for malicious plugin updates.
and plugins are one key feature of Obsidian: "Users stayed for the amazing selection of plugins, themes, and the community built around it."
A minimalistic UI and a minimal page weight
An HTML and CSS only version of the search engine.
Du numérique et de pleins d'autres sujets: https://shaarli.zoemp.be/tags/cloud
Similaire à shaarli, où chaque lien est un moyen de se connecter avec d'autres ayant partagé le même lien.
Les liens peuvent évidemment être groupés, classés,
Ainsi, par ces "carnets", "fils", "fiches" sont autant de moyen de rentrer en contact avec d'autres.
J'ai l'impression d'avoir déjà vu ce genre de projet en 2019-2020. Celui ci semble plus abouti.
Les conseils départementaux de l'accès au droit (CDAD) sont des groupements d'intérêt public qui définissent et mettent en œuvre la politique publique de l'accès au droit dans leur département respectif. I
Une alternative à Docker: pas de deamon, sans privilège root, support des standards OCI comme Docker, intégré avec systemd et une API http.
Podman gère plusieurs conteneurs comme docker compose
Le projet est disponible sur Github https://github.com/containers/podman
vault is a desktop app to collect and organize links, notes, and images. it’s open source, private, and everything is stored locally.
It's an alternative to shaarli and obsidian
Everything in one place: Organizations, contacts, projects, and how they relate.
Own your data: Plain text files and tooling that runs on your machine.
Open data model: Tailor to your business with custom schemas.
Automate anything: Search, report, integrate, whatever. It's just code.
AI-ready: LLMs can read, write, and query your business structure.
PostgresSQL if the service needs close to 99.999% availability, or more than 1 Gpbs of bandwidth or if the database is expected to grow larger than 100-200GB.
256GB means the SQLite DB can fit in RAM, or the migration will be too slow for the sqlite file and block the service.
It's important to note that with the advent of DuckDB, Parquet and Apache Iceberg, tehre are less and less reasons to stuff your main DB with timeseries data and instead only keep some kind of materialized view and send the raw data to S3.
For everything else, SQLite.
- Feature complete. Features do not need to be added.
- It is secure.
- No maintenance needed (can broke while
Implications: if build tools change, then we may not be able to modify our software. If hardware, platforms, interpreters or external APIs change, the software may stop working. That's the implication.
Examples of finished software:
- The Nintendo Gameboy
- Job Sheet Manager
- A multitude of embedded systems (DVD player, ...)
- Some small JS apps and libraries
How to make them?
- Understand the requirements. There must be a definition of done.
- Keep scope small and fixed
- Reduce dependencies
- Produce static output
- Increase quality assurance: don't fix bugs - avoid them