294 private links
Short but well explained. Hell of these 4 arguments. There are true !
TL;DR; a lot
- unit values + math results
- unitless numerical values
- non-numerical thinfs (string, keyword that properties recognize)
- content strings
- images
- shorthand
- list
- colors
...
Having the tabs of a webbrowser into the filesystem !
Seems to be a funny experiment for now.
This gives you a ton of power, because now you can apply all the existing tools on your computer that already know how to deal with files -- terminal commands, scripting languages, point-and-click explorers, etc -- and use them to control and communicate with your browser.
Et l'article reprend des failles de sécurité dans les plugins de Wordpress, qui a engendré des problèmes pour des centaines de milliers de sites. La plus grande vulnérabilité sur Wordpress, cela reste bien ses plugins et leur absence de mise à jour.
Alors pourquoi utiliser Wordpress ?
Un CMS s'est plutôt fait pour ne pas faire de développement, bien que dans le cas d'un CMS comme WordPress on puisse développer son propre plugin. C'est adapté si le client final veut modifier lui-même le contenu ou pour un site vitrine.
A markdown file that I sync between phone and PC and view in the android app “Markor”, with the following format:
2021 January
- [ ] Start an exercise habit
- [ ] Meditate 30min 6 times
- [ ] Figure out python asyncio
- [ ] Buy new table
2020 December
- [X] Just survive 2020
- [ ] Start an exercise habit
Key points:
- I add as many months as I care to plan ahead for
- Of course a headers like “2021” or “2021 January-March” are possible as well
- The lists contain (optional) checkboxes, so I can see what worked and what didn’t
- If I care enough, I carry over failed items into the next month
- Sometimes I write additional paragraphs to detail my plans or break down why a plan failed
- I add memorable photos to get a sense of progress, continuity and gratitude when I scroll through the file
idée: Créer comme Netflix, un abonnement mensuel pour avoir accès à des ebooks en illimité ?
A faire tourner pour démystifier le chiffrement :)
Sur la contradiction des propos de l'État face à ces actes: soutenir la souveraineté numérique d'un côté et de l'autre, passer un max de contrat avec les GAFAMs.
Example of morse and UTF-8 decoder, word counter, coroutine and generators, and a unicode-case folding state machine
A great list of tools. A majority of them are written in Rust 😄
So much cool informations about kernel interfaces and docker:
- Docker is basically built on top of kernel namespaces,
- On Unix systems, every processes information is stored inside
/proc - Control the resources used through /sys/fs/cgroup interface (cgroup → control group)
- Inside each dir of cgroup, there is a docker directory ! These directories contain informations for each container.
Wow it is great to know the basics of the container under the hood !
😮
cat toto.txt | sort | uniq > pas-de-doublons.txt
to
cat toto.txt | awk '!x[$0]++' > pas-de-doublons.txtLa ligne FROM scratch dans un dockerfile indique que l'image est construite à partir d'aucune dépendance. Elle nous permet de construire des images de base.
.calendar {
display: grid;
grid-template-columns: repeat(7, 1fr);
}
.first-day {
grid-column-start: 3;
}
<div class="calendar-wrapper">
<h1>Decemeber</h1>
<ul class="calendar">
<li class="weekday">Sun</li>
<li class="weekday">Mon</li>
<li class="weekday">Tue</li>
<li class="weekday">Wed</li>
<li class="weekday">Thu</li>
<li class="weekday">Fri</li>
<li class="weekday">Sat</li>
<li class="first-day">1</li>
<li>2</li>
<li>3</li>
<!-- ... -->
<li>29</li>
<li>30</li>
<li>31</li>
</ul>
</div>
(via https://warriordudimanche.net/article1443/5fea073b4eaa9)
Yep, c'est beau et pratique. La simplicité d'utilisation est là !
Selectors: * [attribute] > ~ +
With the part two about pseudo -classes and elements selectors. Examples used in development are explained 👍

