Tagged articles
958 articles
Page 2 of 10
Python Programming Learning Circle
Python Programming Learning Circle
Apr 11, 2025 · Fundamentals

Comprehensive Overview of Python Standard Library Modules

This article provides a detailed, categorized reference of Python's standard library modules, covering text processing, data types, mathematics, functional programming, file handling, persistence, compression, encryption, OS utilities, concurrency, inter‑process communication, internet protocols, multimedia, internationalization, frameworks, GUI toolkits, development tools, debugging, runtime, interpreter internals, import mechanisms, language utilities, as well as Windows‑ and Unix‑specific modules.

ModulesStandard Libraryprogramming
0 likes · 15 min read
Comprehensive Overview of Python Standard Library Modules
Code Mala Tang
Code Mala Tang
Apr 10, 2025 · Fundamentals

Unlock Python’s Hidden Power: Mastering Context Managers for Cleaner Code

This article explains what Python context managers are, how they work under the hood, and why they are far more useful than simple file handling, providing practical examples ranging from resource management and testing to advanced asynchronous usage and common pitfalls.

PythonResource Managementbest practices
0 likes · 21 min read
Unlock Python’s Hidden Power: Mastering Context Managers for Cleaner Code
php Courses
php Courses
Apr 9, 2025 · Fundamentals

Comprehensive Guide to File Operations in Python

This article provides a thorough introduction to Python file operations, covering opening modes, reading and writing techniques, context managers, advanced handling like binary files and CSV processing, best practices, and practical exercises to master file I/O.

File I/OPythonprogramming
0 likes · 8 min read
Comprehensive Guide to File Operations in Python
Top Architect
Top Architect
Apr 6, 2025 · Backend Development

Comprehensive Guide to Using IntelliJ IDEA Debug Features

This tutorial provides a thorough walkthrough of IntelliJ IDEA's Debug functionality, covering preparation, main interface, detailed explanations of service and debug buttons, variable inspection and modification, conditional breakpoints, expression evaluation, frame dropping, force return, multithreaded and Stream debugging, as well as remote debugging techniques.

IDEIntelliJ IDEAdebugging
0 likes · 20 min read
Comprehensive Guide to Using IntelliJ IDEA Debug Features
Python Programming Learning Circle
Python Programming Learning Circle
Apr 3, 2025 · Fundamentals

30 Essential Python Mini‑Tasks and Code Snippets for Beginners

This article presents a curated collection of thirty practical Python mini‑tasks, each accompanied by concise explanations and ready‑to‑run code snippets that illustrate common operations such as duplicate detection, anagram checking, memory usage, dictionary merging, and more, helping beginners quickly master useful programming techniques.

AlgorithmsData StructuresTutorial
0 likes · 15 min read
30 Essential Python Mini‑Tasks and Code Snippets for Beginners
php Courses
php Courses
Apr 1, 2025 · Fundamentals

Understanding Python Magic (Dunder) Methods

This article explains Python's magic (dunder) methods, categorizing them by purpose—construction, representation, comparison, arithmetic, container behavior, callability, and context management—and provides clear code examples illustrating how to customize class behavior for more Pythonic, intuitive objects.

Object-OrientedPythondunder methods
0 likes · 11 min read
Understanding Python Magic (Dunder) Methods
macrozheng
macrozheng
Mar 26, 2025 · Fundamentals

What’s New in Java 24? 24 Game‑Changing Features Explained

Java 24, the latest non‑LTS release, brings 24 new features across security, performance, and language enhancements—including KDF APIs, ahead‑of‑time class loading, a new class‑file API, stream gatherers, scoped values, and quantum‑resistant signatures—while previewing Java 25 for September.

JDKJEPJava24
0 likes · 15 min read
What’s New in Java 24? 24 Game‑Changing Features Explained
Code Mala Tang
Code Mala Tang
Mar 25, 2025 · Fundamentals

Master Python Classes: From Basics to Advanced OOP Techniques

This comprehensive guide explains what Python classes are, why to create custom ones, and covers class design aspects such as methods, attributes, inheritance, data validation, static and class methods, read‑only properties, and practical code examples for each concept.

OOPPythonTutorial
0 likes · 17 min read
Master Python Classes: From Basics to Advanced OOP Techniques
Spring Full-Stack Practical Cases
Spring Full-Stack Practical Cases
Mar 24, 2025 · Fundamentals

What’s New in Java 24? Explore 8 Game‑Changing Preview Features

This article announces the updated Spring Boot 3 case‑study e‑book with 108 examples and then dives into Java 24’s latest preview features—enhanced pattern matching, flexible constructors, module import, single‑file source, custom stream collectors, Vector API, scoped values, and structured concurrency—complete with code snippets and links.

