Tagged articles
33 articles
Page 1 of 1
Coder Trainee
Coder Trainee
Mar 7, 2026 · Backend Development

Why @Data and @Builder Conflict in Lombok: Avoid This Common Pitfall

When @Data and @Builder are used together on a Lombok‑annotated class, the generated code can lose getters, setters, and the no‑argument constructor, leading to compilation failures; the article explains the cause and shows how to fix it with @NoArgsConstructor and @RequiredArgsConstructor.

@DataBuilderCode Generation
0 likes · 4 min read
Why @Data and @Builder Conflict in Lombok: Avoid This Common Pitfall
Big Data Technology Tribe
Big Data Technology Tribe
Mar 1, 2026 · Backend Development

How Ray Data Turns Logical Plans into Executable Workflows – A Deep Dive

This article provides a comprehensive, step‑by‑step explanation of Ray Data's LogicalPlan architecture, covering its class hierarchy, core methods, logical operators, optimization rules, planning from logical to physical operators, execution binding, metadata inference, lineage serialization, and the full file/module index for developers building scalable data pipelines.

@DataBackendLogicalPlan
0 likes · 35 min read
How Ray Data Turns Logical Plans into Executable Workflows – A Deep Dive
AntTech
AntTech
Apr 17, 2025 · Artificial Intelligence

Data+AI Forum at the 18th China Electronics Information Conference (2025) – Speaker Bios and Session Summaries

The 18th China Electronics Information Conference will be held in Chengdu from April 17‑21, 2025, featuring the DATA+AI forum that gathers leading academicians and industry experts to discuss data‑AI integration, with detailed speaker biographies, presentation titles, and abstracts covering topics such as large‑model inference, cloud‑edge ultrasound diagnostics, and the future of databases in the AI era.

@DataAIBig Data
0 likes · 12 min read
Data+AI Forum at the 18th China Electronics Information Conference (2025) – Speaker Bios and Session Summaries
21CTO
21CTO
Sep 10, 2024 · Artificial Intelligence

Why AI Has Only a Seven‑Year History and What AI Infrastructure Means for the Future

In this speech, academician Wang Jian reflects on the short, seven‑year history of modern AI, distinguishes AI, AI+ and AI infrastructure, explains how data, models and compute power have become the new foundational layer, and examines the roles of Google, OpenAI, transformers, and cloud services in shaping today’s AI revolution.

@DataAI InfrastructureAI+
0 likes · 20 min read
Why AI Has Only a Seven‑Year History and What AI Infrastructure Means for the Future
AntData
AntData
Sep 9, 2024 · Big Data

From Cost‑Efficiency to Value‑Centric: The Evolution of Data Systems in the Data+AI Era

The article reviews the rapid advances in generative AI and big‑data technologies, traces the historical development of data infrastructure, and argues that modern data systems are shifting from a cost‑efficiency focus to a value‑centric paradigm driven by multimodal, non‑structured data, vector search and machine‑oriented services.

@DataBig DataData Value
0 likes · 18 min read
From Cost‑Efficiency to Value‑Centric: The Evolution of Data Systems in the Data+AI Era
Tencent Advertising Technology
Tencent Advertising Technology
Jul 19, 2024 · Artificial Intelligence

The Brutal Aesthetics of Data and Compute: Scaling Laws, Generative AI, and the Evolution of Advertising Systems

This article explains how the scaling law—massive data, compute, and a simple transformer architecture—drives generative AI breakthroughs, how Tencent applied this principle to build larger ad models and the "Hunyuan" large model, and how advertising systems must evolve to truly understand content and users.

@DataAIModel Management
0 likes · 11 min read
The Brutal Aesthetics of Data and Compute: Scaling Laws, Generative AI, and the Evolution of Advertising Systems
Bilibili Tech
Bilibili Tech
Nov 14, 2023 · Artificial Intelligence

Data & AI Con Shanghai 2023: Conference Overview

Data & AI Con Shanghai 2023, hosted by Shishuo on November 18, will include a main forum and seven sub‑forums covering modern data architecture, data engineering, large‑model deployment, AI infrastructure and generative AI, featuring over 40 leading engineers and researchers from Intel, NVIDIA, ByteDance, AWS, Microsoft and Tencent, with free online registration.

@DataAIBig Data
0 likes · 3 min read
Data & AI Con Shanghai 2023: Conference Overview
DataFunSummit
DataFunSummit
Nov 1, 2023 · Artificial Intelligence

DataFunCon2023 Shenzhen: Program Overview and Session Highlights

DataFunCon2023 Shenzhen showcases a comprehensive program featuring expert talks on building Data+LLM applications, large-scale storage, cloud‑native architectures, metric systems, data governance, AB testing, and industry‑specific large language model use cases across finance, gaming, advertising, and more, providing valuable insights for practitioners and researchers alike.

@DataAIGCBig Data
0 likes · 50 min read
DataFunCon2023 Shenzhen: Program Overview and Session Highlights
Model Perspective
Model Perspective
Oct 13, 2023 · Fundamentals

