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

Java Operators and Expressions: A Beginner’s Guide from Scratch

This article provides a comprehensive walkthrough of Java's operators and expressions, covering arithmetic, assignment, increment/decrement, relational, logical, bitwise, and ternary operators, their syntax, evaluation rules, precedence, and practical code examples to help beginners master Java fundamentals.

Javaexpressionsoperators
0 likes · 20 min read
Java Operators and Expressions: A Beginner’s Guide from Scratch
Lisa Notes
Lisa Notes
Mar 5, 2026 · Fundamentals

Python Basics: From Zero to Core Concepts with Practical Code Examples

This tutorial walks through essential Python fundamentals—including comments, naming conventions, variable assignment, input/output functions, common data types, type conversion, and arithmetic, assignment, relational, and membership operators—providing clear explanations and concrete code snippets for each concept.

Data TypesInput/OutputPython
0 likes · 20 min read
Python Basics: From Zero to Core Concepts with Practical Code Examples
Cloud Native Technology Community
Cloud Native Technology Community
Jul 17, 2025 · Databases

How Operators Turn Kubernetes into a Database Management Powerhouse

This article explains how Kubernetes' reconciliation loop, originally designed for stateless resources, can be extended to manage stateful workloads like PostgreSQL databases using Operators such as CloudNativePG and Atlas, providing a declarative, GitOps‑friendly workflow for provisioning, upgrading, and schema migration.

AtlasCloudNativePGDatabase Management
0 likes · 16 min read
How Operators Turn Kubernetes into a Database Management Powerhouse
php Courses
php Courses
Mar 19, 2025 · Fundamentals

Understanding Python Operators and Expressions

This article provides a comprehensive overview of Python operators and expressions, covering arithmetic, comparison, logical, assignment, membership, and identity operators, their syntax, examples, and precedence rules, helping readers master how to construct and evaluate expressions for various programming tasks.

Pythonexpressionsoperators
0 likes · 6 min read
Understanding Python Operators and Expressions
Full-Stack Cultivation Path
Full-Stack Cultivation Path
Nov 13, 2024 · Fundamentals

Master the New &&= and ??= Operators in JavaScript

The article explains ECMAScript 2021's logical assignment operators &&= and ??=, detailing their semantics, showing traditional equivalents, listing truthy/falsy values, and providing practical code examples and use‑cases for concise conditional assignments.

JavaScriptes2021logical-assignment
0 likes · 6 min read
Master the New &&= and ??= Operators in JavaScript
Full-Stack DevOps & Kubernetes
Full-Stack DevOps & Kubernetes
Aug 7, 2024 · Cloud Native

Top 10 Must‑Know Kubernetes Features to Boost Your Cloud‑Native Apps

This article introduces ten essential Kubernetes technologies—including Helm Charts, Operators, Service Mesh, StatefulSets, CRDs, Network Policies, Pod Disruption Budgets, HPA, Persistent Volumes, and Ingress Controllers—explaining their core concepts, key capabilities, and how they improve application reliability, scalability, and security.

Cloud NativeDevOpsKubernetes
0 likes · 8 min read
Top 10 Must‑Know Kubernetes Features to Boost Your Cloud‑Native Apps
大转转FE
大转转FE
Aug 2, 2024 · Fundamentals

JavaScript Implicit Type Conversions You Didn't Know

This article examines JavaScript’s implicit type conversion mechanisms, illustrating a quirky yet functional code example, detailing conversion rules for symbols, objects, arrays, numbers, booleans, and undefined/null, and highlighting common pitfalls and practical coding tricks.

Implicit ConversionJSFuckJavaScript
0 likes · 11 min read
JavaScript Implicit Type Conversions You Didn't Know
Sohu Tech Products
Sohu Tech Products
Jul 24, 2024 · Cloud Native

Understanding Helm and Kubernetes Operators

The article explains how Helm simplifies deploying complex Kubernetes applications with a single YAML chart but cannot manage runtime operations, while Kubernetes Operators—built on custom resource definitions and webhook logic—automate tasks such as scaling, upgrades, and side‑car injection, offering higher‑level lifecycle management.

Application DeploymentCRDKubernetes
0 likes · 9 min read
Understanding Helm and Kubernetes Operators
Practical DevOps Architecture
Practical DevOps Architecture
Apr 18, 2024 · Cloud Native

Kubernetes Source Code Deep Dive and Secondary Development Course Outline

