Vedant PhougatProevolving-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·47 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·54 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·52 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·26 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·43 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
Agatha Bahatiagathabahati.hashnode.dev·Jan 1, 2024Code Quality on Autopilot: Demystifying pre-commit HooksMaintaining precise and consistent code formatting standards, commit message conventions and spell checking have all become part of my ritual when I work on projects; they are now practically woven into the fabric of my work. Picture this: you're goi...Discuss·36 likes·112 readsautomated code checks
Shubhajit Paulshubhajit99.hashnode.dev·Dec 27, 2023Writing Clean and Readable Code in JavaScript: A Comprehensive Guide to Meaningful Variable and Function NamingIntroduction In the realm of JavaScript programming, the significance of thoughtful variable and function naming often takes a backseat. In this guide, we'll delve into the importance of crafting meaningful names and provide practical tips to elevate...DiscussJavaScript Coding Practices