How (and why) to use useEffect's cleanup - Intervals
Using setInterval with useEffect can be confusing. Often they will overlap, or use stale data. We can prevent this by properly clearing the intervals inside useEffect's cleanup function.
Using setInterval with useEffect can be confusing. Often they will overlap, or use stale data. We can prevent this by properly clearing the intervals inside useEffect's cleanup function.
What the greatest sources of waste in modern agile development teams? Fede shared his perspective in Agiles 2021. This post is a brief summary of it.
Croquet.io es una tecnología de sincronización de eventos, ideada para crear software colaborativo y en tiempo real. Actualmente el proyecto se enfoca en una librería de javascript (que se lanzó en septiembre de 2021). Pero previamente hubo versiones en Smalltalk.
¿Qué tan difícil resultaría hacer un programa que cuente colaboraciones de un método? En Smalltalk, no tan difícil.
Hoy en día seguimos discutiendo la ganancia de generar nuestra propia librería de componentes de UI. Sin embargo, son estas las abstracciones que hacen que ciertos aspectos cobren el protagonismo que merecen; como por ejemplo: la accesibilidad de nuestras aplicaciones.
Previously, on “Machine Learning for everybody”, we talked about what machine learning is and why it’s nice to have. In this episode we’ll ramble on about how a computer can learn things, or rather how you may teach them.
–Señora mía, necesito tu favor –rezaba la función–. Mi sistema anda mal. Se cae todo el tiempo. Cada tanto nos visita algún programador, y se ve perdido en nuestro laberinto de confusión. ¿Qué se puede hacer? –Hija mía –dijo una voz antigua–. No estás sola. Solo estás confundida.
Inspired by the success of the series about the Chernobyl disaster, these are 10 lessons learnt from it so you too can make sure your project is a bomb.
How does the Virtual DOM work? And what is actually the DOM? If you ever have wondered about those questions, this post is for you.
The goal of this post isn't to analyze which framework is better, but to provide a set of tools and a couple of tips to ease the learning of a new framework In
Some time ago, in a talk, someone asked "What is software quality, what gives quality to software?". My immediate half-joking answer was "Software shouldn't get in my way, that's quality!
"Facebook is as much sociology and psychology as it is technology" - Mark Zuckerberg In my previous article, Unitary vs Integral Understanding, I delved into how we understand a part of
Introduction While thinking what I could write about, I remembered a distant sunny afternoon, back at the beginning of my professional experience. I left writings about what is now a possible future post
When I think about getting an upgrade I usually picture myself like this: But… as the time passes… I feel like Homer applying for the university, something like: Since in 10Pines we reached
Something that has always seemed motivating is the feeling that my way of doing things generally maintained good adaptability. Throughout my years of study at the University, and later in 10pines, I realized
There is an often unresolved question in software about comments and documentation. It is said that code should be "self-documenting", thus comments can be a sign of a lack of clarity in the code.