Tagged articles
21 articles
Page 1 of 1
FunTester
FunTester
Apr 16, 2025 · Backend Development

Mastering Go: A Curated Collection of Common Pitfalls and How to Avoid Them

This curated collection gathers eleven in‑depth articles covering the most frequent Go programming mistakes—from optimization and unit testing to concurrency, error handling, and code organization—providing practical examples, dates, and direct links for developers seeking to improve code quality and avoid common pitfalls.

Backend DevelopmentError HandlingGo
0 likes · 3 min read
Mastering Go: A Curated Collection of Common Pitfalls and How to Avoid Them
Su San Talks Tech
Su San Talks Tech
Apr 9, 2025 · Backend Development

Avoid These 7 Common Java Stream Mistakes for Cleaner, Faster Code

Learn the seven most frequent Java Stream pitfalls—from missing terminal operations and modifying source data to overusing intermediate steps and thread‑safety issues—and discover practical fixes that ensure your streams execute correctly, efficiently, and safely.

JavaStream APIcommon mistakes
0 likes · 11 min read
Avoid These 7 Common Java Stream Mistakes for Cleaner, Faster Code
FunTester
FunTester
Feb 28, 2025 · Backend Development

Avoid These 16 Common Go Pitfalls: Real Code Examples and Best Practices

This article enumerates sixteen typical Go programming mistakes—from variable shadowing and unnecessary nesting to misuse of init, getters/setters, interfaces, generics, and project layout—explains their hidden impacts on readability, maintainability, and performance, and provides clear corrected code and best‑practice recommendations.

Code reviewGoSoftware Engineering
0 likes · 27 min read
Avoid These 16 Common Go Pitfalls: Real Code Examples and Best Practices
Java Tech Enthusiast
Java Tech Enthusiast
Jan 30, 2025 · Fundamentals

8 Classic Beginner Bugs Every Programmer Should Avoid

This article lists eight common beginner programming mistakes—from using wrong punctuation and forgetting WHERE clauses to leaking resources, storing passwords in plain text, exposing API keys, mixing environments, force‑pushing code, and committing secrets—explaining why they happen, showing concrete code examples, and offering practical fixes.

DebuggingGitJava
0 likes · 9 min read
8 Classic Beginner Bugs Every Programmer Should Avoid
Spring Full-Stack Practical Cases
Spring Full-Stack Practical Cases
Jan 9, 2025 · Backend Development

Top 10 Common Spring Boot REST API Mistakes and How to Fix Them

This article examines the ten most frequent errors developers make when building Spring Boot REST APIs, explains the negative impact of each mistake, and offers concrete, up‑to‑date solutions with code examples, while also highlighting a continuously updated collection of over 70 Spring Boot 3 practical case studies.

REST APISpring Bootcommon mistakes
0 likes · 15 min read
Top 10 Common Spring Boot REST API Mistakes and How to Fix Them
Go Development Architecture Practice
Go Development Architecture Practice
Aug 12, 2024 · Backend Development

Common Go Interview Pitfalls and How to Fix Them

This article walks through six common Go interview mistakes—incorrect function brace placement, map initialization without make, unexported struct fields for JSON, ineffective slice iteration, array versus slice parameter passing, and variable shadowing with :=—explaining each issue and providing the correct code examples.

BackendGocoding
0 likes · 6 min read
Common Go Interview Pitfalls and How to Fix Them
Continuous Delivery 2.0
Continuous Delivery 2.0
Apr 14, 2023 · Fundamentals

Eight Common Mistakes Made by Junior Developers and How to Overcome Them

This article identifies the eight most frequent errors junior developers make—from misunderstanding business needs and neglecting testing to ignoring security and failing to keep learning—and offers practical advice on focusing on problem solving, effective communication, and continuous skill improvement.

Junior Developerscommon mistakesproblem solving
0 likes · 12 min read
Eight Common Mistakes Made by Junior Developers and How to Overcome Them
MaGe Linux Operations
MaGe Linux Operations
Feb 15, 2023 · Fundamentals

10 Common Mistakes New Linux Users Make—and How to Avoid Them

This guide outlines the ten most frequent misconceptions and errors beginners encounter when switching to Linux, explaining why they happen and offering practical advice to help new users adopt the command line, choose the right distribution, and maintain security.

BeginnerOperating Systemcommon mistakes
0 likes · 11 min read
10 Common Mistakes New Linux Users Make—and How to Avoid Them
Liangxu Linux
Liangxu Linux
Aug 16, 2022 · Fundamentals

10 Common Mistakes Linux Newbies Make and How to Avoid Them

This guide highlights ten frequent misconceptions and errors that new Linux users encounter—from avoiding the terminal and misusing root privileges to mistaking Linux for Ubuntu—and offers clear explanations on why they happen and practical advice to prevent them.

BeginnerOperating Systemcommand-line
0 likes · 11 min read
10 Common Mistakes Linux Newbies Make and How to Avoid Them
Python Programming Learning Circle
Python Programming Learning Circle
Jul 21, 2022 · Fundamentals

10 Common Python Mistakes and How to Avoid Them

This article lists ten frequent Python pitfalls—including mutable default arguments, class variable misuse, incorrect exception handling, scope errors, list mutation during iteration, closure binding issues, circular imports, module name conflicts, Python 2/3 incompatibilities, and improper __del__ usage—explaining each problem with examples and providing clear solutions.

Pythonbest practicescommon mistakes
0 likes · 12 min read
10 Common Python Mistakes and How to Avoid Them
Programmer DD
Programmer DD
Jul 10, 2020 · Fundamentals

