How to create a secure password that you can remember
Creating a secure password that you can remember is easier than you think. Here you can find some tips on how to do it.
Read articleArticles about web development
Creating a secure password that you can remember is easier than you think. Here you can find some tips on how to do it.
Read articleI've published an open source event tracking engine. It includes a gamification engine that will let you easily integrate any user engagement scheme into your applications.
Read articleFirestore rules gives us a powerful way to secure our Firebase database. Rules allows us to control who has access to each document to create, read, write or delete it.
Read articleAuthenticate a user using Firebase. Once the user is authenticated using Svelte we can redirect the user to an admin section or a public section based on the user's permissions
Read articleSvelte and Firebase is a template you can use to start developing fast, secure and modern web applications in no time. User management, firestore rules, cloud functions, routing... All the tools you need ready to be used.
Read articleIf you've never heard of GatsbyJS it's an amazing static website generator that will help you to create progressive web apps using the JAM Stack. Don't let the word static website generator confuse you. With GatsbyJS you can generate really interactive websites leveraging the power of React and GraphQL.
Read articleRequesting developers to do a test code is a common practice. But it's rude and it makes you look like an amateur recruiter.
Read articleA few weeks ago I wrote an article about how to use Higher Order Components with Apollo client. Now that we have Apollo components let's refactor that code and see how it can be improved.
Read articleI'm going to talk about a metric that I've created that serves me as a warning signal to detect if a react component is doing too much stuff.
Read articleHigher Order Components is a useful pattern that has a lot of uses to make your React code easy to read and maintain. In this post I'm going to explain how to use Higher Order Components, HOC from now on, to keep your code DRY.
Read articleThis weird error took me a while to debug and in the end it had a very simple solution. Error message: PromiseRejectionHandledWarning: Promise rejection was handled asynchronously. Solution: I was sending an integer when a param of type string was expected.
Read articleMy React Native app was working without problems on iOS but when I started expo to run the app on my android phone I had this weird graphql error: Unhandled (in react-apollo:Apollo )
Read articleI had a really weird problem today deploying to production using mup. After deployment the docker container was reseting itself every 30 seconds or so. After inspecting the container I was able to trace it to two node packages: bcrypt and unicode.
Read articleAs soon as an activity was modified on the server the client was updated but new activities although were inserted correctly in the database were not updated on the client.
Read articleDebugging Meteor is easier since Meteor 1.0.2 Now we can use a console similar to the one we have available on the client. You just need to write meteor shell and all the power of a server-side console is available to you.
Read article