Tag: geek

  • Techniques to Optimize MySQL: Indexes, Slow Queries, Configuration

    Many web developers see MySQL as the world’s most popular relational database. However, at some points, you will find many parts haven’t been optimized. However, instead of investigating it further, many people prefer to leave it at default values. As a solution, we have to combine the previous tips with new method that came out…

  • Ways to Make your Apps Serverless

    The rise of a new buzzword has made many people think that servers no longer exist, but the fact is, a server is still needed somewhere. This is why the “serverless” term may mislead many people. What makes “serverless” term is that you can successfully build your applications without deploying code to your own servers.…

  • Json-api-normalizer: Why JSON API and Redux Work Best When Used Together

    As a web developer, we have to manage the data needed for every application we work on. There are problems when doing so, such as: Fetch data from the back end. Store it somewhere locally in the front-end application. Retrieve the data from the local store and format it as needed by the specific view…