345 private links
There are blogging platform on Gemini://
- SmollPub
- Tildeverse
- Tilde.pink
- Tilde.town
- Gemcities
- Self-hosting, see https://kevinboone.me/gemini_vps.html while learning from https://html-chunder.neocities.org/posts/self-hosting-a-gemini-capsule/
There are many structure available to build such gemini sites.
Because there are text limitations, Gemini favorises ASCII art.
Gemini doesn't have anything like PHP or server-side JavaScript, but it does support old-school CGI (Common Gateway Interface) scripting. Instead of serving a static .gmi file, your server runs a script and pipes what it prints to stdout back to the client as the response.
The author shares many gemini links
Of course
Considering that veganism is one of the most ethical and sustainable ways of sharing this planet with other living beings
All we need to do is look at what food can be eaten by most people.
If you’re a bystander, occasionally ask about vegan options. This helps: It raises awareness that there are people who do not want anyone to suffer or die for them, and it may prompt places to look into providing such options.
I spend a lot of time fighting against social injustice. It’s important to fight back against bad things, like it’s important to remove weeds. But it’s just as important—maybe even more so—to plant the seeds you do want to grow, so they can crowd out the shit you don’t want.
In native gardening, the most effective way to prevent unwanted plants (aka weeds) from growing is to crowd them out with plants you do want.
As Dungeon Crawler Carl always says, “you can’t save everyone.” But the seeds you plant now spread, faster and farther than you might imagine.
HEIF Heist is Hacktron's name for a class of remote attack paths targeting services that decode attacker-controlled HEIF, HEIC, or AVIF images. By exploiting underlying native libraries, these vulnerabilities allow an attacker to bypass application-level defenses and trigger memory corruption, data exposure, or remote code execution (RCE).
Running your own business also means you need to do marketing and finance and sales and business development. In the US, it means paying for healthcare completely out-of-pocket. That shit is expensive AF!
Where AI Actually Helps (With Clear Constraints)
I’m not saying never use AI. As I’ve written before, AI excels at automating the boring parts—and there’s nothing wrong with that.
But the key word is constraints. The successful uses I’ve seen have something in common:
The human sets the theory, and the AI executes within it.
Partie 9 de https://shaarli.lyokolux.space/shaare/m7Dh5g
Cette fois ci, le confinement n'a pas aidé.
Enfin un job plaisant, mais le salaire est limitant.
La partie 7 de https://shaarli.lyokolux.space/shaare/m7Dh5g
Partie 6 de https://shaarli.lyokolux.space/shaare/m7Dh5g
Partie 5 de https://shaarli.lyokolux.space/shaare/m7Dh5g
Les SSII ne donnent toujours pas envie.
AEGIS serait donc meilleur qu'AES.
IL existe plusieurs implémentations: https://github.com/cfrg/draft-irtf-cfrg-aegis-aead/blob/main/README.md
It's difficult to transition from beginner to expert. The documentation are often not meant for the mid, and the export often forget the confusion they experienced as beginners.
The author shows that writing about problems you struggled to solve (especially failures and confusing documentation) helps others find answers and helps experts identify gaps in their explanations. Even if the solution seems trivial in hindsight, the difficulty of finding it is valuable information: if one person struggled, many others likely will too.
Selon l'auteur, les discours alarmistes des entreprises d'IA sur les risques existentiels seraient surtout une stratégie de lobbying et de marketing:
- obtenir des régulations qui limiteraient la concurrence, notamment étrangère et celle des nouveaux entrants ;
- faire reconnaître ces entreprises comme stratégiques, afin qu'elles bénéficient implicitement d'un status de "too big to fail" et d'un éventuel soutien du public.
Ces alertes servent davantage les intérêts économiques et politiques des entreprises d’IA qu’elles ne reflètent un danger réel pour l’humanité.
L’affaire ravive le souvenir du scandale des lasagnes à la viande de cheval, mis à jour en 2013. À l’époque, le trafic impliquait un abattoir roumain, un trader néerlandais et un industriel français. « En réalité, il y a eu de nombreuses autres affaires en Europe, depuis. Le problème est systémique car la fraude est lucrative : plutôt que de payer pour envoyer un cheval à l’équarrissage, on le vend en le faisant entrer dans la chaîne alimentaire », dénonce Ingrid Kragl, directrice de l’information de l’association Foodwatch.
Avant une éventuelle substitution avec d’autres viandes, le premier risque pour les consommateurs est d’avoir mangé de la viande issue d’animaux impropres à la consommation, car farcis de médicaments.
Le point commun à toutes ces affaires est la falsification des documents de suivi des animaux, afin de permettre le passage en abattoir.
Ainsi que d'insérer une même puce dans le cou de plusieurs chevaux.
Solutions to align the icons with the text:
- the
lhunit intranslateY - icon as pseudo-elements
The author solution:
.list-item {
display: flex;
gap: 0.5rem;
}
.list-item::before {
content: "";
--size: var(--icon-size);
--offset: calc((1lh - var(--size)) / 2);
flex-shrink: 0;
aspect-ratio: 1;
width: var(--size);
height: auto;
background-image: url("data:image/svg+xml,%3Csvg ....");
background-size: contain;
background-repeat: no-repeat;
transform: translateY(var(--offset));
}