Why Simple Models Outperform Complex Ones: Lessons from Mathematical Modeling

The article shares key insights from Dr Wu Jun’s book on mathematical modeling, emphasizing the power of simplicity, iterative refinement, abundant accurate data, and noise analysis while also offering broader philosophical reflections on problem‑solving, algorithms, education, and information.

@Dataiterationmathematical modeling
0 likes · 8 min read
Why Simple Models Outperform Complex Ones: Lessons from Mathematical Modeling
Java Backend Technology
Java Backend Technology
Aug 31, 2023 · Backend Development

Why Lombok @Data + @Builder Breaks No‑Args Constructors and How to Fix It

When Lombok's @Data and @Builder annotations are used together, the generated no‑argument constructor disappears, causing compilation errors; this article explains the root cause, demonstrates the problem with code examples, and provides two reliable solutions using @Tolerate or a combination of @RequiredArgsConstructor and @NoArgsConstructor.

@DataBuilderJava
0 likes · 6 min read
Why Lombok @Data + @Builder Breaks No‑Args Constructors and How to Fix It
Efficient Ops
Efficient Ops
Mar 15, 2023 · Operations

How Human‑Machine Collaboration Is Redefining Operations with AIOps

The article explores how AIOps, a human‑machine collaborative approach powered by data, algorithms, and contextual knowledge, transforms modern operations by enabling real‑time insight, predictive decision‑making, automated execution, and continuous feedback, especially in complex, security‑sensitive environments like finance.

@DataOperationsaiops
0 likes · 11 min read
How Human‑Machine Collaboration Is Redefining Operations with AIOps
ITPUB
ITPUB
Dec 27, 2022 · Cloud Computing

How Digital Twins and Edge Computing Power the Next IoT Wave

The article outlines three technology waves—from PC internet to mobile internet and now the Internet of Everything—explains JD's IoT team's practical experiences with device and scene digital twins, edge computing, and data-driven intelligence, and offers a forward‑looking view on how these technologies will reshape industries.

@DataDigital TwinEdge Computing
0 likes · 14 min read
How Digital Twins and Edge Computing Power the Next IoT Wave
Programmer DD
Programmer DD
Oct 12, 2022 · Backend Development

Why Lombok @Data + @Builder Breaks No‑Args Constructors and How to Fix It

This article explains why combining Lombok's @Data and @Builder annotations removes the automatically generated no‑argument constructor, demonstrates the compilation process behind Lombok, and provides two practical solutions using @Tolerate or @RequiredArgsConstructor/@NoArgsConstructor to restore the missing constructor.

@DataBuilderCompilation
0 likes · 6 min read
Why Lombok @Data + @Builder Breaks No‑Args Constructors and How to Fix It
Zhongtong Tech
Zhongtong Tech
Dec 17, 2021 · Operations

How Digitalization Is Revolutionizing China's Logistics Industry

At the WISE2021 China Digital Innovation Summit, Zhongtong Express CTO Zhu Jingxi detailed the company's digital transformation journey, highlighting the impact of electronic waybills, data-driven operations, AI routing, and privacy security on reshaping the logistics supply chain and boosting efficiency.

@DataAILogistics
0 likes · 11 min read
How Digitalization Is Revolutionizing China's Logistics Industry
Full-Stack Trendsetter
Full-Stack Trendsetter
Oct 20, 2021 · Frontend Development

Why Vue Component data Must Be a Function, Not an Object

The article explains that while a Vue root instance can define its data as an object or a function, a component's data must be a function to avoid shared memory between instances, illustrating the issue with code examples and detailing Vue's option‑merge validation.

@DataComponentJavaScript
0 likes · 4 min read
Why Vue Component data Must Be a Function, Not an Object
Laravel Tech Community
Laravel Tech Community
Sep 4, 2020 · Fundamentals

Comprehensive Collection of Regular Expressions for Data Validation

An extensive compilation of regular expressions covering numeric, character, email, URL, phone, ID, password, date, IP, and other validation patterns, complete with examples and explanations, providing developers a ready reference for implementing robust input validation across various programming contexts.

@DataBackendinput validation
0 likes · 5 min read
Comprehensive Collection of Regular Expressions for Data Validation
JD Retail Technology
JD Retail Technology
Aug 27, 2020 · Artificial Intelligence

Academia vs. Industry in AI: Differences, Development Challenges, and Collaborative Opportunities

The article compares academic and industrial AI research by examining leadership, team composition, research focus, funding, compute resources, and data usage, outlines core AI elements and development challenges, presents JD's AR try‑on and try‑shoe projects, and proposes collaboration models and talent‑exchange mechanisms to bridge the two worlds.

@DataAIAR
0 likes · 15 min read
Academia vs. Industry in AI: Differences, Development Challenges, and Collaborative Opportunities
Programmer DD
Programmer DD
May 16, 2020 · Databases

Master Elasticsearch SQL: From Basic Queries to Advanced DSL Translations

