Tagged articles
64 articles
Page 1 of 1
AI Illustrated Series
AI Illustrated Series
Apr 25, 2026 · Artificial Intelligence

How Agents Work: Inside Their Perception, Planning, Action, and Memory

This article breaks down an AI agent's workflow—perception, planning, action, and memory—using a product‑launch example, explains reasoning methods like Chain‑of‑Thought and ReAct, details tool integration, memory types, common failure modes, and why planning and tool ecosystems are essential.

AI AgentMemoryPlanning
0 likes · 11 min read
How Agents Work: Inside Their Perception, Planning, Action, and Memory
ZhiKe AI
ZhiKe AI
Apr 19, 2026 · Artificial Intelligence

What Is an AI Agent? A 3‑Minute Beginner’s Guide

An AI Agent is a large‑model system that can perceive its environment, plan steps, invoke tools, and remember past interactions to autonomously achieve user‑specified goals, distinguishing it from simple chatbots that only answer questions.

AI AgentAutomationLarge Model
0 likes · 6 min read
What Is an AI Agent? A 3‑Minute Beginner’s Guide
Data STUDIO
Data STUDIO
Apr 10, 2026 · Artificial Intelligence

Tree of Thoughts Architecture: Enabling AI to Explore Multiple Reasoning Paths

This article introduces the Tree of Thoughts (ToT) reasoning framework, explains its search‑tree based workflow, demonstrates a full implementation with LangGraph to solve the classic wolf‑goat‑cabbage puzzle, and compares its reliability against a simple Chain‑of‑Thought approach.

AI reasoningLLMLangGraph
0 likes · 19 min read
Tree of Thoughts Architecture: Enabling AI to Explore Multiple Reasoning Paths
Architect
Architect
Mar 27, 2026 · Artificial Intelligence

Turning AI Agents into a Planning‑First Development Engine

The article analyzes Matt Van Horn’s workflow that replaces traditional IDEs with a planning‑first approach using markdown task files, voice input, parallel research agents, and a custom "last30days" engine, showing how AI can orchestrate research, planning, execution, and verification to boost productivity across code and non‑code tasks.

AIAutomationPlanning
0 likes · 24 min read
Turning AI Agents into a Planning‑First Development Engine
AI Engineer Programming
AI Engineer Programming
Mar 25, 2026 · Artificial Intelligence

What Is an AI Agent? Definition, Core Capabilities, and Architecture

The article explains AI agents as autonomous systems that perceive environments, plan, use tools, iterate through action loops, and self‑reflect, contrasting them with traditional chatbots and workflows, and outlines their core abilities, memory types, tool‑use mechanisms, and single‑ versus multi‑agent architectures.

AI AgentMemoryMulti-Agent
0 likes · 8 min read
What Is an AI Agent? Definition, Core Capabilities, and Architecture
AgentGuide
AgentGuide
Mar 19, 2026 · Artificial Intelligence

What Exactly Is an AI Agent? Complete Interview Guide

This article breaks down the concept of AI agents for interview preparation, covering their definition, core components like planning, memory, and tool use, differences from plain LLM chats, real‑world challenges, typical use cases, detailed component analysis, and a runnable pseudo‑code example.

AI AgentLLMMemory
0 likes · 9 min read
What Exactly Is an AI Agent? Complete Interview Guide
Architect's Ambition
Architect's Ambition
Mar 18, 2026 · Artificial Intelligence

From Zero to a Real AI Agent: Master Its Core Essence, Not Just API Calls

The article explains why an AI Agent is more than a simple LLM API call, outlines its four essential modules—memory, planning, tool use, and feedback—shows how they differ from ordinary models, and offers practical steps and common pitfalls for building a production‑grade single‑agent system.

AI AgentFeedback LoopLLM
0 likes · 13 min read
From Zero to a Real AI Agent: Master Its Core Essence, Not Just API Calls
Architect's Ambition
Architect's Ambition
Mar 16, 2026 · Artificial Intelligence

Understanding AI Agents: From Chatting to Getting Things Done

The article explains the four essential components of AI Agents—brain, memory, tool, and planning layers—illustrates their implementation with Python code, compares planning strategies, shares a real-world OOM fault‑diagnosis case, and lists common pitfalls to help newcomers build functional agents.

AI AgentLLMMemory Management
0 likes · 17 min read
Understanding AI Agents: From Chatting to Getting Things Done
Architect
Architect
Feb 13, 2026 · Artificial Intelligence