PreviewFeaturesconcurrencyjava
0 likes · 10 min read
What’s New in Java 24? Explore 8 Game‑Changing Preview Features
JD Cloud Developers
JD Cloud Developers
Mar 21, 2025 · Fundamentals

Master Go Basics: From Variables to Concurrency in One Guide

This article introduces Go language fundamentals for developers familiar with other object‑oriented languages, covering variable and constant declarations, zero values, methods, structs, interfaces, slices, maps, goroutines, channels, mutexes, and error handling with clear code examples and explanations.

GoTutorialbasics
0 likes · 25 min read
Master Go Basics: From Variables to Concurrency in One Guide
Spring Full-Stack Practical Cases
Spring Full-Stack Practical Cases
Mar 21, 2025 · Fundamentals

Master Java Enums: From Basics to Advanced Real-World Patterns

This article introduces a Spring Boot 3 case collection and provides a comprehensive guide to Java enums, covering their definition, type safety, custom values, interface implementation, abstract methods, generics, pattern matching, functional programming, collection usage, and sealed‑class integration with clear code examples.

Spring Bootenumjava
0 likes · 9 min read
Master Java Enums: From Basics to Advanced Real-World Patterns
FunTester
FunTester
Mar 19, 2025 · Backend Development

Common Go Error Handling Mistakes and Best Practices

This article examines typical Go error handling pitfalls—including misuse of panic, improper error wrapping, incorrect error comparisons, and neglecting error checks—provides illustrative code samples, explains their potential impacts, and offers best‑practice recommendations to write robust, maintainable Go programs.

BackendGobest practices
0 likes · 18 min read
Common Go Error Handling Mistakes and Best Practices
Raymond Ops
Raymond Ops
Mar 17, 2025 · Fundamentals

Unlock Go's Syntactic Sugar: Master Variadic Functions and := Assignment

This article explains the concept of syntactic sugar in Go, illustrating how variadic parameters (using ...) and the short variable declaration operator := simplify code, with clear examples and important usage notes to improve readability and reduce errors.

Goprogrammingshort variable declaration
0 likes · 4 min read
Unlock Go's Syntactic Sugar: Master Variadic Functions and := Assignment
JavaScript
JavaScript
Mar 16, 2025 · Frontend Development

Master JavaScript Closures: 10 Must‑Know Interview Questions & Answers

This comprehensive guide explains JavaScript closures, covering their definition, memory‑leak risks, loop pitfalls, private variables, this binding, module pattern, static scope, performance impact, and currying, each with clear answers and practical code examples for front‑end interview preparation.

JavaScriptclosureinterview
0 likes · 17 min read
Master JavaScript Closures: 10 Must‑Know Interview Questions & Answers
IT Services Circle
IT Services Circle
Mar 11, 2025 · Fundamentals

Ten Modern C++ Features to Boost Readability, Maintainability, and Performance

This article introduces ten widely used modern C++ features—including range‑based for loops with initializers, structured bindings, inline variables, std::optional, std::variant, std::visit, constexpr if, default/delete functions, [[nodiscard]] and std::string_view—explaining their benefits and providing concise code examples.

C++C++17C++20
0 likes · 14 min read
Ten Modern C++ Features to Boost Readability, Maintainability, and Performance
Test Development Learning Exchange
Test Development Learning Exchange
Mar 5, 2025 · Fundamentals

Comprehensive Guide to File Operations in Python

This article provides a thorough introduction to Python file operations, covering basic concepts, opening and closing files, reading and writing techniques, advanced methods like binary handling and file pointer control, and includes practical code examples and best‑practice recommendations.

Code ExamplesFile I/OPython
0 likes · 8 min read
Comprehensive Guide to File Operations in Python
Java Tech Enthusiast
Java Tech Enthusiast
Mar 4, 2025 · Fundamentals

Java 8 Map API Enhancements

Java 8 enriches the Map interface with default methods such as getOrDefault, forEach, merge, putIfAbsent, compute, computeIfAbsent, computeIfPresent and replace, allowing developers to retrieve values with fallbacks, iterate entries, combine or conditionally update entries, and thus write more concise, readable code with far less boilerplate.

APICollectionsJDK8
0 likes · 9 min read
Java 8 Map API Enhancements
php Courses
php Courses
Mar 4, 2025 · Backend Development

Advanced PHP File and Directory Operations

