"Standards are always out of date. That’s what makes them standards"
|
—
Alan Bennett,
Author
|
|
|
|
|
A curated list of papers for Software Engineers, open source... on GitHub of course! Why should you care? Because you can learn tons of cool stuff about the history of computing, how the main data structures work or even how Bitcoin and DynamoDB work behind the scenes.
|
|
|
|
Hooks are reusable functions. They allow you to use state and other features (e.g. lifecycle methods and so on) without writing a class. You have probably seen useState and useEffect, but how much do you know about useReducer, useRef, useImperativeHandle, useMemo, and useCallback?
|
|
|
|
This is a very specific Rust article, but it explore a topic that is extremely interesting even if you have been using async/await in languages such as JavaScript, Python or C#. There's no better way to understand how async/await works than looking under the hood and seeing how an async executor is made!
|
|
|
|
îles (self-proclaimed as "The Joyful Site Generator"), is a new static site generator that implements the island architecture (made famous by Astro) and supports partial hydration. It has out of the box for some of the most common frontend frameworks such as Preact, VueJS, Svelte, and even SolidJS!
|
|
|
|
Some great Serverless production tips from Yan Cui, long-time serverless expert, and AWS Hero. Do you want a teaser? What about observability, using multiple AWS accounts, and loading data securely?
|
|
|
|
Tauri is a new framework that aims to replace Electron, offering a much more lightweight runtime built in Rust. In this article you can learn how to leverage Tauri with Rust on the backend and SolidJS on the frontend to build very performant desktop applications.
|
|
|
|
Some of the most misunderstood features of JavaScript are the functions call, apply and bind. If you have been confused by these topics in the past, this article provides an excellent explanation and a bunch of very good examples!
|
|
|
|