Preston Mayiekacodewithpres.hashnode.dev·Nov 26, 2024Why Code Comments Should Focus on Reasons Over ActionsIntroduction Let’s get straight to the point: If your code is well-written, the functionality should be self-explanatory. The what is clear from the code itself. What isn’t always obvious is the why behind your approach — the reason for your decision...best practices
Gautami Shettygautamishetty.hashnode.dev·Jan 8, 2024Getting started with JavaScriptIn Javascript, comments are those statements which browser ignores while interpreting the code. That means essentially whatever text, character, emoji, even code you write in comment will be ignored by browser. Syntax So we have two variety of comme...Javascript commenting Practice
Arpit Dwivediblog.arpitdwivedi.in·Oct 26, 2023The Art of Wit and Wisdom - Commenting in .NET Core with C#Ah, code comments—the unsung heroes of the programming world. They're like the spices in your favorite dish, the secret ingredient that transforms cryptic code into a symphony of logic. As the great programmer Shakespeare once said, "To comment or no...10 likes·238 readsCoding ChroniclesPractice coding
Arpit Dwivediblog.arpitdwivedi.in·Oct 25, 2023Decoding Code Comments: The Art of Crime Scene Investigation in ProgrammingThe dimly lit room, scattered with lines of code, tells a story. It's a tale of logic, functions, and algorithms, but often, like a suspenseful crime novel, there's a mystery lurking. The investigator? Every developer who's tasked with reading someon...20 likes·86 readsCoding Chroniclescoding
François-Olivierfrankscorner.online·Jun 4, 2023CommentsIn my experience, comments guidelines tend to be similar from one team to the next. One common theme is the desire to add more comments because everyone came across a situation where more comments would have been beneficial. In a module with many aut...comments
Kenneth K. Amadikenresoft.hashnode.dev·Apr 26, 2023Must I always document or comment on my codes?In my opinion, this is a subject that has crossed the minds of many developers, especially newcomers. To some extent, that is to be anticipated. It is not a good practice for programmers to neglect commenting and documenting their code because they b...28 readscoding
Sajid Hasan Shantablog.sajidhasan.com·Dec 31, 2022Five Effective Commenting Practices for Swift-iOSIt's essential to use comments in code to document our thought process and make it easier for others to understand our code. But comments will be more impactful when we maintain best practices (including when and what to write comments). This blog wi...2 likes·122 readscommenting Practice