Codeminer42's Engineering Blog

Posts

  • First steps through the Flutter framework

    · 16 min read · by Moises Alonso

    If you are somewhat familiar with mobile development, you have probably heard about Flutter, an open-source framework developed and maintained by Google for building natively compiled, multi-platform applications from a…

  • Using Docker to instantiate local databases

    · 7 min read · by Pedro Ramos

    From tutorials to enterprise-level software, knowing how to set up a local database instance is a mandatory skill. You’ve probably had to go through tons of installers to instantiate databases…

  • An approach to routing testing in React

    · 7 min read · by Leonardo Gabriel

    In React applications, there are many ways for testing routing behavior in our components. You might find solutions on the internet, but they probably will depend exclusively on your current…

  • CodeTips#3: How Specificity works in CSS

    · 3 min read · by Matheus Hahn

    When working on web apps, at some point, you will need to overwrite styles from components to which you have no access to the CSS source code, or maybe you…

  • CodeTips#2: Clean code in JavaScript

    · 6 min read · by Rafael Pierri

    INTRODUCTION INTRODUCTION I believe the comic strip above sums it well: You write clean code mainly to understand yourself in the future. Not only that, you write clean code as…