Published on may 10, 2023 at Hackernoon
One of the most interesting feature of blockchain projects is that we don't need to trust anyone anymore. There are no intermediaries between us and the blockchain. When we need to transfer blockchain money or use any DeFi service, it's us…
Published on may 17, 2020 at Medium
Out of curiosity, I have visited the websites of the most popular UI frameworks today to create web apps (Vue, React & Angular) and they were there: Starring... Components. They are already extended among libraries as an important part of modern…
Published on april 21, 2020 at dev.to
In the last year, I followed the trend in the industry, and I changed the way I test my React components from using Enzyme to embrace Testing Library. The change has been for good! Now my tests are now more concise, clear and meaningful. They are…
Published on march 28, 2020 at Medium
I keep working on creating a driver for the web version of Animated, that runs the animations in the GPU. Using all the methods I described in that article I could move some of the animations to the GPU, but there was a common issue to all the…
Published on april 10, 2019 at LogRocket blog
React Native for Web is one of the most amazing ideas I’ve stumbled upon in a while. For UI developers, it makes a longtime dream a reality: the ability to create an application that runs on both phones and browsers with just one codebase. The path…
Published on march 21, 2019 at Medium
I am trying to move the animations in react-native-web to the GPU. Two days ago I had a vague idea of what was the graph about. I knew that I had to link the nodes and traverse it in order to create the animations, but the example we have in that…
Published on march 17, 2019 at Medium
Creating a native driver for react-native-web? Browsers don’t have a native side.
True. In this case, what we want is to make the JS implementation of Animated to run in the GPU when possible. In react-native, we just need to add useNativeDriver…
Published on january 16, 2019 at Bits and Pieces
Let’s talk about user interactions with the UI, specifically about mobile ones: Dragging, swapping, pinching gestures are natural in mobile apps nowadays. It’s not trivial to handle them well, but they really make UIs outstand when done right.
Published on may 02, 2018 at Passpill Project
I have created projects using React and Preact successfully and, after having a look at Inferno, I really wanted to give it a try. Its source code is really easy to read and understand, and even if it’s not as lightweight as Preact, Inferno is still…
Published on march 16, 2018 at Passpill Project
They are coming! You can see them in the Node.js documentation and also in the new brand Webpack 4. But… what did you said are those .mjs files for?
.mjs an extension for EcmaScript modules
Modules are the way we have in JavaScript to split our code…
Published on march 12, 2018 at Passpill Project
Nowadays there are lots of cool online services that allow you to express yourself or create almost anything that may come to your mind. Many of them are apparently free, the only thing you need to give away for using them is your personal…
Published on february 24, 2018 at Passpill Project
We are going to build a password manager called PassPill. The starting point is going to be a web app, you can try PassPill right now if you run your own server.
Published on february 24, 2018 at Passpill Project
PassPill Project is an educational experiment that aims to share the complete development of a web app.
We are going to build a secure password manager called PassPill. And from that development we will be extracting a nice collection of articles…