Tagged articles
26 articles
Page 1 of 1
Java Captain
Java Captain
Jul 4, 2025 · Operations

How to Successfully Unlock a Restricted WeChat Account: Step‑by‑Step Guide

This comprehensive guide explains WeChat's risk‑control logic, details every step from detecting a restriction to completing the unblocking process, decodes common error codes, provides appeal material templates, and offers post‑unblock prevention tips to help users reliably restore their accounts.

Error CodesWeChataccount recovery
0 likes · 8 min read
How to Successfully Unlock a Restricted WeChat Account: Step‑by‑Step Guide
Architect's Tech Stack
Architect's Tech Stack
Apr 15, 2025 · Backend Development

The Chaotic Evolution of API Design: From Early AJAX to Post‑Restful Practices

This article narrates the messy history of API design, illustrating early AJAX conventions, the misuse of HTTP status codes, the challenges of maintaining Restful standards, ad‑hoc extensions, and the eventual abandonment of Restful in favor of a simplified POST‑centric approach, while highlighting practical lessons for backend developers.

APIBackendDesign
0 likes · 6 min read
The Chaotic Evolution of API Design: From Early AJAX to Post‑Restful Practices
JD Tech
JD Tech
Jan 2, 2025 · Backend Development

Designing Effective API Error Codes and Their Propagation in Complex Systems

This article explains the importance of well‑designed API and database structures, outlines principles for creating clear and traceable error codes, provides response format examples, discusses error propagation strategies, highlights common pitfalls, and proposes a full‑link trace‑id logging system for backend services.

Error CodesSystem Architectureapi-design
0 likes · 15 min read
Designing Effective API Error Codes and Their Propagation in Complex Systems
Go Programming World
Go Programming World
May 30, 2024 · Backend Development

Standardizing RESTful API Error Handling with Business Error Codes and an Error Package in Go

This article explains how to design a unified business error‑code system for RESTful APIs, demonstrates the structure and format of such codes, provides a Go implementation with structs, interfaces and formatting methods, and shows practical usage in a Gin web server including logging and notification strategies.

BackendError CodesError Handling
0 likes · 22 min read
Standardizing RESTful API Error Handling with Business Error Codes and an Error Package in Go
Ops Development & AI Practice
Ops Development & AI Practice
Apr 11, 2024 · Backend Development

Mastering Error Codes: Best Practices for Clear, Scalable Error Handling

This article outlines practical guidelines for designing systematic error codes and user‑friendly messages, covering classification, templating, dynamic generation, documentation, automation, and references to open‑source specifications such as HTTP, gRPC, Microsoft REST, Google JSON, and Linux errno.

Error CodesError HandlingSoftware quality
0 likes · 14 min read
Mastering Error Codes: Best Practices for Clear, Scalable Error Handling
IT Services Circle
IT Services Circle
Apr 5, 2024 · Backend Development

Understanding Common HTTP Request Error Codes and Debugging Solutions

This article explains the classification of HTTP request error codes, details typical 4xx client and 5xx server errors, provides common causes, and offers practical debugging steps and solutions to efficiently identify and resolve front‑end and back‑end issues.

BackendDebuggingError Codes
0 likes · 17 min read
Understanding Common HTTP Request Error Codes and Debugging Solutions
Tencent Cloud Developer
Tencent Cloud Developer
Dec 19, 2023 · Fundamentals

Object-Oriented Analysis and Design: Exception Handling, RAII, and Error‑Code Practices

The article explains how object‑oriented analysis and design should treat exceptions by using RAII for automatic resource cleanup, avoiding error‑code patterns, and adopting a throw‑by‑default policy with strongly‑typed exceptions, illustrating concepts with C++ and VB.NET examples and framework design recommendations.

C++Error CodesException Handling
0 likes · 38 min read
Object-Oriented Analysis and Design: Exception Handling, RAII, and Error‑Code Practices
21CTO
21CTO
Nov 29, 2023 · Backend Development

Designing Clear API Error Codes: Lessons from HTTP Status Practices

This article explains how to design consistent API error codes and messages by borrowing the structured approach of HTTP status codes, covering code segmentation, personalized messages, and unified monitoring to improve developer communication and reduce maintenance overhead.

Error CodesHTTP statusapi-design
0 likes · 5 min read
Designing Clear API Error Codes: Lessons from HTTP Status Practices
Top Architect
Top Architect
May 30, 2023 · Backend Development

Designing API Error Codes and Messages: Best Practices and Standardization

This article explains how to design clear, consistent API error codes and messages by referencing HTTP status code segmentation, defining code‑message pairs, customizing user‑friendly messages, and centralizing handling to improve communication, debugging, and monitoring for backend services.

BackendError CodesHTTP status
0 likes · 6 min read
Designing API Error Codes and Messages: Best Practices and Standardization
Top Architect
Top Architect
Jun 22, 2022 · Backend Development

Designing API Error Codes and Messages: Best Practices

This article explains how to design clear and consistent API error codes and messages by borrowing the segmentation logic of HTTP status codes, defining code‑message pairs, providing personalized user‑facing messages, and centralizing handling for monitoring and alerting, ultimately reducing communication and maintenance costs.

Error CodesHTTP statusapi-design
0 likes · 6 min read
Designing API Error Codes and Messages: Best Practices
Top Architect
Top Architect
May 26, 2022 · Backend Development

Designing API Return Codes and Messages: Best Practices for Backend Services

This article explains how to design clear, consistent API return codes and messages by referencing HTTP status codes, defining code‑message pairs, supporting personalized messages for different clients, and using unified handling for monitoring and alerting, ultimately improving communication and maintenance costs.