This article walks through using Elasticsearch SQL to query data, covering installation, loading sample datasets, describing index schemas, executing simple and complex SQL queries with functions, converting SQL to Elasticsearch DSL, reindexing, alias management, and performance considerations, all illustrated with code snippets.

@DataDSLElasticsearch
0 likes · 15 min read
Master Elasticsearch SQL: From Basic Queries to Advanced DSL Translations
Big Data Technology & Architecture
Big Data Technology & Architecture
Mar 8, 2020 · Big Data

Understanding Data, Metrics, and Indicator Systems: From Basic Concepts to Pirate Metrics and First‑Key‑Metric Method

The article explains the nature of raw data, defines metrics as data combined with business scenarios, introduces five‑question criteria for good indicators, and compares two popular metric‑system frameworks—the Pirate Metrics (AARRR) model and the First‑Key‑Metric method, illustrating their application in business decision‑making.

@DataBusiness IntelligenceIndicator System
0 likes · 8 min read
Understanding Data, Metrics, and Indicator Systems: From Basic Concepts to Pirate Metrics and First‑Key‑Metric Method
Programmer DD
Programmer DD
Mar 7, 2020 · Big Data

Explore 50+ Free Unlimited-Use APIs for Data, Weather, Finance & More

This article compiles a comprehensive list of over fifty free, unlimited-use API interfaces covering phone number lookup, historical events, stock data, weather forecasts, ID verification, jokes, currency exchange, and many other services, each with direct documentation links for developers.

@DataAPIFree
0 likes · 13 min read
Explore 50+ Free Unlimited-Use APIs for Data, Weather, Finance & More
Python Programming Learning Circle
Python Programming Learning Circle
Jan 14, 2020 · Fundamentals

Essential Python Libraries: A Comprehensive Guide to Tools for Development, Data, AI, and More

This article presents an extensive, organized catalog of Python libraries covering file handling, image processing, game development, big data, artificial intelligence, networking, web frameworks, security, GUI creation, testing, and deployment, offering concise descriptions to help developers quickly discover the right tools for any project.

@DataAIDevelopment
0 likes · 47 min read
Essential Python Libraries: A Comprehensive Guide to Tools for Development, Data, AI, and More
DataFunTalk
DataFunTalk
Jul 19, 2019 · Artificial Intelligence

From the Pre‑Recommendation Era to the Bronze Age: Evolution of Recommendation Systems and Mitigating the Matthew Effect

The article traces the historical development of recommendation systems from early manual and hot‑ranking methods through natural ranking and machine‑learning‑based scoring, discusses the Matthew effect and its mitigation via randomization, multi‑objective weighting, and pipeline architectures, and outlines modern personalization and recall strategies for e‑commerce platforms.

@DataAlgorithmse‑commerce
0 likes · 25 min read
From the Pre‑Recommendation Era to the Bronze Age: Evolution of Recommendation Systems and Mitigating the Matthew Effect
21CTO
21CTO
Jul 2, 2019 · Artificial Intelligence

What Is Knowledge in AI? Exploring Intelligent Systems and Future Opportunities

The article defines knowledge as feature representations that solve problems, outlines the three components of intelligent systems, highlights AI’s historic significance, predicts its development trends, and presents a systematic innovation framework emphasizing data, policy, and market-driven approaches.

@DataInnovationartificial intelligence
0 likes · 5 min read
What Is Knowledge in AI? Exploring Intelligent Systems and Future Opportunities
21CTO
21CTO
Nov 27, 2017 · Artificial Intelligence

What Hardware and Software Do You Really Need for Deep Learning?

This guide answers common beginner questions about deep learning, covering the essential hardware (especially GPUs and why Nvidia dominates), recommended software libraries, the choice between dynamic and static computation graphs, production considerations, required coding background, and how small datasets can still yield powerful models.

@DataDeep LearningGPU
0 likes · 11 min read
What Hardware and Software Do You Really Need for Deep Learning?
Architects' Tech Alliance
Architects' Tech Alliance
Oct 17, 2017 · Artificial Intelligence

AI Learning Resources and Architecture Overview – A Curated Collection

This article presents a comprehensive collection of AI, machine learning, and deep learning learning materials, including historical overviews, technology architectures, application domains, and numerous downloadable resources such as tutorials, datasets, and code links, aimed at guiding enthusiasts and professionals in intelligent operations.

@DataDeep LearningResources
0 likes · 16 min read
AI Learning Resources and Architecture Overview – A Curated Collection
21CTO
21CTO
Jan 3, 2016 · Artificial Intelligence

What Will Shape the Next 20 Years? Kevin Kelly’s Vision of the Oxygen Era

Kevin Kelly’s three‑hour Stanford talk predicts a shift to an "oxygen" era where wireless data, personal‑device communication, AI, blockchain and immersive technologies will dominate, reshaping business models, innovation cycles and the very way we share and monetize information over the next two decades.

@DataBlockchainInnovation
0 likes · 16 min read
What Will Shape the Next 20 Years? Kevin Kelly’s Vision of the Oxygen Era