Cutting Agent Costs: Practical Tips from the ‘Toward Efficient Agents’ Survey

The article analyzes why autonomous LLM agents become expensive, breaks down their cost components, and presents concrete engineering strategies—memory management, tool‑call optimization, and planning constraints—to dramatically reduce token usage and improve reliability while maintaining performance.

Cost OptimizationLLM agentsPlanning
0 likes · 19 min read
Cutting Agent Costs: Practical Tips from the ‘Toward Efficient Agents’ Survey
PaperAgent
PaperAgent
Jan 26, 2026 · Artificial Intelligence

How Efficient Agents Are Redefining Memory, Tool Learning, and Planning in 2026

A joint survey by nine leading Chinese institutions outlines the efficiency crisis of modern AI agents and proposes three strategic directions—efficient memory, tool learning, and planning—detailing concrete mechanisms, representative models, and emerging trends for building high‑performing, low‑cost agents.

2026AI AgentsAgentic AI
0 likes · 11 min read
How Efficient Agents Are Redefining Memory, Tool Learning, and Planning in 2026
PaperAgent
PaperAgent
Jan 20, 2026 · Artificial Intelligence

How Intrinsic Self‑Critique Boosts LLM Planning Accuracy to 89% %​

Google DeepMind's new "Intrinsic Self‑Critique" method lets large language models iteratively self‑evaluate and rewrite their plans, raising Blocksworld planning accuracy from 49.8% to 89.3% and setting new records across multiple planning benchmarks.

AI researchLLMPlanning
0 likes · 5 min read
How Intrinsic Self‑Critique Boosts LLM Planning Accuracy to 89% %​
AI Insight Log
AI Insight Log
Jan 18, 2026 · Artificial Intelligence

8 Actionable Practices from Cursor’s Week‑Long, Million‑Line Coding Experiment

Cursor ran a team of AI coding agents for a week to build a prototype browser, uncovering three major failure modes—drift, collaboration breakdown, and lack of quality signals—and proposing a planner/worker split plus eight concrete tactics that ordinary developers can adopt for long‑running autonomous coding tasks.

AI AgentsAutomationCursor
0 likes · 10 min read
8 Actionable Practices from Cursor’s Week‑Long, Million‑Line Coding Experiment
Data Party THU
Data Party THU
Nov 24, 2025 · Artificial Intelligence

Model-Free vs Model-Based RL: Core Concepts and Large-Model Applications

This article explains the fundamental architecture of reinforcement learning, contrasting model‑free and model‑based approaches, detailing environment models, planning, data augmentation, expert iteration, and embedding planning, and then examines how large language models use policy‑based methods such as PPO, DPO, and GRPO for RL‑HF.

Model-BasedModel-freePlanning
0 likes · 13 min read
Model-Free vs Model-Based RL: Core Concepts and Large-Model Applications
Wu Shixiong's Large Model Academy
Wu Shixiong's Large Model Academy
Oct 24, 2025 · Artificial Intelligence

Can Large Language Models Truly Plan? Unpacking Agent Frameworks

This article explains why most LLM‑based agents only perform pseudo‑planning through prompts or hard‑coded loops, outlines when to rely on prompt‑driven versus program‑driven planning, compares popular frameworks such as ReAct, MRKL, BabyAGI and AutoGPT, and clarifies what true autonomous planning would require.

AgentAutoGPTLLM
0 likes · 12 min read
Can Large Language Models Truly Plan? Unpacking Agent Frameworks
Tech Stroll Journey
Tech Stroll Journey
Oct 15, 2025 · Artificial Intelligence

From Tools to Autonomous Employees: Understanding AI Agents

This article explains AI Agents by contrasting them with traditional AI tools, detailing their official definition, core components—planning, tool use, memory, action—illustrating a travel‑planning example, outlining agent types, and highlighting their significance for AGI and real‑world applications.

AI AgentAutonomous AIMemory
0 likes · 7 min read
From Tools to Autonomous Employees: Understanding AI Agents
Old Zhao – Management Systems Only
Old Zhao – Management Systems Only
Sep 26, 2025 · Operations

Unlock Supply Chain Efficiency: Master Planning, Inventory, Logistics & Receivables

