Jun 21, 2025 · 8 min read · What are coding standards ? Coding standards are a set of guidelines and best practices that software developers adhere to when writing code. These standards play a crucial role in maintaining code quality, readability, maintainability, and collabora...
Join discussion
Jun 7, 2025 · 4 min read · Clean Code is readable, maintainable, and understandable code that other developers, QA engineers, future team members, or the client who receives the project can easily understand. It improves the overall quality of the software, ensuring that it's ...
Join discussion
Nov 28, 2024 · 3 min read · As a Front End Developer, I want to share in this blog post how I established a common coding standard within the project and team, and the problems I encountered during this process. Code Development and Standards After developing our code, we alway...
Join discussionNov 19, 2024 · 2 min read · Front End Developer olarak çalışırken projede ve takım içinde ortak bir yazma standardını nasıl belirlediğimi ve bu süreçte yaşadığım sorunları bu blog yazısında paylaşmak istiyorum. Kod Geliştirme ve Standartlar Kodlarımızı geliştirdikten sonra her ...
Join discussionSep 24, 2024 · 3 min read · Introduction NOTE – Storing secrets in environment variables is not a security feature, in fact it is an approach to keep your secrets separate from your codebase. Browse the answers of this Stackoverflow question for details about security in enviro...
Join discussion
Aug 14, 2024 · 8 min read · Let's dive into the world of Python naming conventions, but this time with a sprinkle of fun and metaphors. We'll cover everything from naming your variables to creating class names, and we'll do it with practical, easy-to-remember examples. So, grab...
Join discussion
Jul 8, 2024 · 5 min read · Writing clean and maintainable code is essential for any software engineer. Code that is well-organized, easy to understand, and simple to modify not only reduces the risk of bugs but also makes it easier for other developers to collaborate on the pr...
Join discussion
Jul 4, 2024 · 19 min read · Hi everyone! In this article, I will explain what design patterns are and why they are useful. We will also go through some of the most popular design patterns out there and give examples for each of them. Let's go. What are the Design Patterns? Eac...
Join discussion
Jun 24, 2024 · 6 min read · In the ever-evolving landscape of software development, maintaining clean, manageable, and scalable code is paramount. One of the foundational principles that aid in achieving this is the Single Responsibility Principle (SRP). As the first letter in ...
Join discussion