This curriculum provides a comprehensive, step‑by‑step exploration of Kubernetes internals—including kubeadm core source, Go module management, cobra libraries, kubeadm init/join processes, client‑go components, code generators, custom resources, operators, and practical deployment automation—aimed at mastering cluster setup, configuration, and advanced development.

Cluster ManagementGoclient-go
0 likes · 10 min read
Kubernetes Source Code Deep Dive and Secondary Development Course Outline
Liangxu Linux
Liangxu Linux
Mar 18, 2023 · Fundamentals

Master Linux: Run Multiple Commands in One Line with ;, &&, and ||

This guide explains how to chain multiple Linux terminal commands on a single line using the semicolon, logical OR, and logical AND operators, provides syntax examples, demonstrates combined usage, and shows how to automate sequences with shell scripts for efficient command‑line workflows.

ScriptingShelllinux
0 likes · 8 min read
Master Linux: Run Multiple Commands in One Line with ;, &&, and ||
AI Cyberspace
AI Cyberspace
Mar 5, 2023 · Fundamentals

Master C Operators and Control Flow: A Complete Guide

This article explains C language operators—including arithmetic, assignment, increment/decrement, comparison, logical, bitwise, comma, and ternary operators—covers operator precedence and associativity, and provides detailed examples of conditional and loop statements such as if/else, switch, for, while, and do/while constructs.

CControl Flowfundamentals
0 likes · 17 min read
Master C Operators and Control Flow: A Complete Guide
Sohu Tech Products
Sohu Tech Products
Aug 24, 2022 · Backend Development

What Is Reactive Programming and Its Application in Backend Development

This article explains the fundamentals of reactive programming as a declarative, data‑stream‑based paradigm, describes its core concepts such as streams, events, and operators, and demonstrates how to replace traditional imperative Java code with RxJava‑based reactive implementations for a backend service that processes MQ messages, fetches data, and updates a cache while handling errors, request deduplication, and rate limiting.

BackendRxJavaStream
0 likes · 19 min read
What Is Reactive Programming and Its Application in Backend Development
Python Programming Learning Circle
Python Programming Learning Circle
Jun 23, 2022 · Fundamentals

Python Basics: Data Types, Operators, Control Flow, and Common Functions

This comprehensive Python cheat‑sheet covers fundamental data types, arithmetic and comparison operators, boolean logic, special characters, file I/O, OS utilities, string manipulation, list and dictionary operations, control‑flow statements, loops, exception handling, and basic function, module, and package usage, providing concise examples for each concept.

control-flowdata-typesfile-io
0 likes · 7 min read
Python Basics: Data Types, Operators, Control Flow, and Common Functions
Big Data Technology Architecture
Big Data Technology Architecture
Jun 3, 2022 · Operations

Understanding Apache Airflow DAGs, Operators, and Scheduling

This article explains Apache Airflow's core concepts, including DAG definitions, scheduling intervals, task dependencies, various operators such as BashOperator, PythonOperator, Branch operators, sensors, and custom operators, and provides code examples and configuration details for building robust data pipelines.

Apache AirflowDAGScheduling
0 likes · 15 min read
Understanding Apache Airflow DAGs, Operators, and Scheduling
New Oriental Technology
New Oriental Technology
Apr 27, 2022 · Backend Development

Introduction to RxJava: Concepts, Operators, and Backpressure

This article introduces RxJava as a reactive functional programming framework based on the observer pattern, explains its core concepts, stream types, a wide range of operators, backpressure strategies, and demonstrates its practical use for data migration between MongoDB and MySQL.

JavaRxJavabackpressure
0 likes · 22 min read
Introduction to RxJava: Concepts, Operators, and Backpressure
Architect
Architect
Feb 18, 2022 · Cloud Native

Large‑Scale etcd Cluster Performance Optimization and Pod Data Splitting in Ant Group’s Sigma

This article describes how Ant Group tackled the performance ceiling of its massive Sigma Kubernetes clusters by horizontally splitting etcd storage for Pods, Leases and Events, redesigning watch handling to avoid component restarts, and using snapshot‑based migration to preserve data integrity while reducing latency.

Cluster PerformanceData MigrationKubernetes
0 likes · 27 min read
Large‑Scale etcd Cluster Performance Optimization and Pod Data Splitting in Ant Group’s Sigma
Open Source Linux
Open Source Linux
Oct 26, 2021 · Cloud Native