This article reveals why many businesses struggle with supply‑chain efficiency and explains how focusing on four critical links—planning, inventory management, logistics, and receivables—can transform operations, reduce costs, and improve customer satisfaction, offering practical examples and a downloadable template for immediate implementation.

LogisticsOperations ManagementPlanning
0 likes · 7 min read
Unlock Supply Chain Efficiency: Master Planning, Inventory, Logistics & Receivables
Old Zhao – Management Systems Only
Old Zhao – Management Systems Only
Sep 3, 2025 · Operations

How to Prevent Stock Overload and Material Shortages with Smart Procurement Planning

Learn why many companies suffer from excess inventory yet material shortages, and follow a step‑by‑step procurement planning framework—collecting demand, expanding BOM, calculating net needs, scheduling based on lead times, and continuously adjusting—to keep stock balanced, avoid production delays, and optimize supply chain efficiency.

Planninginventory managementprocurement
0 likes · 5 min read
How to Prevent Stock Overload and Material Shortages with Smart Procurement Planning
Youzan Coder
Youzan Coder
Aug 13, 2025 · Artificial Intelligence

Understanding AI Agents: Core Modules, Planning Strategies, and Evaluation

This article explains what an AI agent is, outlines its four core modules—perception, memory, planning, and action—describes the role of large language models, compares software development generations, discusses memory implementations, planning methods like ReAct and Plan‑and‑Solve, and covers evaluation, cost analysis, and differences between agents and workflows.

AIAgentLLM
0 likes · 15 min read
Understanding AI Agents: Core Modules, Planning Strategies, and Evaluation
JD Tech Talk
JD Tech Talk
Jul 28, 2025 · Artificial Intelligence

8 Key Features of JD.com’s Open‑Source Genie AI Agent

JD.com’s Genie open‑source AI agent introduces eight powerful capabilities—including plug‑in multi‑agent support, iterative planning, cross‑task context sharing, digital employee enhancements, deep model‑plus‑search, CodeTool for code lifecycle, refined system prompts, and a configurable MCP server—designed to boost intelligent workflow efficiency.

AI AgentPlanningSearch
0 likes · 1 min read
8 Key Features of JD.com’s Open‑Source Genie AI Agent
Architect
Architect
Jul 6, 2025 · Artificial Intelligence

How Graphs Empower AI Agents: Taxonomy, Advances, and Future Opportunities

An extensive review introduces a taxonomy for integrating graph techniques with AI agents, detailing how graphs enhance core functions such as planning, execution, memory, and multi‑agent coordination, and discusses representative applications, challenges, and future research directions.

AI AgentsKnowledge GraphsPlanning
0 likes · 9 min read
How Graphs Empower AI Agents: Taxonomy, Advances, and Future Opportunities
Old Zhao – Management Systems Only
Old Zhao – Management Systems Only
Jun 3, 2025 · Operations

How to Turn Procurement into a Profit‑Driving Powerhouse

This article reveals why procurement is often underestimated, outlines the three essential capabilities—planning, collaboration, and cost control—and provides a step‑by‑step framework for creating effective purchase plans, aligning with production, sales, and R&D, and mastering total‑cost management to boost company profitability.

Cost ManagementPlanningprocurement
0 likes · 8 min read
How to Turn Procurement into a Profit‑Driving Powerhouse
Alibaba Cloud Developer
Alibaba Cloud Developer
May 26, 2025 · Artificial Intelligence

How Multi‑Agent Planning Boosts Copilot 3.0 with DeepSeek R1 GRPO Training

This article examines Copilot 3.0’s planning module, explains how DeepSeek R1’s GRPO reinforcement‑learning pipeline enables flexible multi‑agent orchestration, addresses the limitations of Copilot 2.0, and presents experimental results that show a 61% reduction in reasoning length and a 9% relative gain in accuracy.

AIModel TrainingMulti-Agent
0 likes · 14 min read
How Multi‑Agent Planning Boosts Copilot 3.0 with DeepSeek R1 GRPO Training
DevOps
DevOps
May 13, 2025 · Artificial Intelligence

The Rise of AI Agents: Current Trends, Core Capabilities, and Future Outlook

This article surveys the rapid emergence of AI agents, outlining their projected 2025 breakthrough, market momentum, key frameworks such as Manus and MCP, the four core abilities of perception, planning, tool use, and memory, and the evolving landscape of multimodal and autonomous AI systems.

