How to Redesign Your Github PageI haven't updated my GitHub page for a while and decided to give it a new look. It turned out to be very simple, and it's good if you want your profile to stand out from the millions of others. Also, sometimes recruiters and HR professionals can find...Mar 15, 2023·3 min read
How to Add TypeScript to Existing Next.js ProjectIt is becoming increasingly common to use TypeScript with JavaScript frameworks such as React, Vue or Express. I have my personal website built on Next.js which is a framework for building React applications with nice features such as server-side ren...Feb 16, 2023·3 min read
ChatGPT Is Still Not Good EnoughSome people have told me that they fear that ChatGPT (and AI in general) will take over the developer's jobs. I honestly do not see how this can happen (at least in the next 5-10 years) and I believe that AI tools are only tools that can help develop...Feb 9, 2023·3 min read
How to Find Large Files in an AWS S3 Bucket Using Command Line InterfaceUsing one simple commandJan 20, 2023·2 min read
What Is PHP CS Fixer and How It Can Help You Keep Your Code CleanerWhat is PHP CS Fixer PHP CS Fixer stands for PHP Coding Standards Fixer. This is a tool that fixes your code to follow standards. There are various PHP coding standards that you can follow, such as the popular PSR-1, and PSR-12 published by the PHP ...May 5, 2022·3 min read
What Are Idempotent HTTP Methods?Idempotent HTTP methods An idempotent HTTP method is a method that can be called multiple times with the same input and produce the same result, without changing the state of the server. Idempotency essentially means that the result of a successfull...Apr 25, 2022·1 min read
The Difference Between Design Patterns and Design PrinciplesDesign patterns and design principles are both important concepts in software engineering, but they refer to different things. Design Patterns Design Patterns are techniques for how to design and architect your code. They are reusable low-level solut...Apr 11, 2022·3 min read