Tagged articles
18 articles
Page 1 of 1
Lisa Notes
Lisa Notes
Mar 14, 2026 · Fundamentals

How to Build Your First Java Application from Scratch

This tutorial walks you through installing the JDK, creating a HelloJava.java source file with Notepad, compiling it using javac, running it with the java interpreter, and explains the basic structure, comments, class definition, and main method of a Java program.

CommandLineCompilationHelloWorld
0 likes · 12 min read
How to Build Your First Java Application from Scratch
Lisa Notes
Lisa Notes
Feb 14, 2026 · Fundamentals

Why Comments Matter in Python: A Beginner’s Guide

This article explains the importance of comments in Python, describing how they improve code readability for collaborators and future maintenance, and outlines the two comment styles—single‑line with # and multi‑line with triple quotes—along with practical examples.

Pythoncode readabilitycomments
0 likes · 3 min read
Why Comments Matter in Python: A Beginner’s Guide
Code Mala Tang
Code Mala Tang
Jun 6, 2025 · Fundamentals

Master Python Comments: Best Practices and Common Pitfalls

This guide explains what comments are in Python, shows how to write single‑line and multi‑line comments using the # symbol, warns against misuse of triple quotes, covers docstring usage, and provides IDE shortcut keys for efficient commenting.

DocstringsIDE shortcutsPython
0 likes · 7 min read
Master Python Comments: Best Practices and Common Pitfalls
Java Tech Enthusiast
Java Tech Enthusiast
Oct 26, 2024 · Fundamentals

12 Coding Habits That Reduce Code Readability and Increase Maintenance Difficulty

The article outlines twelve harmful coding habits—such as excessive microservice splitting, incomplete refactoring, overly long methods, deep nesting, random variable names, inaccurate or outdated comments, duplicated code, ignoring specifications, missing logging, over‑engineered frameworks, and reinventing wheels—that degrade readability, complicate maintenance, increase bugs, and hurt team productivity.

Microservicescode qualitycoding practices
0 likes · 9 min read
12 Coding Habits That Reduce Code Readability and Increase Maintenance Difficulty
21CTO
21CTO
Aug 26, 2024 · Fundamentals

6 Essential Python Coding Habits Every Developer Should Master

This article outlines six practical Python coding habits—including following PEP 8, using the latest version, commenting effectively, employing linters, leveraging built‑in functions and libraries, and fixing issues promptly—to help developers write clean, maintainable, and error‑free code.

PEP 8Pythonbuilt-in functions
0 likes · 9 min read
6 Essential Python Coding Habits Every Developer Should Master
Liangxu Linux
Liangxu Linux
Jul 30, 2024 · Fundamentals

Mastering C Comment Syntax: Hidden Pitfalls and Correct Usage

This article explains how C's /* */ and // comment delimiters work, shows edge cases where they appear inside strings, macros, or line continuations, and provides concrete code examples illustrating correct and incorrect usages along with the compiler errors they may trigger.

Ccodecomments
0 likes · 4 min read
Mastering C Comment Syntax: Hidden Pitfalls and Correct Usage
JD Retail Technology
JD Retail Technology
Oct 19, 2023 · Fundamentals

Java Naming Conventions, Code Comments, and Advanced Language Features

This article explores the trade‑offs between efficiency, readability and maintainability in software development, presents common naming conventions and best‑practice guidelines for Java, discusses proper use of comments, and introduces advanced language constructs such as records, sealed classes and the upcoming Valhalla project.

Immutable ObjectsJavaSealed Classes
0 likes · 29 min read
Java Naming Conventions, Code Comments, and Advanced Language Features
JD Cloud Developers
JD Cloud Developers
Oct 5, 2023 · Fundamentals

Mastering Java Naming Conventions and Code Structure: From Basics to Best Practices

This comprehensive guide explores Java naming standards, comment strategies, class and method design, and practical patterns—covering everything from basic conventions to advanced features like sealed classes, value types, and immutable objects—to help developers write more readable, maintainable, and scalable code.

Javabest practicesclass design
0 likes · 29 min read
Mastering Java Naming Conventions and Code Structure: From Basics to Best Practices
Java High-Performance Architecture
Java High-Performance Architecture
Feb 16, 2022 · Fundamentals

How to Write Clean Code: Naming, Comments, Functions, and Testing Best Practices

This article explores the core principles of clean code—including effective naming, purposeful comments, single‑responsibility functions, proper abstraction levels, and essential testing practices—illustrated with concrete code examples and actionable guidelines for writing more readable, maintainable software.

Software Engineeringclean codecomments
0 likes · 10 min read
How to Write Clean Code: Naming, Comments, Functions, and Testing Best Practices
MaGe Linux Operations
MaGe Linux Operations
Sep 16, 2017 · Backend Development

How to Scrape NetEase Cloud Music Hot Comments with Python

This tutorial walks through using Python and browser developer tools to locate, decode, and retrieve the hot comments from NetEase Cloud Music's hot song chart, including extracting song IDs, handling encrypted request parameters, and applying regex to gather song metadata.

APINetEase Cloud MusicPython
0 likes · 9 min read
How to Scrape NetEase Cloud Music Hot Comments with Python
MaGe Linux Operations
MaGe Linux Operations
Feb 9, 2017 · Fundamentals

Master Python Basics: From First Program to Syntax Essentials

This tutorial walks you through Python fundamentals, covering interactive and script programming, identifiers, reserved keywords, indentation rules, multi‑line statements, string quoting, comments, blank lines, user input, multiple statements per line, code blocks, and command‑line arguments, with clear examples and code snippets.

IdentifiersPythoncomments
0 likes · 9 min read
Master Python Basics: From First Program to Syntax Essentials