AI AgentsMemoryPlanning
0 likes · 11 min read
The Rise of AI Agents: Current Trends, Core Capabilities, and Future Outlook
Alibaba Cloud Developer
Alibaba Cloud Developer
Apr 25, 2025 · Artificial Intelligence

Unlocking AI Agents: Theory, Design Patterns, and Hands‑On Experiments

This article combines theoretical analysis and practical case studies to systematically explore the core components, design patterns, and future directions of AI agents, detailing the implementation of OpenManus, custom memory and planning modules, experimental evaluations, and insights for improving agent reliability and scalability.

AI AgentLLMMemory
0 likes · 31 min read
Unlocking AI Agents: Theory, Design Patterns, and Hands‑On Experiments
Data Thinking Notes
Data Thinking Notes
Apr 15, 2025 · Artificial Intelligence

Understanding AI Agents: From Reinforcement Learning to LLM-Powered Planning

Professor Li Hongyi’s lecture provides a comprehensive, step‑by‑step exploration of AI agents, covering their definitions, reinforcement‑learning roots, LLM integration, memory mechanisms, tool usage, planning strategies, benchmarks, and practical examples, offering a valuable resource for anyone studying modern artificial intelligence.

AI AgentsBenchmarkMemory
0 likes · 67 min read
Understanding AI Agents: From Reinforcement Learning to LLM-Powered Planning
Fun with Large Models
Fun with Large Models
Mar 2, 2025 · Artificial Intelligence

Why 2025 Is the Year of AI Agents: Definitions, Types, and Real‑World Examples

The article explains what AI Agents are, how they differ from single large‑model systems, outlines four agent architectures—Reflection, Tool Use, Planning, and Multi‑Agent—and cites concrete examples from Grammarly, VS Code plugins, Image Describer X, ChatDev, as well as initiatives by Tencent and Google, highlighting the 2025 AI Agent boom.

ChatDevMulti-AgentPlanning
0 likes · 9 min read
Why 2025 Is the Year of AI Agents: Definitions, Types, and Real‑World Examples
ByteDance SYS Tech
ByteDance SYS Tech
Feb 18, 2025 · Operations

How Can Data Center Planning Cut Costs and Boost Efficiency?

This article explains how a mixed‑integer programming tool developed by ByteDance's SYS‑DCD team integrates cost, reliability, delivery speed, and environmental metrics to optimize data‑center planning, reduce power waste, and accelerate deployment across multiple regional scenarios.

Data centerLinear ProgrammingOperations
0 likes · 15 min read
How Can Data Center Planning Cut Costs and Boost Efficiency?
Architecture Breakthrough
Architecture Breakthrough
Feb 18, 2025 · R&D Management

How to Turn OKRs into Actionable Plans: A Practical Guide

This article explains how to differentiate goals from plans, align objectives with strategy using SMART and OKR principles, apply Work Breakdown Structure (WBS) to break down goals into concrete actions, and use time‑management techniques like the Eisenhower matrix for effective execution.

Goal SettingManagementOKR
0 likes · 5 min read
How to Turn OKRs into Actionable Plans: A Practical Guide
JD Tech
JD Tech
Feb 14, 2025 · Artificial Intelligence

JD Merchant Intelligent Assistant – Multi‑Agent System Architecture, Planning, and Evaluation

JD’s Merchant Intelligent Assistant leverages a large‑language‑model‑based multi‑agent architecture to provide 24/7 e‑commerce support, detailing its evolution, planning techniques, online inference, evaluation methods, sample generation, and practical insights for scalable AI‑driven operations.

AutomationE-commerce AILLM
0 likes · 22 min read
JD Merchant Intelligent Assistant – Multi‑Agent System Architecture, Planning, and Evaluation
Infra Learning Club
Infra Learning Club
Feb 7, 2025 · Artificial Intelligence

Understanding LLM Agents: Architecture, Capabilities, and Key Challenges

This article explains what LLM agents are, their core components—brain, memory, planning, and tool use—illustrates how they handle complex queries through task decomposition, surveys notable frameworks, and discusses key challenges such as limited context, long‑term planning difficulties, output inconsistency, and prompt dependence.

AI ArchitectureLLM agentsMemory
0 likes · 15 min read
Understanding LLM Agents: Architecture, Capabilities, and Key Challenges
DataFunTalk
DataFunTalk
Jan 27, 2025 · Artificial Intelligence

Improving AI Agent Planning and Reasoning: Challenges and Practical Solutions