This article provides a comprehensive guide to advanced PHP file and directory handling, covering reading and writing files, retrieving file metadata, manipulating file pointers, traversing and managing directories, handling uploads, error handling, and best practices with clear code examples.

BackendFile I/OPHP
0 likes · 6 min read
Advanced PHP File and Directory Operations
Code Mala Tang
Code Mala Tang
Mar 2, 2025 · Fundamentals

6 Surprising Python Dictionary Tricks You Probably Didn’t Know

Discover six unexpected Python dictionary features—from insertion-order preservation in Python 3.7+, safe key access with .get(), immutable key requirements, the power of collections.defaultdict, the concise merge operator | in Python 3.9+, to using popitem() for stack-like behavior—each illustrated with clear code examples.

Code ExamplesData StructuresPython
0 likes · 4 min read
6 Surprising Python Dictionary Tricks You Probably Didn’t Know
Test Development Learning Exchange
Test Development Learning Exchange
Feb 28, 2025 · Fundamentals

Understanding and Using Python Functions: Definitions, Examples, and Best Practices

This article introduces Python functions, explains their syntax and various use cases, and provides numerous code examples—including basic definitions, parameters, return values, default arguments, variable arguments, keyword arguments, docstrings, recursion, lambda expressions, higher‑order functions, and nested functions—to help readers write clean, reusable, and efficient code.

Code ExamplesPythonTutorial
0 likes · 8 min read
Understanding and Using Python Functions: Definitions, Examples, and Best Practices
Test Development Learning Exchange
Test Development Learning Exchange
Feb 28, 2025 · Fundamentals

Python Slicing: Syntax, Examples, and Best Practices

This article introduces Python's slicing syntax, explains its parameters, and provides eleven practical examples ranging from basic string and list slicing to advanced uses like negative indices, step values, and slice assignment, while highlighting performance considerations and best practices.

ListsPythonSlicing
0 likes · 8 min read
Python Slicing: Syntax, Examples, and Best Practices
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 reviewGobest practices
0 likes · 27 min read
Avoid These 16 Common Go Pitfalls: Real Code Examples and Best Practices
php Courses
php Courses
Feb 25, 2025 · Backend Development

PHP Arrays: Creation, Access, Manipulation, Traversal, and Common Functions

This article provides a comprehensive guide to PHP arrays, covering how to create them with array() or short syntax, initialize numeric arrays with range(), convert variables using compact(), and demonstrates accessing, adding, modifying, deleting, traversing with loops, and using built‑in functions, while also introducing related data structures.

ArraysCode ExamplesData Structures
0 likes · 5 min read
PHP Arrays: Creation, Access, Manipulation, Traversal, and Common Functions
php Courses
php Courses
Feb 17, 2025 · Frontend Development

Comprehensive TypeScript Course Outline: Basics to Advanced Topics

This course provides a concise yet thorough introduction to TypeScript, covering installation, VSCode setup, data types, enums, unions, type inference, classes, inheritance, generics, modules, and more, guiding learners step‑by‑step through foundational and advanced concepts for effective TypeScript development.

CourseGenericsTypeScript
0 likes · 2 min read
Comprehensive TypeScript Course Outline: Basics to Advanced Topics
Test Development Learning Exchange
Test Development Learning Exchange
Feb 14, 2025 · Fundamentals

Python Date and Time Modules Overview

This article provides a comprehensive overview of Python's core date and time handling modules, including datetime, time, calendar, dateutil, and zoneinfo, with practical examples and installation instructions for advanced functionality.

Pythondate handlingdatetime
0 likes · 3 min read
Python Date and Time Modules Overview
php Courses
php Courses
Feb 8, 2025 · Frontend Development

Comprehensive TypeScript Course Outline: Basics to Advanced Topics

This course outline presents a step‑by‑step curriculum covering TypeScript fundamentals, configuration, data types, classes, generics, interfaces, and modularization, guiding learners from introductory concepts to advanced features for practical front‑end development.

CourseTypeScriptfrontend development
0 likes · 3 min read
Comprehensive TypeScript Course Outline: Basics to Advanced Topics
Test Development Learning Exchange
Test Development Learning Exchange
Feb 4, 2025 · Fundamentals

Comprehensive Overview of Python Built‑in Data Types

This article provides a comprehensive overview of Python's built‑in data types—including numbers, strings, lists, tuples, dictionaries, sets, booleans, None, sequences, mappings, iterables, and file handling—explaining their characteristics, usage examples, and best‑practice considerations for efficient programming.

Data TypesPythonTutorial
0 likes · 8 min read
Comprehensive Overview of Python Built‑in Data Types
21CTO
21CTO
Feb 2, 2025 · Artificial Intelligence

