TK
  • Home
  • Projects
  • Work
  • Articles

My take on software development, design, and more!

I hope you'll find them useful

May 18, 2024/General

Effective code review practices and tips

Conducting a code review is an essential part of the software development process, ensuring code quality, improving security, and fostering a collaborative team environment.

April 18, 2024/Docker

Copy database backup file from localhost to docker container

One of the most common tasks when working with Docker containers is copying files from the local host to a running container.

January 14, 2024/CSS

Why we shouldn't use <div> in React JS

Overuse of <div> elements, often referred to as "divitis," can clutter your codebase and hinder its readability.

December 12, 2023/CSS

Understanding let, const, and var: Best Practices and Use Cases

Choosing the right type of variable declaration—let, const, or var—can significantly impact your code's readability, maintainability, and functionality. Let's explore the differences and when to use each one effectively.