How Modern Distributed Apps Evolve on Kubernetes: From Monoliths to Serverless

This article explores the evolution of modern distributed applications, outlining the core primitives required for lifecycle, networking, resource binding, and state management, and examines how Kubernetes, microservices, service meshes, Knative, Dapr, and emerging trends reshape cloud‑native architectures.

Cloud NativeDaprKnative
0 likes · 30 min read
How Modern Distributed Apps Evolve on Kubernetes: From Monoliths to Serverless
Python Programming Learning Circle
Python Programming Learning Circle
Oct 8, 2021 · Fundamentals

Understanding Python’s += Operator and Mutable Tuples

This article explains the unique features of Python’s plus‑equals (+=) operator, demonstrates its usage with simple and complex examples, explores the concept of mutable elements within immutable tuples, and provides sample code illustrating how these operators work under the hood.

Mutable Data StructuresOperatorPython
0 likes · 6 min read
Understanding Python’s += Operator and Mutable Tuples
Alibaba Cloud Native
Alibaba Cloud Native
Jun 22, 2021 · Cloud Native

What’s Next for Cloud‑Native Application Delivery? Insights from CNCF’s New Co‑Chairs

CNCF’s Application Delivery SIG, now co‑chaired by Alibaba Cloud’s Deng Hongchao and VMware’s Jennifer Strejevitch, aims to advance cloud‑native app management by uniting best‑practice guidance, open‑source project stewardship, and emerging trends such as sidecars, universal control planes, GitOps, and standardized application models.

Application DeliveryCNCFCloud Native
0 likes · 11 min read
What’s Next for Cloud‑Native Application Delivery? Insights from CNCF’s New Co‑Chairs
JavaScript
JavaScript
Mar 5, 2021 · Frontend Development

Unlock JavaScript Power: 6 Essential Operators Every Developer Should Master

Explore six powerful JavaScript operators—including spread, Set, ternary, template literals, optional chaining, and nullish coalescing—through clear explanations and code snippets, showing how they simplify code, enhance readability, and boost efficiency in modern front‑end development.

CodeExamplesES2020JavaScript
0 likes · 5 min read
Unlock JavaScript Power: 6 Essential Operators Every Developer Should Master
JavaEdge
JavaEdge
Nov 27, 2020 · Databases

Mastering SQL Query Conditions: WHERE, BETWEEN, IN, AND/OR, NULL Checks

This guide explains how to filter data in MySQL using various query conditions such as WHERE, comparison operators, BETWEEN, IN, NULL checks, logical operators, short‑circuit evaluation, and operator precedence, with clear examples and visual illustrations.

SQLWHEREmysql
0 likes · 8 min read
Mastering SQL Query Conditions: WHERE, BETWEEN, IN, AND/OR, NULL Checks
DevOps Cloud Academy
DevOps Cloud Academy
Nov 24, 2020 · Operations

Deploying the EFK Stack with Local‑Volume StorageClass on OpenShift

This guide explains how to prepare resources, create a local‑volume storage class, install the Elasticsearch and Cluster Logging operators, and configure a persistent EFK stack on OpenShift, including YAML definitions, command‑line steps, and best‑practice notes on node selectors and tolerations.

EFKElasticsearchLocal Volume
0 likes · 12 min read
Deploying the EFK Stack with Local‑Volume StorageClass on OpenShift
Ctrip Technology
Ctrip Technology
Oct 29, 2020 · Mobile Development

An In‑Depth Introduction to Apple’s Combine Framework and Its Practical Applications

This article provides a comprehensive overview of Apple’s Combine framework—explaining its core concepts such as publishers, subscribers, subjects, operators, and lifecycle management—while demonstrating custom implementations, MVVM integration, and performance comparisons with RxSwift through detailed code examples.

CombinePublishersSubscribers
0 likes · 15 min read
An In‑Depth Introduction to Apple’s Combine Framework and Its Practical Applications
Python Crawling & Data Mining
Python Crawling & Data Mining
Oct 28, 2020 · Fundamentals

Master Go Operators and Control Flow: A Practical Guide

This tutorial introduces Go's fundamental operators—including arithmetic, relational, logical, bitwise, and assignment types—and explains the language's control flow constructs such as if, switch, for loops, and goto, complete with clear code examples for each concept.