Is Programming Dead in 2025? How AI Is Transforming, Not Replacing, Developers

Amid sensational headlines claiming programming’s demise, this article explores how AI tools like GitHub Copilot and ChatGPT are reshaping software development, boosting productivity while emphasizing the continued need for human creativity, critical thinking, and interdisciplinary skills to thrive in the evolving 2025 coding landscape.

Artificial IntelligenceFuturedeveloper skills
0 likes · 9 min read
Is Programming Dead in 2025? How AI Is Transforming, Not Replacing, Developers
Liangxu Linux
Liangxu Linux
Jan 26, 2025 · Fundamentals

Mastering GObject: A Practical Guide to C’s Object System

This article introduces GObject, the object‑oriented C framework from GLib, explains its core concepts, demonstrates how to define classes and instances with code examples, shows signal usage, and highlights its cross‑language interoperability for building robust software components.

GLibGObjectObject-Oriented
0 likes · 7 min read
Mastering GObject: A Practical Guide to C’s Object System
Architecture and Beyond
Architecture and Beyond
Jan 24, 2025 · R&D Management

Experiences with the AI Programming IDE Trae and the Evolving Role of Programmers

The article recounts a three‑hour hands‑on session with the AI‑powered IDE Trae, examines how AI assists in front‑end/back‑end development, discusses the current responsibilities of programmers—decision‑making, coordination, coding—and outlines future trends of AI replacement and the core competencies developers must retain.

AIAI toolsautomation
0 likes · 12 min read
Experiences with the AI Programming IDE Trae and the Evolving Role of Programmers
Test Development Learning Exchange
Test Development Learning Exchange
Jan 18, 2025 · Fundamentals

Understanding Python Comprehensions: Lists, Sets, Dictionaries, Nested and Generator Expressions

Python comprehensions provide concise syntax for creating lists, sets, dictionaries, nested structures, and generator expressions, allowing developers to replace explicit loops and conditional logic with readable one‑liner constructs, as illustrated with practical code examples and guidance on their appropriate use.

ComprehensionsPythongenerator
0 likes · 6 min read
Understanding Python Comprehensions: Lists, Sets, Dictionaries, Nested and Generator Expressions
Raymond Ops
Raymond Ops
Jan 17, 2025 · Fundamentals

Unlocking Go’s Type System: From Basic Types to Reflection

This article explains Go’s static type system, introduces custom types and interface types, demonstrates how empty interfaces work, and shows how the reflect package can inspect and modify values at runtime, including struct fields, using concrete code examples.

InterfacesReflectionprogramming
0 likes · 13 min read
Unlocking Go’s Type System: From Basic Types to Reflection
Test Development Learning Exchange
Test Development Learning Exchange
Jan 17, 2025 · Fundamentals

Key Features of Python Syntax and Their Benefits

The article outlines twelve essential characteristics of Python's syntax—including indentation, dynamic typing, built‑in data structures, standard library, OOP support, exception handling, generators, decorators, and more—illustrated with clear code examples that demonstrate how these features simplify development and improve code readability.

Code ExamplesPythonfundamentals
0 likes · 7 min read
Key Features of Python Syntax and Their Benefits
php Courses
php Courses
Jan 15, 2025 · Backend Development

Understanding and Building a PHP Interpreter with C

This course introduces the background and features of PHP, explains the inner workings of the PHP interpreter—including lexical analysis, parsing, and the virtual machine—and guides students through implementing these components in C to create a simple interpreter while enhancing their programming and problem‑solving skills.

C languagePHPbackend-development
0 likes · 3 min read
Understanding and Building a PHP Interpreter with C
BirdNest Tech Talk
BirdNest Tech Talk
Jan 14, 2025 · Fundamentals

Master Go Naming: 30+ Rules for Clean, Idiomatic Code

This article presents a comprehensive, step‑by‑step analysis of Go naming conventions, explaining why each rule matters, illustrating each point with concrete code snippets and real‑world examples, and showing how to apply the guidelines to variables, functions, packages, structs, interfaces, errors, constants, enums and comments for truly clean Go code.

Gobest practicesclean code
0 likes · 24 min read
Master Go Naming: 30+ Rules for Clean, Idiomatic Code
Radish, Keep Going!
Radish, Keep Going!
Jan 13, 2025 · Fundamentals

Can Go’s New ‘?’ Operator Simplify Error Handling?

The proposal introduces a ‘?’ operator to automatically handle errors in Go, aiming to reduce boilerplate while preserving explicitness, but it raises concerns about code readability, variable shadowing, and the effort required to update existing codebases.