The article examines current limitations of AI agents in planning and complex reasoning, critiques existing methods like COT/TOT and ReAct, and proposes practical strategies—including combined COT‑Reflection approaches, structured memory algorithms, and white‑box interaction designs—to enhance agent performance within the DataFun knowledge map framework.

AI AgentCoTPlanning
0 likes · 3 min read
Improving AI Agent Planning and Reasoning: Challenges and Practical Solutions
DataFunSummit
DataFunSummit
Jan 1, 2025 · Artificial Intelligence

Challenges and Evaluation Strategies for LLM Agents in 2024

The article outlines the rapid progress of LLM agents in 2024 while highlighting key difficulties in planning capabilities, evaluation methods, dataset generation, and metric design, and suggests practical combinations and product‑level enhancements to improve efficiency, accuracy, and usability.

AIAgentDataset
0 likes · 3 min read
Challenges and Evaluation Strategies for LLM Agents in 2024
JD Retail Technology
JD Retail Technology
Nov 13, 2024 · R&D Management

Guidelines for New Project Managers: Initiation, Planning, Execution, and Monitoring

This article shares practical advice for novice project managers, covering the four process groups—initiation, planning, execution, and monitoring—through real‑world examples, stakeholder identification, risk handling, change control, and communication techniques to help them deliver value and grow their teams.

PlanningProject Managementexecution
0 likes · 25 min read
Guidelines for New Project Managers: Initiation, Planning, Execution, and Monitoring
Architect's Alchemy Furnace
Architect's Alchemy Furnace
Jul 25, 2024 · Artificial Intelligence

Designing Autonomous LLM Agents: Architecture, Memory, Planning, and Learning Strategies

This article surveys the design of autonomous large‑language‑model agents, detailing their modular architecture—including profiling, memory, planning, and execution—while also reviewing common profiling methods, memory structures, planning techniques, action strategies, and various learning approaches such as exemplar, human‑in‑the‑loop, and environment‑feedback training.

AIAgent ArchitectureAutonomous Agents
0 likes · 36 min read
Designing Autonomous LLM Agents: Architecture, Memory, Planning, and Learning Strategies
DataFunSummit
DataFunSummit
Jul 24, 2024 · Artificial Intelligence

Overview of Large Language Model‑Based AI Agents: Architecture, Challenges, and Future Directions

This article reviews the emerging field of large language model‑based AI agents, outlining their overall architecture, key challenges such as role‑playing, memory, planning, and multi‑agent collaboration, and discusses future research directions and practical examples in user behavior simulation and software development.

AI AgentsLLMMemory Mechanisms
0 likes · 11 min read
Overview of Large Language Model‑Based AI Agents: Architecture, Challenges, and Future Directions
DataFunSummit
DataFunSummit
Jul 17, 2024 · Artificial Intelligence

Overview of LLM‑Based Agents: Architecture, Key Challenges, and Future Directions

This article reviews the emerging field of large‑language‑model (LLM) based AI agents, outlining their overall architecture, core modules such as profiling, memory, planning and action, discussing current challenges, presenting concrete use‑cases, and highlighting promising research directions.

AI AgentAgent ArchitectureLLM
0 likes · 11 min read
Overview of LLM‑Based Agents: Architecture, Key Challenges, and Future Directions
Tencent Cloud Developer
Tencent Cloud Developer
May 28, 2024 · Artificial Intelligence

AI Agents: Concepts, Key Components, and Development Frameworks

AI agents extend large language models with planning, short‑term and long‑term memory, and tool‑use capabilities, enabling autonomous task decomposition, external API interaction, and persistent knowledge retrieval; frameworks such as MetaGPT, LangChain, and CrewAI simplify building agents like a researcher that gather information, browse web content, and generate reports, heralding broader AI‑enhanced productivity.

AI AgentsFunction CallingPlanning
0 likes · 20 min read
AI Agents: Concepts, Key Components, and Development Frameworks
NewBeeNLP
NewBeeNLP
Apr 15, 2024 · Artificial Intelligence

Unlocking LLM‑Based Agents: Architecture, Challenges, and Future Directions

This article systematically outlines the architecture of large‑language‑model (LLM) agents, examines their key technical challenges such as role‑playing, memory design, reasoning and multi‑agent collaboration, and explores emerging research directions and practical case studies.