BackendControl FlowGo
0 likes · 8 min read
Master Go Operators and Control Flow: A Practical Guide
High Availability Architecture
High Availability Architecture
Jun 2, 2020 · Cloud Native

Why Kubernetes Is Getting So Popular: A Technical Overview

The article explains Kubernetes' rapid rise by detailing its history, YAML‑based declarative infrastructure, GitOps workflow, scalability features, security policies, cloud‑provider integration, extensibility through CRDs and Operators, and the vibrant community that drives continuous innovation.

DevOpsKubernetesScalability
0 likes · 12 min read
Why Kubernetes Is Getting So Popular: A Technical Overview
Alibaba Cloud Native
Alibaba Cloud Native
May 8, 2020 · Cloud Native

How to Automate Multi‑Cluster Kubernetes Management with Kube‑On‑Kube

This article explains the challenges of operating many Kubernetes clusters in private‑cloud environments and presents a declarative, operator‑driven Kube‑On‑Kube architecture that dramatically cuts deployment, upgrade, and user provisioning time while remaining cloud‑native and infrastructure‑agnostic.

AutomationCloud NativeKube-on-Kube
0 likes · 13 min read
How to Automate Multi‑Cluster Kubernetes Management with Kube‑On‑Kube
Efficient Ops
Efficient Ops
Mar 9, 2020 · Fundamentals

Master Python Basics: Essential Syntax, Variables, and Operators Explained

This comprehensive guide walks you through Python fundamentals, covering its philosophy, installation, basic syntax, comments, operators, data types, variable naming, control structures, loops, functions, and module usage, providing clear examples and practical tips for quick reference.

PythonVariablesbasics
0 likes · 39 min read
Master Python Basics: Essential Syntax, Variables, and Operators Explained
Cloud Native Technology Community
Cloud Native Technology Community
Oct 29, 2019 · Cloud Native

Key Takeaways from the 2019 Cloud Native State of the Union Speech at CNBPS

At the 2019 Cloud Native State of the Union speech, CTO Chen Kai highlighted the maturation of cloud native technologies, the central role of Kubernetes and operators, the shift toward hybrid and multi‑cloud deployments, and practical guidance for adopting cloud native infrastructure, service mesh, and API management in enterprises.

API ManagementKubernetesMicroservices
0 likes · 11 min read
Key Takeaways from the 2019 Cloud Native State of the Union Speech at CNBPS
Alibaba Cloud Native
Alibaba Cloud Native
Oct 27, 2019 · Cloud Native

How Ant Financial Scales Kubernetes: Inside Their Kube‑on‑Kube Management System

This article explains how Ant Financial designs and operates a large‑scale, highly available Kubernetes management platform—using end‑state driven operators, custom CRDs, self‑healing mechanisms, and risk‑mitigation strategies—to reliably run thousands of nodes and dozens of business clusters in production.

Cluster ManagementKube-on-KubeKubernetes
0 likes · 15 min read
How Ant Financial Scales Kubernetes: Inside Their Kube‑on‑Kube Management System
dbaplus Community
dbaplus Community
Sep 4, 2019 · Operations

Running Kafka on Kubernetes: Practical Tips, Pitfalls, and Best Practices

This guide explains how to run Kafka on Kubernetes, covering runtime resource needs, storage considerations, network requirements, configuration with Pods, StatefulSets, Helm charts and Operators, performance testing, monitoring, logging, health checks, rolling updates, scaling, and backup strategies.

KafkaKubernetesOps
0 likes · 12 min read
Running Kafka on Kubernetes: Practical Tips, Pitfalls, and Best Practices
AntTech
AntTech
Aug 15, 2019 · Cloud Native

Design and Implementation of Ant Financial’s Large‑Scale Kubernetes Cluster Management System

This article explains how Ant Financial designs a highly reliable, end‑state‑driven Kubernetes management platform that handles lifecycle operations, node self‑healing, and risk‑controlled changes for clusters with tens of thousands of nodes, using operators, custom resources, and a meta‑cluster architecture.

Cluster ManagementKuberneteslarge scale
0 likes · 9 min read
Design and Implementation of Ant Financial’s Large‑Scale Kubernetes Cluster Management System
21CTO
21CTO
Jun 6, 2019 · Operations

How 5G License Rollout Reshapes China’s Telecom Market: Winners, Losers, and Future Challenges

The article analyzes the impact of China’s early 5G commercial license issuance on telecom operators, equipment manufacturers, and mobile handset makers, forecasting capital‑spending shifts, market pressures, technology choices, and consumer adoption hurdles that will shape the industry’s short‑ and long‑term trajectory.