Error HandlingGolanguage proposal
0 likes · 8 min read
Can Go’s New ‘?’ Operator Simplify Error Handling?
Python Programming Learning Circle
Python Programming Learning Circle
Jan 11, 2025 · Fundamentals

30 Practical Python Tips and Tricks for Everyday Use

This article presents thirty concise, practical Python tips—including version checks, IPython usage, list comprehensions, memory inspection, data classes, dictionary merging, string manipulation, progress bars, and more—each illustrated with clear explanations and ready‑to‑run code snippets to help developers write cleaner, more efficient code.

Tipsbest practicescode snippets
0 likes · 13 min read
30 Practical Python Tips and Tricks for Everyday Use
Test Development Learning Exchange
Test Development Learning Exchange
Jan 10, 2025 · Fundamentals

Advanced Python Features and Their Use Cases

This article introduces twenty advanced Python concepts—including decorators, context managers, generators, metaclasses, multiple inheritance, coroutines, closures, magic methods, dynamic attributes, GIL, async IO, regular expressions, garbage collection, modules, virtual environments, SOLID principles, type annotations, IPC, memory management, and reflection—explaining their typical use cases and providing clear code examples for each.

Advanced FeaturesGeneratorsPython
0 likes · 11 min read
Advanced Python Features and Their Use Cases
JavaScript
JavaScript
Jan 7, 2025 · Frontend Development

25 Must‑Know ES202x Features to Supercharge Your JavaScript Code

This article introduces 25 powerful ECMAScript enhancements—including optional chaining, nullish coalescing, private class fields, dynamic imports, and decorators—explaining their benefits and providing concise code examples to help developers write cleaner, more efficient JavaScript.

ES202xJavaScriptNew Features
0 likes · 7 min read
25 Must‑Know ES202x Features to Supercharge Your JavaScript Code
php Courses
php Courses
Jan 2, 2025 · Backend Development

Understanding Constructors and Destructors in PHP

This article explains the purpose, syntax, and practical examples of PHP constructors (__construct) and destructors (__destruct), demonstrating how they initialize objects, manage resources, and simplify code through automatic execution during object creation and destruction.

ConstructorOOPPHP
0 likes · 8 min read
Understanding Constructors and Destructors in PHP
BirdNest Tech Talk
BirdNest Tech Talk
Jan 1, 2025 · Fundamentals

20 Essential Programming Rules for Cleaner, Safer Code

This article distills Chris Zimmeman's "Programming Rules" into twenty concrete guidelines—covering simplicity, bug containment, naming, generalization, deferred optimization, code reviews, debugging, refactoring, conventions, and more—each explained with its rationale and core takeaway for developers.

Code reviewbest practicescode quality
0 likes · 15 min read
20 Essential Programming Rules for Cleaner, Safer Code
BirdNest Tech Talk
BirdNest Tech Talk
Jan 1, 2025 · Fundamentals

Master Rust: From Basics to Advanced Concepts in One Comprehensive Guide

This article outlines a Rust programming book that starts with fundamental syntax, variables, and memory management, then progressively explores ownership, lifetimes, error handling, concurrency, async programming, traits, macros, and practical examples, providing code snippets and core concepts for each topic.

Advanced ConceptsAsyncMacros
0 likes · 16 min read
Master Rust: From Basics to Advanced Concepts in One Comprehensive Guide
Python Programming Learning Circle
Python Programming Learning Circle
Dec 28, 2024 · Fundamentals

Comprehensive Guide to String Concatenation Methods in Python

This article presents a comprehensive overview of seven Python string concatenation techniques—including the plus operator, comma printing, implicit literal concatenation, percent formatting, format method, join function, f‑strings, and the multiplication operator—along with performance tips and usage recommendations.

String concatenationperformanceprogramming
0 likes · 5 min read
Comprehensive Guide to String Concatenation Methods in Python
BirdNest Tech Talk
BirdNest Tech Talk
Dec 28, 2024 · Backend Development

How to Build Classic Unix Tools in Rust: A Step‑by‑Step Guide

This article walks through a Rust‑based implementation of classic Unix command‑line utilities—hello world, echo, cat, head, uniq, wc, find, grep, comm, ls, and more—showing project setup, Cargo usage, argument parsing with clap, error handling with Result, testing strategies, and code snippets for each tool.

RustSystemsTutorial
0 likes · 21 min read
How to Build Classic Unix Tools in Rust: A Step‑by‑Step Guide
Python Programming Learning Circle
Python Programming Learning Circle
Dec 27, 2024 · Fundamentals

30 Helpful Python Snippets You Can Learn in 30 Seconds

