ITPUB
Author

ITPUB

Official ITPUB account sharing technical insights, community news, and exciting events.

2.8k
Articles
0
Likes
899
Views
0
Comments
Recent Articles

Latest from ITPUB

100 recent articles max
ITPUB
ITPUB
Apr 17, 2026 · Industry Insights

Why LinkedIn Dumped Kafka for Its Own ‘Northguard’ Streaming Engine

LinkedIn, the original home of Apache Kafka, abandoned the platform for a home‑grown system called Northguard, redesigning log storage, decentralizing metadata, and adding a virtualized Xinfra layer to handle trillions of daily events, while still acknowledging Kafka’s relevance for most companies.

InfrastructureKafkaLinkedIn
0 likes · 7 min read
Why LinkedIn Dumped Kafka for Its Own ‘Northguard’ Streaming Engine
ITPUB
ITPUB
Apr 16, 2026 · Industry Insights

Why Harness Engineering Is Redefining AI Agent Development in 2026

The article traces the rapid rise of AI variants such as OpenClaw, Hermes, and Harness, explains how the industry shifted from model competitions to engineering deployment, outlines a 2022‑2026 timeline of breakthroughs, and argues that Harness is the essential “harness” that turns powerful models into reliable, productive agents.

AI OpsAgentHarness
0 likes · 11 min read
Why Harness Engineering Is Redefining AI Agent Development in 2026
ITPUB
ITPUB
Apr 15, 2026 · Industry Insights

2026 Stanford AI Index: Closing US‑China Gap and 88% AI Adoption Explained

The 2026 Stanford AI Index report, over 400 pages long, reveals that AI resources keep growing while model concentration rises, the performance gap between US and Chinese models has nearly vanished, top‑tier models are converging, 88% of enterprises have adopted generative AI, and concerns mount over transparency, environmental impact, and uneven labor‑market effects.

AI adoptionAI environmental impactAI trends
0 likes · 12 min read
2026 Stanford AI Index: Closing US‑China Gap and 88% AI Adoption Explained
ITPUB
ITPUB
Apr 14, 2026 · Operations

Mastering Java Service Performance: Diagnose CPU, Memory, IO & Network Issues

This guide walks you through systematic troubleshooting of Java service performance problems—covering CPU spikes, memory leaks, GC pauses, disk I/O anomalies, and network bottlenecks—by explaining key metrics, command‑line tools, visual profilers, and practical code examples.

CPUJavaLinux
0 likes · 12 min read
Mastering Java Service Performance: Diagnose CPU, Memory, IO & Network Issues
ITPUB
ITPUB
Apr 10, 2026 · Backend Development

How a Simple Refactor and Parallelism Cut Java Loop Time from 26s to 0.7s

A new team member transformed a painfully slow Java data‑processing routine—originally taking 26,856 ms—by refactoring nested loops, extracting repeated calculations, and introducing a thread‑pool for parallel execution, reducing runtime to just 748 ms, and the article walks through the before‑and‑after code and key techniques.

JavaParallel ComputingPerformance optimization
0 likes · 8 min read
How a Simple Refactor and Parallelism Cut Java Loop Time from 26s to 0.7s
ITPUB
ITPUB
Apr 7, 2026 · Artificial Intelligence

Is OpenClaw Really a Cloud Platform? Uncovering the Hidden Risks of AI Agents

The article analyzes OpenClaw, revealing that while it functions as an AI agent orchestration layer rather than a true cloud platform, its reliance on external services introduces significant security, governance, and architectural risks that enterprises must carefully evaluate before adoption.

AI agentsGovernanceOpenClaw
0 likes · 10 min read
Is OpenClaw Really a Cloud Platform? Uncovering the Hidden Risks of AI Agents
ITPUB
ITPUB
Apr 6, 2026 · Backend Development

Why the String "null" Breaks Your Java Backend and How to Fix It

The article explains how treating the literal string "null" as an empty value can cause serious bugs in Java backend registration, database storage, and security checks, and provides concrete code examples and a sanitisation utility to prevent these issues.

backendinput validationnull handling
0 likes · 7 min read
Why the String "null" Breaks Your Java Backend and How to Fix It
ITPUB
ITPUB
Apr 4, 2026 · Databases

How PostgreSQL and SQL Server Differ in Data Access Strategies

This article compares PostgreSQL and SQL Server data access methods—including sequential scans, index scans, bitmap heap scans, index‑only scans, and parallel query execution—highlighting PostgreSQL's lack of clustered indexes and the performance implications of each approach.

Bitmap ScanData AccessDatabase comparison
0 likes · 10 min read
How PostgreSQL and SQL Server Differ in Data Access Strategies
ITPUB
ITPUB
Apr 3, 2026 · Artificial Intelligence

Why OpenClaw’s Memory Breaks and How seekdb M0 Fixes It

The article analyses OpenClaw’s single‑turn memory design, explains the two vicious cycles that cause memory bloat and forgetting, and introduces seekdb M0’s cloud‑native, two‑stage memory and experience system that decouples memory from context, reduces token costs, and shares practical knowledge across agents.

AIAgentExperience System
0 likes · 16 min read
Why OpenClaw’s Memory Breaks and How seekdb M0 Fixes It
ITPUB
ITPUB
Apr 2, 2026 · Operations

Why Your SSD Slows Down Over Time and How to Fix It on Linux

This guide explains the reasons behind SSD performance degradation, such as write‑amplification and garbage collection, and provides practical Linux techniques—including enabling TRIM, maintaining free space, reducing unnecessary writes, and using smartctl—to restore and preserve SSD speed.

LinuxPerformance optimizationSSD
0 likes · 6 min read
Why Your SSD Slows Down Over Time and How to Fix It on Linux