Top 10 Surprising Java Pitfalls Every Developer Should Avoid

This article ranks the ten most counter‑intuitive Java language features that often trap developers, explains why they behave unexpectedly, and provides clear code examples and fixes to help programmers write safer, more predictable code.

Code ExamplesJavaPitfalls
0 likes · 11 min read
Top 10 Surprising Java Pitfalls Every Developer Should Avoid
Programmer DD
Programmer DD
Nov 25, 2019 · Fundamentals

Top 10 Java Mistakes Every Developer Should Avoid

This article lists the ten most common errors Java developers make, explains why each is problematic, and provides clear code examples and best‑practice alternatives to help you write safer, more efficient Java code.

ArrayListCollectionsHashMap
0 likes · 11 min read
Top 10 Java Mistakes Every Developer Should Avoid
Python Programming Learning Circle
Python Programming Learning Circle
Nov 6, 2019 · Fundamentals

17 Common Python Errors Every Beginner Should Know

This guide lists the 17 most frequent Python runtime and syntax errors that new programmers encounter, explains why each occurs, and provides clear code examples of both the faulty and corrected versions to help readers quickly diagnose and fix their own scripts.

Debuggingbeginnerscommon mistakes
0 likes · 9 min read
17 Common Python Errors Every Beginner Should Know
System Architect Go
System Architect Go
Jul 29, 2019 · Backend Development

10 Common Go Mistakes That Can Sabotage Your Code

This article enumerates ten frequent Go programming errors—from unknown enum handling and benchmark mis‑optimizations to pointer misuse, slice initialization, context pitfalls, and error‑handling practices—explaining why they occur, showing reproducible code examples, and offering concrete fixes to write more reliable Go code.

BenchmarkError HandlingGo
0 likes · 14 min read
10 Common Go Mistakes That Can Sabotage Your Code
21CTO
21CTO
Apr 12, 2018 · Fundamentals

10 Common Mistakes Beginner Programmers Make—and How to Fix Them

This article outlines the ten most frequent errors new programmers encounter—from poor attitude and self‑doubt to inconsistent coding style, bad naming, over‑commenting, and misuse of IDEs—and offers practical solutions and best‑practice tips to help them become more effective developers.

beginner programmingcode stylecoding best practices
0 likes · 11 min read
10 Common Mistakes Beginner Programmers Make—and How to Fix Them
MaGe Linux Operations
MaGe Linux Operations
Oct 18, 2017 · Fundamentals

10 Common Python Mistakes Every Developer Should Avoid

This article highlights ten frequent Python pitfalls—from mutable default arguments and class variable misuse to improper exception handling, scope misunderstandings, list mutation during iteration, closure binding issues, circular imports, naming conflicts, Python 2/3 incompatibilities, and misuse of __del__—offering clear explanations and practical solutions to help developers write cleaner, more reliable code.

best practicescommon mistakes
0 likes · 10 min read
10 Common Python Mistakes Every Developer Should Avoid
MaGe Linux Operations
MaGe Linux Operations
Jul 12, 2017 · Fundamentals

10 Common Python Mistakes Every Developer Should Avoid

This article reviews ten frequent Python programming errors—including mutable default arguments, class variable misuse, incorrect exception handling, variable scope pitfalls, list mutation during iteration, closure late binding, circular imports, naming conflicts, Python 2/3 differences, and improper use of del—providing clear explanations and practical solutions to help developers write more reliable code.

ExceptionsPythonVariables
0 likes · 14 min read
10 Common Python Mistakes Every Developer Should Avoid
Node Underground
Node Underground
Nov 1, 2016 · Backend Development

10 Common Node.js Mistakes That Can Crash Your App (And How to Avoid Them)

This article outlines ten frequent errors that Node.js developers make—such as blocking the event loop, misusing callbacks, and neglecting monitoring—and explains the impact of each mistake while offering practical strategies to prevent them and keep applications performant and reliable.

Node.jscommon mistakesperformance
0 likes · 2 min read
10 Common Node.js Mistakes That Can Crash Your App (And How to Avoid Them)
21CTO
21CTO
Jan 19, 2016 · Fundamentals

5 Common Programming Mistakes Every Developer Should Avoid

This article highlights five common programming mistakes—copying code without understanding, reinventing the wheel, over‑relying on Google, ignoring warnings, and applying quick fixes instead of permanent solutions—explaining why they harm code quality and offering practical advice to help developers write cleaner, more maintainable software.

best practicescoding habitscommon mistakes
0 likes · 11 min read
5 Common Programming Mistakes Every Developer Should Avoid
21CTO
21CTO
Oct 19, 2015 · Fundamentals

5 Common Programming Mistakes Every Developer Should Stop Making

This article outlines the most frequent programming errors beginners make—such as mindlessly copying code, reinventing the wheel, over‑relying on Google, ignoring warnings, and opting for quick fixes—explaining why they harm code quality and how to avoid them.

best practicescoding habitscommon mistakes
0 likes · 10 min read
5 Common Programming Mistakes Every Developer Should Stop Making
21CTO
21CTO
Sep 20, 2015 · Frontend Development

10 Common Web Development Mistakes and How to Fix Them

This article outlines ten frequent web developer pitfalls—from outdated HTML and browser‑specific code to slow performance and excessive page reloads—explaining their impacts and offering practical solutions such as modern semantic markup, cross‑browser testing, image optimization, responsive design, and automated tooling.

CSSHTMLJavaScript
0 likes · 15 min read
10 Common Web Development Mistakes and How to Fix Them