5GMarket analysisequipment manufacturers
0 likes · 18 min read
How 5G License Rollout Reshapes China’s Telecom Market: Winners, Losers, and Future Challenges
MaGe Linux Operations
MaGe Linux Operations
Sep 24, 2018 · Fundamentals

Master Linux Command Linking: 10 Essential Operators Explained

Learn how Linux linking operators combine commands for background execution, sequential runs, conditional logic, piping, and grouping, with clear explanations and practical examples for each of the ten operators, helping you write more efficient scripts, automate tasks, and improve system productivity.

Scriptinglinuxoperators
0 likes · 8 min read
Master Linux Command Linking: 10 Essential Operators Explained
AI Cyberspace
AI Cyberspace
May 16, 2018 · Fundamentals

Master C Operators: From Arithmetic to sizeof – A Complete Guide

This comprehensive guide explains C language operators—including arithmetic, relational, logical, assignment, comma, and sizeof—detailing their types, precedence, associativity, and usage with clear examples and code snippets to help you write correct and efficient expressions.

C programmingCode ExamplesExpression Evaluation
0 likes · 12 min read
Master C Operators: From Arithmetic to sizeof – A Complete Guide
UCloud Tech
UCloud Tech
Nov 14, 2017 · Databases

Unlocking Cloud TiDB: Kubernetes‑Powered Scaling for Distributed NewSQL

This article explains how Cloud TiDB, a cloud‑native NewSQL database launched by UCloud and PingCAP, leverages Kubernetes integration, operators, and custom volume management to provide elastic scaling, high availability, and efficient lifecycle management for distributed workloads.

Cloud-ComputingDistributed-DatabaseKubernetes
0 likes · 9 min read
Unlocking Cloud TiDB: Kubernetes‑Powered Scaling for Distributed NewSQL
ITPUB
ITPUB
Aug 23, 2017 · Operations

Master Bash: Essential Variables, Operators, and Conditional Statements

This guide introduces Bash scripting fundamentals, covering predefined variables, declaration operators, and practical examples of single‑, double‑, and multi‑branch if statements for tasks such as checking user privileges, disk usage, and service status on Linux systems.

AutomationBashIf Statements
0 likes · 5 min read
Master Bash: Essential Variables, Operators, and Conditional Statements
Hujiang Technology
Hujiang Technology
Aug 7, 2017 · Fundamentals

Kotlin Generics, Collections, and Operators – Chapter 6

This article explains Kotlin's generic type system, collection interfaces, variance with in/out keywords, collection initialization methods, and the extensive set of operators, providing code examples and implementation details to help developers master Kotlin's core language features.

CollectionsGenericsKotlin
0 likes · 8 min read
Kotlin Generics, Collections, and Operators – Chapter 6
Programmer DD
Programmer DD
Aug 1, 2017 · Frontend Development

Master Regex Splitting: Break Down Complex Patterns with Confidence

This article explains how to dissect JavaScript regular expressions into their structural components, covering operators, precedence, common pitfalls, and practical examples such as ID card and IPv4 validation, enabling readers to read and write regexes more reliably.

operatorspattern splittingregex
0 likes · 10 min read
Master Regex Splitting: Break Down Complex Patterns with Confidence
Java Backend Technology
Java Backend Technology
Jun 24, 2017 · Databases

Master MySQL: Essential Commands, Data Types & Optimization Tips

This guide provides a comprehensive overview of MySQL, covering essential commands for login, service control, and status checks, explains SQL statement categories, details supported data types with optimization tips, and lists useful operators, functions, and status‑viewing commands.

Data TypesDatabase Commandsfunctions
0 likes · 9 min read
Master MySQL: Essential Commands, Data Types & Optimization Tips
Tencent IMWeb Frontend Team
Tencent IMWeb Frontend Team
Jun 20, 2017 · Frontend Development

Master JavaScript Operators: From Identifiers to Advanced Usage

This article explains JavaScript identifiers and systematically breaks down every type of operator—from unary and boolean to relational, equality, conditional, assignment, comma, and bitwise—illustrating each with clear definitions, code examples, and visual diagrams for front‑end developers.

ECMAScriptIdentifiersfrontend
0 likes · 12 min read
Master JavaScript Operators: From Identifiers to Advanced Usage