This article presents thirty concise Python code snippets covering common tasks such as duplicate detection, list chunking, dictionary merging, string manipulation, timing, and functional tricks, offering quick, practical examples for beginners and developers to enhance their coding skills.

code snippetsfundamentalsprogramming
0 likes · 13 min read
30 Helpful Python Snippets You Can Learn in 30 Seconds
DeWu Technology
DeWu Technology
Dec 23, 2024 · Fundamentals

Java Null Reference Handling Principles

Java’s ubiquitous NullPointerException stems from Tony Hoare’s 1965 introduction of the null reference—a design he later called his ‘billion-dollar mistake’—and the JVM mitigates its cost by forgoing proactive checks, instead relying on OS signals like SIGSEGV to detect nulls and throw the exception only when they actually occur.

Exception HandlingJVMjava
0 likes · 18 min read
Java Null Reference Handling Principles
Java Tech Enthusiast
Java Tech Enthusiast
Dec 20, 2024 · Industry Insights

Why Do So Many Programmers Never Turn Their Code into a Business?

The article examines why programmers often avoid launching their own software products or projects, highlighting rapid internet growth, the low marginal cost of digital goods, market perception, and the challenges of turning code into a profitable business.

Entrepreneurshipbusinessindustry insights
0 likes · 6 min read
Why Do So Many Programmers Never Turn Their Code into a Business?
Su San Talks Tech
Su San Talks Tech
Dec 6, 2024 · Fundamentals

6 Common BigDecimal Mistakes in Java and How to Avoid Them

This article explains six typical pitfalls when using Java's BigDecimal—such as initializing with floating‑point literals, ignoring scale in division, misusing equals, misunderstanding scale, overlooking immutability, and performance costs—and provides clear code examples and best‑practice solutions to prevent precision loss and inefficiency.

ArithmeticBigDecimaljava
0 likes · 7 min read
6 Common BigDecimal Mistakes in Java and How to Avoid Them
Test Development Learning Exchange
Test Development Learning Exchange
Dec 3, 2024 · Fundamentals

Python Programming Fundamentals

This tutorial covers Python's core programming concepts including variables, data types, control structures, functions, object-oriented programming, and file operations, providing a comprehensive foundation for beginners.

Data TypesOOPPython
0 likes · 16 min read
Python Programming Fundamentals
21CTO
21CTO
Nov 29, 2024 · Backend Development

Why Upgrade to PHP 8.4? New OOP Features, Performance Boosts, and More

This article outlines why PHP 8.4 is a substantial upgrade, highlighting enhanced object‑oriented programming, developer‑friendly attributes, new language constructs, performance improvements, and a host of new functions and library support that make it a compelling move for modern backend development.

Backendnew-featuresphp8.4
0 likes · 7 min read
Why Upgrade to PHP 8.4? New OOP Features, Performance Boosts, and More
Test Development Learning Exchange
Test Development Learning Exchange
Nov 24, 2024 · Fundamentals

Common Python Magic Methods and Their Usage

This article introduces Python's most frequently used magic methods—including __new__, __init__, __str__, __add__, __len__, __getitem__, __setitem__, __delitem__, __contains__, __bool__, __iter__, comparison operators, arithmetic operators, and context manager methods—explaining their purpose, typical use cases, and providing clear code examples for each.

MagicMethodsOOPPython
0 likes · 11 min read
Common Python Magic Methods and Their Usage
Open Source Tech Hub
Open Source Tech Hub
Nov 20, 2024 · Backend Development

What’s New in PHP 8.4? Key Features, Changes, and Deprecations

PHP 8.4, the first official release of the new major version, adds numerous functions and curl options, updates OpenSSL and MBString, modifies syntax such as making exit/die true functions, raises default bcrypt cost, and deprecates or removes several legacy features, providing a comprehensive overview of the upgrade.

DeprecationsNew Featuresphp8.4
0 likes · 3 min read
What’s New in PHP 8.4? Key Features, Changes, and Deprecations
php Courses
php Courses
Nov 20, 2024 · Backend Development

Go Language GraphQL Service Development Course Overview

This course teaches developers with basic Go knowledge how to build GraphQL services, covering fundamentals, schema design, request handling, and practical integration using Go, while comparing graphql-go and gqlgen and demonstrating deployment with Drone CI/CD.

APIGoGraphQL
0 likes · 5 min read
Go Language GraphQL Service Development Course Overview
Python Programming Learning Circle
Python Programming Learning Circle
Nov 18, 2024 · Fundamentals

15 Essential Python Packages for Developers

