345 private links
Signal is currently experiencing an outage. As a result, users are unable to send or receive messages.
AWS has issue and many services on the Internet depends on it. Snapchat and Canva are also impacted.
Why Piccalilli: I’m going to side with an independent publisher every single time.
video just isn’t the water we developers swim in every day. Far as I’m concerned, learning JavaScript hinges on being able to try stuff out for yourself: copy a snippet of code, chuck it into your dev console, see what happens; move a semicolon to see how it breaks.
How a beginner should make websites? Learn to write good HTML. Learn the medium instead of the tooling (raw JS instead of a framework).
That excites Mat Marquis about the web? The comeback of web brutalism, small web, etc...
https://strange.website/
https://www.weatherishappening.com/
https://solar.lowtechmagazine.com/
https://scott.is/
The problem with that is, if everything is highlighted, nothing stands out.
Broken syntax should not be highlighted too. So Tonsky recommends to
Highlight names and constants. Grey out punctuation. Don’t highlight language keywords.
and because developers are not payed to the line of code anymore, "Comments should be highlighted, not hidden away."
Many developers prefer the dark mode because the dark mode can have less vibrant colors.
I suspect that the only reason we don’t see more restrained color themes is that people never really thought about it.
le modèle même des solutions cloud assujetties au droit extraterritorial américain est structurellement incompatible avec le droit européen et la sauvegarde de nos intérêts économiques et stratégiques.
En migrant vers l'écosystème Microsoft, Polytechnique s'exposait frontalement au droit extraterritorial américain - Cloud Act et FISA en tête - transformant de facto les données de la recherche française en gibier potentiel pour les services de renseignement d'outre-Atlantique. Plus embarrassant encore : cette migration contrevenait explicitement à l'article L123-4-1 du Code de l'éducation, qui impose l'usage prioritaire des logiciels libres dans l'enseignement supérieur.
To help:
Do mutual aid
Post on your local Buy Nothing project group what you can offer
Join Food Not Bombs
Start a Free Pantry: reach out to local grocery stores and ask if you can take the stuff they're about to throw out.
L’eugénisme est « l’ensemble des méthodes et pratiques visant à sélectionner le patrimoine génétique de l’espèce humaine. Il peut être le fruit d’une politique délibérément menée par un État et contraire à la dignité humaine. Il peut aussi être le résultat collectif d’une somme de décisions individuelles convergentes prises par les futurs parents, dans une société où primerait la recherche de l’« enfant parfait »
A work to use rust build as PHP extension
It's not available in Firefox yet.
The poisonous tumour installed in my brain by a decade of reading about Silicon Valley always thinks 'this is a business that can never scale' and it's like well yes that is the fucking point actual
In short, I am now trying really hard to spend my money in ways that I hope will affect and improve the world around me both for myself and for others. None of us can do it alone. But I think there is hope if we do it together.
I haven't been talked down to by anybody else who is also making their own gentle change. The same way that you rarely get shit on by somebody doing better than you at anything.
- Link and button states
- color modes
- variables
- any kind of state
- viewport sizes
- anything scrolling or mouse movement related
- variable content
- units & math
- animations & transitions
- device specific details (touch screens, low-bandwidth situations)
- media handling
The issue isn’t that people asked for faster horses. It’s that “What do you want?” is a terrible research question.
Ask these instead:
- What’s frustrating about traveling with your horse?
- Tell me about the last time you needed to go somewhere far away.
- What stops you from traveling more often?
- How does weather affect your trips?
Good research uncovers problems. It reveals pain points. It helps you understand what people are actually struggling with in their daily lives. What they’re working around. What they’ve given up on entirely.
Here’s the irony: the same people who quote Henry Ford to avoid user research are now using AI to build products faster than ever.
How to understand users?
- ask about the past, not the future
- focus on behavior, not opinions.
- dig into the why
- listen for emotion
Misconceptions:
- only blind people use screen readers
- people use screen readers in the same way
- all screen readers work in the same way
- building a screen reader specific version of a website or app is a good idea
- screen reader users don't care about images
- screen reader users need instructions on all content
- all content must be focusable to work with screen readers
The overlays for accessibility are often wrong.
But the real pattern is more disturbing. Our research found:
- AI-generated code contains 322% more security vulnerabilities
- 45% of all AI-generated code has exploitable flaws
- Junior developers using AI cause damage 4x faster than without it
- 70% of hiring managers trust AI output more than junior developer code
The physics of software collapse:
- Modern software is built on towers of abstractions, each one making development "easier" while adding overhead. Each layer adds only 20-30% but it compounds a handful and the overhead becomes 2-6x for the same behavior.
- Energy is not infinite
- More money goes to infrastructure to support the grow. GAFAM are spending 30% of revenue on infrastructure (historically 12.5%).
- Senior developers won't exists if one can never be junior for a start
Shifting the priorities:
- when is a calculator leaking 32GB normal?
- why do we trust AI-generated code more than junior developers?
- how many abstraction layers are actually necessary?
- what happens when we can't buy our way out anymore?
The author describes a path forward and describe each points:
- Accept that quality matters more than velocity.
- Measure actual resource usage, not features shipped.
- Make efficiency a promotion criterion.
- Stop hiding behind abstractions.
- Tech fundamental engineering principales again.
Le sentiment d'injustice est encore alimenté par le fait que la part de l'héritage dans le patrimoine ne cesse d'augmenter : aujourd'hui cette part est de 60% alors que dans les années 1970, c'était 35%.
L'héritage reste pour les Français chargé symboliquement. C'est rarement juste des euros ou une maison, l'héritage renvoie souvent au travail de toute une vie, à des sacrifices des générations précédentes.
L'idée serait donc de taxer les plus gros héritages, notamment ceux qui parviennent à contourner l'impôt, via des systèmes d'optimisation fiscale, de donations, d'assurances vie ou des holdings patrimoniales. Reste à savoir où mettre le curseur car, aujourd'hui, la plupart des héritages - en tout cas pour les transmissions directes - bénéficient d'un abattement de 100 000 euros. De fait, 85% des héritages ne sont pas imposés.
Note: "The key insight is that loading massive files into memory all at once is rarely a good idea, even when technically possible."
- Read the whole file and call it a day with
fs.readFile - Read by byte chunks with file handles and buffers
- (preferred) Use stream
The streams handle the bytes and UTF-8 encoding automatically. Each state can be defined with a callback: error, data, end.
Use appropriate buffer sizes for streams. Default is 64kB. The highWaterMark can adjust it though.
When to use streams: large files, real time data processing, memory is limited, composability, unknown file sizes.
When to use file handles: precise control.
When to use fs/promises: known small files. readFileSync() and writeFileSync() are acceptable for cli tools and scripts, but forbidden for web servers and concurrent apps.
Prefer Promise.all or Promise.allSettled to leverage concurrency.
Handle specific errors. Always. await handle.close() or stream.on('error', () => stream.destroy()). Another solution is await pipeline(source, transform, destinationl)