AIFuture DirectionsLLM agents
0 likes · 11 min read
Unlocking LLM‑Based Agents: Architecture, Challenges, and Future Directions
DataFunTalk
DataFunTalk
Apr 8, 2024 · Artificial Intelligence

LLM‑Based Agents: Architecture, Key Challenges, and Future Directions

This article surveys the emerging field of large‑language‑model (LLM) based agents, detailing their modular architecture—including profiling, memory, planning, and action components—while discussing critical challenges such as role‑playing, memory design, reasoning, multi‑agent collaboration, and outlining promising research directions and practical case studies.

AI AgentAgent ArchitectureLLM
0 likes · 11 min read
LLM‑Based Agents: Architecture, Key Challenges, and Future Directions
DataFunSummit
DataFunSummit
Jan 27, 2024 · Artificial Intelligence

Enhancing Interactive Agents with Large Language Models: The SwiftSage Framework

This article reviews recent advances in using large language models for embodied interactive agents, introduces the dual‑modality SwiftSage architecture that combines a fast T5‑based small model with a powerful large model for planning and grounding, and evaluates its performance on benchmarks such as ScienceWorld.

AI2BenchmarkPlanning
0 likes · 23 min read
Enhancing Interactive Agents with Large Language Models: The SwiftSage Framework
Rare Earth Juejin Tech Community
Rare Earth Juejin Tech Community
May 5, 2023 · Artificial Intelligence

Limitations of Generative Pre‑trained Transformers: Hallucinations, Memory, Planning, and Architectural Proposals

The article critically examines GPT‑4 and similar transformer models, highlighting persistent hallucinations, outdated knowledge, insufficient domain coverage, lack of planning and memory, and proposes architectural extensions inspired by fast‑slow thinking and differentiable modules to overcome these fundamental constraints.

AI limitationsGPT-4Model architecture
0 likes · 24 min read
Limitations of Generative Pre‑trained Transformers: Hallucinations, Memory, Planning, and Architectural Proposals
DataFunTalk
DataFunTalk
May 5, 2023 · Operations

Project Management Overview: Ten Key Areas and Practical Tips

This article outlines ten essential components of project management—including overall management, scope, schedule, cost, quality, resources, communication, risk, procurement, and integration—while providing practical tips, stakeholder analysis methods, and visual guides to help teams execute projects efficiently.

PlanningProject Managementrisk management
0 likes · 5 min read
Project Management Overview: Ten Key Areas and Practical Tips
Efficient Ops
Efficient Ops
Jul 21, 2021 · Operations

Why Most Digital Transformations Fail: Planning Logic and DevOps Insights

This article examines why digital transformation projects often stumble, outlining the planning logic, stages of transformation, and the roles of DevOps, cloud computing, and technology in reshaping business models, operations, and talent development, while highlighting common failure causes and practical guidance for successful implementation.

DevOpsPlanning
0 likes · 11 min read
Why Most Digital Transformations Fail: Planning Logic and DevOps Insights
ITFLY8 Architecture Home
ITFLY8 Architecture Home
Jun 24, 2021 · Operations

Mastering IT Architecture Governance: A Practical Planning Guide

This guide presents a comprehensive, step‑by‑step framework for IT architecture governance, covering objectives, governance models, roles, processes, standards, toolchains, metrics, and an implementation roadmap to help organizations align technology decisions with business goals.

IT ArchitectureIT ManagementPlanning
0 likes · 2 min read
Mastering IT Architecture Governance: A Practical Planning Guide
Infra Learning Club
Infra Learning Club
May 26, 2021 · R&D Management

New Managers’ Top Challenges and How to Overcome Them

The article outlines the common problems faced by newly promoted managers—time shortage, delegation uncertainty, unmet goals, and unmotivated subordinates—then presents a five‑unit framework covering roles, planning, organization, leadership, and control to build effective management habits.

DelegationLeadershipManagement
0 likes · 14 min read
New Managers’ Top Challenges and How to Overcome Them
Alibaba Cloud Developer
Alibaba Cloud Developer
May 17, 2021 · Product Management

Master the Art of Strategic Planning: 4 Methods & 2 Mindsets to Boost Your Team’s Success

This article explains why every team member should master planning, outlines its three core benefits—focus, insight, and future direction—introduces two thinking modes (inductive and deductive) and presents four practical planning methods to make your roadmap clear, actionable, and results‑driven.

