Asfak AhmedforfreeCodeCampfreecodecamp.org·Dec 4, 2024How to Write Better Names for Your Variables, Functions, and Classes – With ExamplesNaming is one of the most important and challenging parts of writing clean, maintainable, and scalable code. A well-thought-out variable name, for example, can act as self-documenting code, saving time and effort in understanding the logic. But poorl...DiscussJavaScript
Jung Wook ParkforCodeSnapcodesnapmag.hashnode.dev·Sep 6, 2024읽기 쉽고 유지보수하기 쉬운 코드를 쓰기 위한 모범 사례 | 의미있는 이름 고르기원문: Thiago Pacheco, "Best practices to write a readable and maintainable code | Choosing meaningful names" 많은 사람들이 소프트웨어 개발자로서 가장 어려운 것 중 하나가 이름 짓기라고 합니다. 동시에 의미있는 이름을 짓는 것은 가장 중요한 일 중 하나라고 할 수 있죠. 이를테면 변수나 함수, 클래스, 그 밖의 모든 것들을 정의하는 것 말입니다. 좋은 사례들과 ...Discuss·3 likesSeptember 2024naming
Maxi Contierimaximilianocontieri.com·Aug 23, 2024Code Smell 265 - Linguistic ConfusionTL;DR: Naming is hard, don't make it harder with unnecessary accidental complexity. Problems Unclear, misleading, vague, and ambiguous names Redundant terminology Confusing abstractions Cryptic abbreviations Solutions Simplify naming conven...Discuss·37 readsCode Smellsclean code
ICU Branding agencyicu.hashnode.dev·Jun 6, 2024How to name things efficiently using symbols?As you sow, so you reap. Choosing a name for your brand is the first step toward entering the market. Symbols are how names attempt to be unique. Elon Musk referred to his son as an innovative combination of letters and symbols, but did he consider t...Discuss·11 likesnaming
Abhinav Singhblog.imabhinav.dev·Apr 10, 2024Mastering Clean Code: The Importance of Naming VariablesOne of the most critical aspects of writing clean and understandable code is the art of naming variables effectively. Proper variable names can significantly enhance code readability and maintainability. However, poorly chosen names can lead to confu...Discuss·1 likeJavaScript
Kuntal Ojhakuntalojha.hashnode.dev·Mar 17, 2024Demystifying Naming Conventions: A Guide to Writing Clean and Readable CodeIn the world of programming, there exists a subtle yet crucial aspect that often goes unnoticed by beginners but is revered by seasoned developers - naming conventions. While seemingly mundane, naming conventions play a pivotal role in shaping the re...Discuss#namingconvention
Anthony Watblog.avangards.io·Jan 24, 2024My Quest To Finding the Perfect AWS Resource Naming SchemeIntroduction There are only two hard things in Computer Science: cache invalidation and naming things. -- Phil Karlton I am sure that you've seen this famous quote in pretty much any article about naming conventions, and this blog post is no except...Discuss·2 likes·3.0K readsAWS
Martin ŠošićforWasp - full-stack with React & Node.jswasp-lang.hashnode.dev·Oct 11, 2023Why Naming is the #1 Skill for Writing Clean Code 🧼🧑💻In stories, you will often find the motif of a powerful demon that can be controlled only by knowing its true name. Once the hero finds out that name, through cunning dialogue or by investigating ancient tomes, they can turn things around and banish ...Vince Canger and 2 others are discussing this3 people are discussing thisDiscuss·21 likes·40 readsnaming
Marcin WosinekforHow to devhow-to.dev·Aug 23, 2023How to write maintainable code: Naming thingsUsing the right names is an essential part of writing maintainable code. For a computer, any name will work just fine—they either match or not. For the humans who read the code, the names are the first thing they have in mind as they work on the code...Discuss·144 readsBeginner Developers
Luka Vidakovicapisurfer.com·Aug 16, 2023How long is "new" new anywayQuick hint and a reminder for myself: In programming, try not to prefix things with "new". "New" usually doesn't stay new for very long :). It becomes especially problematic when you introduce the new stuff for the 2nd time. At that point, you have a...Discussnaming