Mustafa Dalgasft.hashnode.dev·Nov 28, 2024Standard Inconsistencies and My Solution in the Front End TeamAs 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...DiscussFront-end Development
Mustafa Dalgasft.hashnode.dev·Nov 19, 2024Front End Takımındaki Standart Uyumsuzlukları ve ÇözümümFront 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 ...DiscussFront End DevFront-end Development
Vedant Phougatevolving-engineer.hashnode.dev·Sep 24, 2024Store Your App Configurations with Environment Variables: A Quick GuideIntroduction 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...Discuss·54 readssecret management
Derek Armstrongderekarmstrong.dev·Aug 14, 2024Easy-to-Understand Python Naming Conventions and Coding Best PracticesLet'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...Discuss·13 likes·59 reads👨🏻💻 Code Craftcoding
Azhar Hussainblog.azharhussain.net·Jul 8, 2024Best Practices for Writing Clean and Maintainable CodeWriting 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...Discuss·1 like·54 readsSoftware Engineering 101software development
Tuan Tran Vanblog.tuanhadev.tech·Jul 4, 2024Design Patterns Handbook - Part IHi 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...DiscussDeveloper Best Code Practicesdesign patterns
Lucas Guzzoblog.lucasguzzo.dev·Jun 24, 2024Single Responsibility Principle (SRP)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 ...Discuss·31 readsSOLID principles
akash javaliblog.akashjavali.com·May 17, 2024Building a Scalable Component Library in React: Best Practices and PitfallsIntroduction: Creating a scalable component library in React is a game-changer for modern web development. It empowers teams to build consistent, reusable, and maintainable UI components that can be leveraged across multiple projects. However, crafti...Discuss·45 readsreact js
Sanjay Kumarsanju7177.hashnode.dev·Mar 9, 2024Ten good practices that apply to coding in any programming language, especially beneficial for beginnersUnderstand the Basics: Before diving into complex topics, ensure you have a solid understanding of the basics of your chosen programming language. Familiarize yourself with syntax, data types, variables, and control structures. Write Readable Code: ...Discussbest practices
Valentin Kvalentink.hashnode.dev·Mar 4, 2024Python OOP Best Practices: Writing Clean and Readable CodePython OOP Best Practices: Writing Clean and Readable Code Introduction to Python OOP Python, being a versatile and powerful programming language, offers a wide array of features that enable developers to write clean, modular, and maintainable code. ...DiscussIt's all about PythonOOP best practices