MethodologyPlanningTeam Alignment
0 likes · 15 min read
Master the Art of Strategic Planning: 4 Methods & 2 Mindsets to Boost Your Team’s Success
21CTO
21CTO
May 11, 2021 · Product Management

Mastering Strategic Planning: 4 Proven Methods to Boost Team Success

This article explains why planning is essential for every team, outlines two core thinking modes—inductive and deductive—and shares four practical planning methods (similar‑thinking, dimensional‑thinking, reduction‑thinking, and specialization) to help practitioners create focused, actionable, and measurable roadmaps.

MethodologyPlanningR&D
0 likes · 15 min read
Mastering Strategic Planning: 4 Proven Methods to Boost Team Success
IT Architects Alliance
IT Architects Alliance
Aug 6, 2020 · Operations

Eight Essential Steps for Successful Disaster Recovery Drills

This guide outlines eight practical steps—including defining scope, forming a planning team, setting clear objectives, designing realistic scenarios, creating evaluation checklists, assigning roles, conducting pre‑drill briefings, and performing post‑drill reviews—to help organizations execute effective, repeatable disaster recovery exercises that strengthen business continuity.

OperationsPlanningbest practices
0 likes · 9 min read
Eight Essential Steps for Successful Disaster Recovery Drills
Programmer DD
Programmer DD
Jul 20, 2020 · R&D Management

10 Surprising Reasons Projects Fail (And How to Avoid Them)

Drawing from years of project experience, the author outlines ten common factors—ranging from unattainable goals to inexperienced managers—that consistently lead to project failure, and suggests that even a single misstep can doom a project.

PlanningR&DTeam Building
0 likes · 3 min read
10 Surprising Reasons Projects Fail (And How to Avoid Them)
dbaplus Community
dbaplus Community
Mar 29, 2020 · Databases

Mastering GaussDB T: Planning Single‑Node, HA, and Distributed Architectures

This article outlines a comprehensive plan for deploying GaussDB T, covering the software architecture, component roles, and practical guidelines for single‑node, primary‑standby, and distributed setups, while highlighting common pitfalls and operational considerations for production environments.

Database ArchitectureGaussDBPlanning
0 likes · 13 min read
Mastering GaussDB T: Planning Single‑Node, HA, and Distributed Architectures
DataFunTalk
DataFunTalk
Feb 27, 2020 · Artificial Intelligence

Technical Challenges in Planning and Control for Autonomous Heavy Trucks

The article reviews the complex system model of autonomous heavy trucks, outlines traditional and modern planning and control methods—including rule‑based FSM, POMDP, learning‑based and optimization techniques—highlights safety, efficiency, fuel‑economy, and dynamic modeling challenges specific to heavy‑truck and trailer configurations, and shares practical attempts such as lane‑changing, merging, and trailer‑aware trajectory planning.

POMDPPlanningautonomous driving
0 likes · 13 min read
Technical Challenges in Planning and Control for Autonomous Heavy Trucks
DataFunTalk
DataFunTalk
Nov 8, 2019 · Artificial Intelligence

Balancing Safety and Comfort in Autonomous Driving: Planning and Control Optimization

This article explores how autonomous driving systems can simultaneously ensure safety and passenger comfort by optimizing planning and control modules, defining safety and comfort metrics, formulating constraints and cost functions, and employing models such as the bicycle model for lateral and longitudinal control.

PlanningSafetyautonomous driving
0 likes · 12 min read
Balancing Safety and Comfort in Autonomous Driving: Planning and Control Optimization
21CTO
21CTO
Jan 26, 2019 · Operations

Why Planning Beats Summarizing: Turning Goals into Actionable Roadmaps

This article argues that proactive planning is more constructive than passive year‑end summaries, explains how setting clear goals, breaking them into tasks, estimating time, and using simple tools like spreadsheets and Gantt charts can improve personal and professional productivity, even amid rapid change.

Career DevelopmentGoal SettingPlanning
0 likes · 13 min read
Why Planning Beats Summarizing: Turning Goals into Actionable Roadmaps
Efficient Ops
Efficient Ops
Dec 12, 2018 · Operations

Essential Project Management Practices Every Manager Should Master

This article shares practical insights on project management, covering how to understand project goals, assess resources, communicate with stakeholders, handle risks and changes, create effective plans, and ensure successful delivery through disciplined documentation and verification.

PlanningProject Managementchange control
0 likes · 23 min read
Essential Project Management Practices Every Manager Should Master