294 private links
VoLTE permet de faire passer les appels téléphone par donnée mobile pour avoir un appel de meilleur qualité.
Le futur serais donc de tous passer en données mobiles ?
Maybe the submarine bought by Autralia is directly linked for this decision. The data may have leaked this way.
Start an instance of excalidraw in the browser. It allows to draw like a canvas but with the background of the web page instead. Useful !
Here for firefox: https://addons.mozilla.org/en-US/firefox/addon/scrawly/
Sur la panne du 4 octobre 2021
Un problème de routage dans l'AS, empêchant les paquets d'arriver, peut également empêcher les serveurs DNS de répondre.
Avec en lien proposé un article technique de Cloudflare (en): https://blog.cloudflare.com/october-2021-facebook-outage/
Des témoignages à propos de la relation entre employés, entreprises et actionnaires. L'entreprise privilégie toujours les actionnaires.
Tous les sacrifices sur le temps de travail, les conditions de travail ou la rémunération, vous ne les faites pas pour le collectif. Vous les faites au bénéfice des actionnaires et uniquement au leur.
Il s'agit aussi de se comporter en professionel.
TODAY IS THE DAY THAT ALL OF US WHO KEPT THEIR BLOGS RUNNING ARE ONCE AGAIN THE RULERS OF THE INTERNET WELCOME BACK MY CHILDREN
following the Facebook's breakdown of the 4th October.
Une liste d'article insolite sur Wikipedia
To let the animation to the GPU in practice: will-change: transform.
will-change is a property that allows us to hint to the browser that we're going to animate the selected element, and that it should optimize for this case.
A lot of important notions about animations with the transition property!
There is a @media (prefers-reduced-motion: reduce) too.
👍
How to disappear from Google searches:
<meta name="googlebot" content="noindex">
Exemple d'utilisation de BORG
Ok :) On top of HTTP, the model is actually simple.
Retour d'utilisation
This is an example x)
A Google-skin CV
Firefox: How to provide less informations of our users to websites ?
Chrome: Provides more information!: Let's introduce an API that detect if the user is active on the page...
Programming languages are not really just lines of text. Diffs from two different changes to a source file are not necessarily composable, even if there are no overlapping changes. Program code has syntax, and this syntax is knowable, even in the case of the most dynamic of languages (such as those with configurable readers such as Common Lisp). A source file, if it isn't broken, represents a particular structured object, an abstract syntax tree.
We should be able to leverage this.
Research has shown that the ideal line length is about 65 characters. Anywhere between 45 and 85 is generally seen as acceptable, in the context of a roman alphabet.
The solution:
.wrapper {
display: grid;
grid-template-columns:
1fr
min(65ch, 100%)
1fr;
}
.wrapper > * {
grid-column: 2;
}
.full-bleed {
width: 100%;
grid-column: 1 / 4;
}
ch is a unit, like px or rem. It corresponds to the width of the 0 character in the current font, for the specified font size.
Exact:
Quand on utilise les attributs « data-* », JS le récupère toujours sous la forme d’une chaîne de caractères, même si ça contient un nombre.
De ArthurHoaro:
Non. Ça c’est le genre de tricks qui marchent, mais qui rendent le code illisible. Il suffit d'utiliser parseInt(div.dataset.nb) puisque oui, dans le DOM, tout est chaînes de caractères.