Code

Code

L'Europa ha scritto un algoritmo per decidere quanto un cloud è sovrano e sganciarsi dalle big tech. Ma è più facile a dirsi che a farsi
L'Europa ha scritto un algoritmo per decidere quanto un cloud è sovrano e sganciarsi dalle big tech. Ma è più facile a dirsi che a farsi
La Commissione ha stabilito 8 obiettivi per raggiungere l'indipendenza dai fornitori Usa. Ma ci sono ostacoli tecnologici che rischiano di far fallire l'operazione
Riuscirà un algoritmo a trovare la strada verso quel cloud “sovrano” che da anni l'Unione europea insegue, senza successo? A stabilirlo sarà l'esito
·wired.it·
L'Europa ha scritto un algoritmo per decidere quanto un cloud è sovrano e sganciarsi dalle big tech. Ma è più facile a dirsi che a farsi
I Built the Same App 10 Times: Evaluating Frameworks for Mobile Performance | Loren Stewart
I Built the Same App 10 Times: Evaluating Frameworks for Mobile Performance | Loren Stewart
I needed to choose a framework for a mobile-first app at work. I started comparing Next.js, SolidStart, and SvelteKit, then expanded to 10 frameworks. Here's what I discovered about bundle sizes, performance, and the real cost of framework choices.
Next-Gen Frameworks Deliver Instant Performance: Marko (39ms), SolidStart (35ms), SvelteKit (38ms), and Nuxt (38ms) all achieve essentially instant First Contentful Paint in the 35-39ms range. This is 12 to 13 times faster than Next.js at 467ms.
While site downtime causes 9% permanent user abandonment, slow performance causes 28% permanent abandonment. That’s over 3x worse. Even more revealing: slowdowns occur 10x more frequently than outages, resulting in roughly 2x total revenue impact despite lower per-hour costs
·lorenstew.art·
I Built the Same App 10 Times: Evaluating Frameworks for Mobile Performance | Loren Stewart
SQL Anti-Patterns You Should Avoid - by Jordan Goodman
SQL Anti-Patterns You Should Avoid - by Jordan Goodman
Introduction
One of the most common mistakes I’ve seen is developers using SELECT DISTINCT as a quick way to eliminate duplicates that appear after a bad join. It’s an easy fix, but it hides a deeper problem. Usually, the duplicates exist because the join condition is incomplete or the relationship between tables isn’t truly one-to-one
·datamethods.substack.com·
SQL Anti-Patterns You Should Avoid - by Jordan Goodman
The Complete Guide to the ELK Stack | Logz.io
The Complete Guide to the ELK Stack | Logz.io
The Logz.io authoritative guide to the ELK Stack that shows the best practices for installation, monitoring, logging and log analysis.
·logz.io·
The Complete Guide to the ELK Stack | Logz.io
What is "good taste" in software engineering?
What is "good taste" in software engineering?
--
Technical taste is different from technical skill. You can be technically strong but have bad taste, or technically weak with good taste. Like taste in general, technical taste sometimes runs ahead of your ability: just like you can tell good food from bad without being able to cook, you can know what kind of software you like before you’ve got the ability to build it. You can develop technical ability by study and repetition, but good taste is developed in a more mysterious way.
·seangoedecke.com·
What is "good taste" in software engineering?
shen.land
shen.land
about shen dot land, shen's personal website
·shen.land·
shen.land
Blog | parth sareen
Blog | parth sareen
Sampling and structured outputs are tied together as they both determine the model's next chosen token. Sampling is the process of selecting a token from the model's vocabulary based on the probability distribution.
·parthsareen.com·
Blog | parth sareen
Modello di architettura esagonale - AWS Guida prescrittiva
Modello di architettura esagonale - AWS Guida prescrittiva
Modello di modernizzazione che crea architetture liberamente accoppiate che isolano la logica aziendale dal codice dell'infrastruttura.
proposto dal Dr. Alistair Cockburn nel 2005. Mira a creare architetture liberamente accoppiate in cui i componenti delle applicazioni possano essere testati in modo indipendente, senza dipendenze da archivi di dati o interfacce utente
·docs.aws.amazon.com·
Modello di architettura esagonale - AWS Guida prescrittiva
Programming Deflation
Programming Deflation
When Code Gets Cheaper Every Day
·tidyfirst.substack.com·
Programming Deflation
Wanted to spy on my dog, ended up spying on TP-Link
Wanted to spy on my dog, ended up spying on TP-Link
I recently bought a cheap Tapo indoor camera to see what my dog gets up to when I am out of the house. What actually followed? I ended up reverse-engineering onboarding flows, decompiling an APK, MITMing TLS sessions, and writing cryptographic scripts.
·kennedn.com·
Wanted to spy on my dog, ended up spying on TP-Link
FAQs
FAQs
Preserving open source software for future generations
The GitHub Archive Program is a GitHub initiative to ensure that open source software is preserved for future generations. It includes both very-long-term storage such as the GitHub Arctic Code Vault and ongoing backups of public repositories by nonprofit organizations such as Software Heritage and the Internet Archive.
The “Greatest Hits” are archives of GitHub’s 17,000 most-popular and most-dependended-upon repositories, written to hardened film designed to last for 1,000 years, enclosed in beautiful museum-quality cases, and donated to three of the world’s great libraries, on three different continents.
·archiveprogram.github.com·
FAQs
Cache - Laravel 9.x - The PHP Framework For Web Artisans
Cache - Laravel 9.x - The PHP Framework For Web Artisans
Laravel is a PHP web application framework with expressive, elegant syntax. We’ve already laid the foundation — freeing you to create without sweating the small things.
use Illuminate\Support\Facades\Cache; 2  3$lock = Cache::lock('foo', 10); 4  5if ($lock->get()) { 6 // Lock acquired for 10 seconds... 7  8 $lock->release(); 9}
·laravel.com·
Cache - Laravel 9.x - The PHP Framework For Web Artisans
Use One Big Server
Use One Big Server
A lot of ink is spent on the "monoliths vs. microservices" debate, but the real issue behind this debate is about whether distributed system …
·specbranch.com·
Use One Big Server