This article introduces fifteen of the most useful Python packages, explaining their core features and typical use cases—from data visualization with Dash and game development with Pygame to web requests, JSON handling, progress bars, and home automation—helping developers quickly choose the right tools for their projects.

DataProcessingWebDevelopmentlibraries
0 likes · 10 min read
15 Essential Python Packages for Developers
Python Programming Learning Circle
Python Programming Learning Circle
Nov 15, 2024 · Fundamentals

How to Choose the Right Python Version for Your Projects

Choosing the correct Python version requires evaluating project requirements, ecosystem compatibility, stability, performance improvements, and long‑term support, with most recommendations favoring a recent Python 3.x release such as 3.7 or 3.8 for modern features and security.

LTSVersion Selectionprogramming
0 likes · 8 min read
How to Choose the Right Python Version for Your Projects
Test Development Learning Exchange
Test Development Learning Exchange
Nov 13, 2024 · Fundamentals

Python Fundamentals: String, List, Dictionary Operations and Common Techniques

This article provides a comprehensive Python tutorial covering essential string manipulations, list and dictionary operations, file handling, exception handling, performance measurement, and classic algorithmic examples such as palindrome checking, prime testing, and Fibonacci generation, each illustrated with clear code snippets.

AlgorithmsPythonfundamentals
0 likes · 20 min read
Python Fundamentals: String, List, Dictionary Operations and Common Techniques
DaTaobao Tech
DaTaobao Tech
Nov 6, 2024 · Fundamentals

Understanding Java Generics: Origins, Features, and the PECS Principle

Java generics, introduced in Java 5 to replace unsafe Object usage, provide compile‑time type safety, clearer code, and eliminate unchecked casts by allowing type‑parameterized classes, methods, and collections, while type erasure and bridge methods preserve backward compatibility, and the PECS rule (producer extends consumer super) guides safe use of wildcards through covariance and contravariance.

GenericsPECSType Erasure
0 likes · 11 min read
Understanding Java Generics: Origins, Features, and the PECS Principle
Python Programming Learning Circle
Python Programming Learning Circle
Nov 6, 2024 · Fundamentals

Comprehensive Python Cheat Sheet and Advanced Topics Summary

This article compiles an extensive Python reference covering Python 2 vs 3 differences, essential and advanced libraries, concurrency models, language internals, testing techniques, design patterns, data structures, algorithms, networking basics, MySQL and Redis insights, Linux I/O models, and performance‑optimization strategies, all illustrated with practical code snippets.

Cheat SheetDesign PatternsLinux
0 likes · 31 min read
Comprehensive Python Cheat Sheet and Advanced Topics Summary
Test Development Learning Exchange
Test Development Learning Exchange
Nov 6, 2024 · Fundamentals

Overview of Common Python Standard Library Modules

This article provides a concise overview of twenty essential Python standard library modules, covering their primary purposes and frequently used functions such as file handling, system interaction, data processing, networking, concurrency, compression, and serialization, helping developers improve productivity across various programming tasks.

ModulesPythonStandard Library
0 likes · 8 min read
Overview of Common Python Standard Library Modules
Test Development Learning Exchange
Test Development Learning Exchange
Nov 4, 2024 · Fundamentals

Python Practical Guide: File I/O, CSV, JSON, HTTP Requests, SQLite, Scheduling, Logging, Argument Parsing, Compression, Subprocess, DateTime, Email, Image Processing, NumPy, Pandas, Regex, System Info, Socket Programming, and AsyncIO

This comprehensive Python tutorial demonstrates essential techniques such as file reading and writing, CSV and JSON handling, HTTP requests, SQLite operations, task scheduling, logging, command‑line parsing, compression, subprocess management, date‑time handling, email sending, image manipulation, numerical computing, data analysis, regular expressions, system information retrieval, socket networking, and asynchronous programming.

File I/ONetworkingPython
0 likes · 9 min read
Python Practical Guide: File I/O, CSV, JSON, HTTP Requests, SQLite, Scheduling, Logging, Argument Parsing, Compression, Subprocess, DateTime, Email, Image Processing, NumPy, Pandas, Regex, System Info, Socket Programming, and AsyncIO
Architecture Digest
Architecture Digest
Oct 31, 2024 · Backend Development

Java 8 Map New Methods: getOrDefault, forEach, merge, putIfAbsent, compute, computeIfAbsent, computeIfPresent, replace

This article introduces the Java 8 Map API enhancements—including getOrDefault, forEach, merge, putIfAbsent, compute, computeIfAbsent, computeIfPresent, and replace—explaining their purpose, showing concise code examples, and demonstrating how they simplify common map‑handling scenarios.