Error CodesHTTP status codesSoftware Architecture
0 likes · 6 min read
Designing API Return Codes and Messages: Best Practices for Backend Services
Architecture Digest
Architecture Digest
Jan 27, 2022 · Backend Development

Designing API Error Codes and Result Codes: Best Practices

This article explains why a well‑designed API error‑code system—using consistent numeric or string codes, clear messages, HTTP‑status‑like segmentation, personalized user messages, and unified handling for monitoring—reduces communication overhead, simplifies maintenance, and improves overall backend reliability.

Error CodesHTTP statusapi-design
0 likes · 6 min read
Designing API Error Codes and Result Codes: Best Practices
Architect
Architect
Jan 23, 2022 · Backend Development

Designing Consistent API Return Codes: Lessons from HTTP Status Codes

The article explains why a well‑designed API return‑code system—modeled after HTTP status codes, with clear numeric ranges, descriptive messages, and personalized user messages—reduces communication overhead, simplifies maintenance, and enables effective monitoring and alerting for backend services.

Backend DevelopmentError CodesHTTP status codes
0 likes · 6 min read
Designing Consistent API Return Codes: Lessons from HTTP Status Codes
Top Architect
Top Architect
Oct 26, 2021 · Backend Development

Designing API Error Codes and Result Codes: Best Practices

This article explains how to design clear and consistent API error and result codes, using HTTP status code concepts, parameter conventions, personalized messages, and unified handling to improve communication, reduce maintenance costs, and enable effective monitoring and alerting for backend services.

BackendError CodesHTTP status
0 likes · 5 min read
Designing API Error Codes and Result Codes: Best Practices
JD Retail Technology
JD Retail Technology
Aug 19, 2020 · Backend Development

Understanding Exception Handling: Strategies and Best Practices for Different System Types

This article explains the complexities of exception handling across various backend scenarios—such as message queues, RPC services, mobile and PC clients—offering practical guidelines on when to catch, rethrow, use error codes, or employ alternatives like Java Optional to improve code clarity and system reliability.

Error CodesException HandlingJava
0 likes · 7 min read
Understanding Exception Handling: Strategies and Best Practices for Different System Types
Aotu Lab
Aotu Lab
Jul 22, 2020 · Frontend Development

From Vue RFCs to Cloud Gaming: Cutting-Edge Tech Insights You Can’t Miss

This newsletter blends deep dives into Vue 3 RFC processes, cloud‑gaming opportunities, robust error‑code design, AI‑driven SQLFlow and Pipcook tools, plus handy regex and FIGlet utilities, offering developers practical knowledge across front‑end, back‑end, and emerging technologies.

AIError Codesfrontend
0 likes · 7 min read
From Vue RFCs to Cloud Gaming: Cutting-Edge Tech Insights You Can’t Miss
Alibaba Cloud Developer
Alibaba Cloud Developer
Jun 29, 2020 · Backend Development

Designing Effective Error Codes: Principles, Standards, and Best Practices

This article explores the principles and practical guidelines for designing error codes, comparing log‑oriented and external‑facing standards, analyzing numeric versus alphanumeric formats, and presenting recommended structures to improve traceability, memorability, and cross‑team communication in modern backend systems.

Error Codesapi-designlogging
0 likes · 12 min read
Designing Effective Error Codes: Principles, Standards, and Best Practices
Programmer DD
Programmer DD
Apr 30, 2020 · Backend Development

What’s New in Alibaba’s Java Manual? 3 Key Coding Standards Revealed

The April 22 release of Alibaba’s Java Development Manual “Taishan” edition introduces five mandatory date‑time rules, two table‑alias SQL conventions, and a unified error‑code standard, all aimed at improving code consistency and reliability across backend projects.

Backend DevelopmentError CodesJava
0 likes · 6 min read
What’s New in Alibaba’s Java Manual? 3 Key Coding Standards Revealed
Amap Tech
Amap Tech
Apr 24, 2020 · Backend Development

Introducing the Java Development Manual (Taishan Edition): Unified Error Codes, Leap‑Year Pitfalls, SQL Alias, Code‑Style Tips, and Ternary‑Operator NPE Issues

The new Java Development Manual (Taishan Edition) adds 34 rules and revises 90 descriptions, introduces a unified five‑character error‑code scheme, warns about stream‑toMap and ternary‑operator null‑pointer traps, highlights leap‑year and SQL alias bugs, and recommends readability tweaks such as blank lines after returns.

BackendError CodesJava
0 likes · 8 min read
Introducing the Java Development Manual (Taishan Edition): Unified Error Codes, Leap‑Year Pitfalls, SQL Alias, Code‑Style Tips, and Ternary‑Operator NPE Issues
Hujiang Technology
Hujiang Technology
Jun 20, 2017 · Backend Development

Design and Management of a Unified Error Code System for Distributed Backend Services

This article explains the concept, benefits, and implementation details of a unified error‑code management platform, covering code allocation, handling strategies in microservice architectures, API security considerations, and performance optimizations to reduce development friction and improve system reliability.

Error CodesMicroservicesSystem Architecture
0 likes · 12 min read
Design and Management of a Unified Error Code System for Distributed Backend Services
dbaplus Community
dbaplus Community
Dec 22, 2015 · Databases

How to Diagnose and Fix Common Oracle Listener Errors

This article details seven common Oracle Listener issues—including intermittent connections, process crashes, ORA-12514, SCAN registration failures, listener hangs, TNS-12535/00505 errors, and TNS-12547 lost-contact—explaining symptoms, root causes, and step-by-step remediation commands for DBA teams.

Error CodesOracleTNS
0 likes · 10 min read
How to Diagnose and Fix Common Oracle Listener Errors