CollectionsJDK8MAP
0 likes · 9 min read
Java 8 Map New Methods: getOrDefault, forEach, merge, putIfAbsent, compute, computeIfAbsent, computeIfPresent, replace
Python Programming Learning Circle
Python Programming Learning Circle
Oct 30, 2024 · Fundamentals

Why PyPy Runs Python Code Faster Than C: Understanding JIT Compilation

The article explains how PyPy’s just‑in‑time compilation dramatically speeds up Python execution, often surpassing native C performance, by contrasting interpreted, ahead‑of‑time compiled, and JIT approaches and presenting a benchmark that shows PyPy completing a 100 million‑iteration loop in 0.22 seconds versus 10 seconds for CPython.

JITperformanceprogramming
0 likes · 5 min read
Why PyPy Runs Python Code Faster Than C: Understanding JIT Compilation
Code Ape Tech Column
Code Ape Tech Column
Oct 25, 2024 · Fundamentals

Understanding Why BigDecimal Preserves Precision in Java

This article explains how Java's BigDecimal class maintains exact decimal precision by scaling numbers to long integers, detailing its internal fields, demonstrating addition with sample code, and analyzing the underlying add method logic to show why no precision is lost.

ArithmeticBackendBigDecimal
0 likes · 6 min read
Understanding Why BigDecimal Preserves Precision in Java
Python Programming Learning Circle
Python Programming Learning Circle
Oct 23, 2024 · Fundamentals

Calculating Body Mass Index (BMI) with Python

This tutorial explains how to use Python to input a person's height and weight, compute the Body Mass Index using the standard formula, interpret the result according to international categories, and provides a complete code example while noting BMI's health limitations.

BMIbasicsprogramming
0 likes · 4 min read
Calculating Body Mass Index (BMI) with Python
php Courses
php Courses
Oct 17, 2024 · Backend Development

Performance Impact of Function Object Programming (FOP) in PHP

The article explains how using the Function Object Programming pattern in PHP can increase memory usage, introduce late‑binding overhead, and add indirect call costs, and it provides a concrete benchmark comparing traditional functions with function objects.

Function ObjectPHPperformance
0 likes · 3 min read
Performance Impact of Function Object Programming (FOP) in PHP
Rare Earth Juejin Tech Community
Rare Earth Juejin Tech Community
Oct 14, 2024 · Fundamentals

Understanding Exception Handling in Python

This article provides a comprehensive guide to Python exception handling, covering the concept of exceptions, built‑in exception types, the try‑except‑else‑finally structure, custom exception creation, debugging techniques with assert and logging, and a practical file‑operation example to build robust programs.

Error HandlingException HandlingPython
0 likes · 8 min read
Understanding Exception Handling in Python
macrozheng
macrozheng
Oct 11, 2024 · Fundamentals

Unlock Java’s Latest Power: Practical Guide to New Features from Java 9‑17

This article provides a concise, hands‑on overview of Java’s most useful language enhancements from Java 9 through Java 17—including private interface methods, Optional API upgrades, Stream API additions, var type inference, the new HTTP client, switch expressions, text blocks, records, instanceof pattern matching, and sealed classes—complete with clear code examples for each feature.

Code ExamplesNew Featuresjava
0 likes · 15 min read
Unlock Java’s Latest Power: Practical Guide to New Features from Java 9‑17
Python Programming Learning Circle
Python Programming Learning Circle
Oct 8, 2024 · Fundamentals

Top 10 Essential Python Packages Every Developer Should Know

This article introduces the ten most essential and widely used Python packages—such as NumPy, Pendulum, Pillow, MoviePy, requests, Tkinter, PyQt, Pandas, Pywin32, and pytest—providing concise descriptions, practical code examples, and guidance on when and why to use each in general programming projects.

Tkinterprogrammingrequests
0 likes · 11 min read
Top 10 Essential Python Packages Every Developer Should Know
Python Programming Learning Circle
Python Programming Learning Circle
Oct 7, 2024 · Fundamentals

Overview of the Python Standard Library

This article provides a comprehensive overview of Python's extensive standard library, describing its built‑in modules across categories such as text processing, binary data handling, data types, mathematics, functional programming, file and directory utilities, persistence, compression, file formatting, encryption, operating‑system tools, concurrency, interprocess communication, internet protocols, multimedia, internationalization, programming frameworks, GUI toolkits, development tools, debugging, runtime, interpreter internals, import mechanisms, and language utilities.

Modulesfundamentalsprogramming
0 likes · 12 min read
Overview of the Python Standard Library