ZhiKe AI
Author

ZhiKe AI

We dissect AI-era technologies, tools, and trends with a hardcore perspective. Focused on large models, agents, MCP, function calling, and hands‑on AI development. No fluff, no hype—only actionable insights, source code, and practical ideas. Get a daily dose of intelligence to simplify tech and make efficiency tangible.

53
Articles
0
Likes
0
Views
0
Comments
Recent Articles

Latest from ZhiKe AI

53 recent articles
ZhiKe AI
ZhiKe AI
Mar 7, 2017 · Fundamentals

Understanding the JVM: Its Position in the JDK and Four Core Components

This article explains where the JVM resides within the JDK, describes its four main components—ClassLoader, Native Interface, Execution Engine, and Runtime Data Areas—and details memory management, garbage‑collection algorithms, collector types, diagnostic commands, and the Java class‑file structure.

Class FileClass LoaderGarbage Collection
0 likes · 21 min read
Understanding the JVM: Its Position in the JDK and Four Core Components
ZhiKe AI
ZhiKe AI
Feb 23, 2017 · Fundamentals

Why volatile Is Not Thread‑Safe: A Java Increment Test

The article presents a Java program where 100 threads each increment a volatile int 1,000 times, showing that the final value may be less than the expected 100,000, and explains that volatile only guarantees visibility, not atomicity, making it unsuitable for concurrent modifications.

Concurrencyatomicityjava
0 likes · 2 min read
Why volatile Is Not Thread‑Safe: A Java Increment Test
ZhiKe AI
ZhiKe AI
Feb 22, 2017 · Fundamentals

Understanding Java’s java.util.concurrent Package and Thread Pools

This article introduces the java.util.concurrent package introduced since JDK 5, explains the five thread‑pool creation methods, demonstrates how to use Runnable and Callable, details BlockingQueue operations and implementations, and summarizes best practices for building robust, high‑concurrency Java applications.

BlockingQueueConcurrencyjava
0 likes · 10 min read
Understanding Java’s java.util.concurrent Package and Thread Pools
ZhiKe AI
ZhiKe AI
Feb 21, 2017 · Fundamentals

Mastering awk: Powerful Text Analysis and Reporting Beyond grep and sed

This article introduces awk as a versatile text‑processing language, explains its origins and variants, details command‑line syntax and three invocation methods, and walks through practical examples—from extracting fields in system files to using built‑in variables, conditionals, loops, arrays, and formatted output with print and printf.

Shell scriptingUnixawk
0 likes · 11 min read
Mastering awk: Powerful Text Analysis and Reporting Beyond grep and sed
ZhiKe AI
ZhiKe AI
Feb 20, 2017 · Fundamentals

Mastering sed: A Comprehensive Guide to Stream Editing with Regular Expressions

This article introduces sed as a powerful stream editor for text processing, explains its pattern‑space workflow, details command syntax, addressing methods, options, meta‑characters, and provides numerous concrete examples—including deletions, substitutions, range selections, multi‑command scripts, and file I/O operations—illustrating how each feature works in practice.

Unixcommand-lineregular expressions
0 likes · 16 min read
Mastering sed: A Comprehensive Guide to Stream Editing with Regular Expressions
ZhiKe AI
ZhiKe AI
Feb 16, 2017 · Fundamentals

How to Use the cut Command to Extract Text Columns in Linux

This guide explains how to use the Unix cut command to extract specific columns or character ranges from files or streams, detailing the -d, -f, and -c options with clear examples such as selecting fields from colon‑separated data.

ShellUnixcommand-line
0 likes · 2 min read
How to Use the cut Command to Extract Text Columns in Linux
ZhiKe AI
ZhiKe AI
Feb 15, 2017 · Information Security

Understanding iptables: A Comprehensive Introduction to Linux Packet Filtering

This article introduces Linux’s built-in iptables (netfilter) firewall, explains its four tables and chains, and provides detailed command-line examples for starting, stopping, configuring, listing, and managing rules, including common options and extended matching techniques.

Linux firewallfirewall rulesiptables
0 likes · 7 min read
Understanding iptables: A Comprehensive Introduction to Linux Packet Filtering
ZhiKe AI
ZhiKe AI
Feb 14, 2017 · Fundamentals

Mastering Linux Shell: Basics, Scripts, Variables, and Control Structures

This article introduces the Linux shell as an interface and scripting language, explains how to execute scripts, manage system and user variables, use special variables, operators, conditional statements, loops, case constructs, and define functions, providing concrete syntax examples for each feature.

BashControl structuresLinux
0 likes · 9 min read
Mastering Linux Shell: Basics, Scripts, Variables, and Control Structures
ZhiKe AI
ZhiKe AI
Feb 10, 2017 · Fundamentals

Understanding Linux Shell: Basics, Scripts, and Common Commands

This article introduces the Linux shell as the user‑kernel interface, explains why Bash is the most popular shell, and covers script execution methods, variable handling, operators, control structures, and custom functions with concrete command examples.

BashLinuxShell
0 likes · 9 min read
Understanding Linux Shell: Basics, Scripts, and Common Commands
ZhiKe AI
ZhiKe AI
Feb 9, 2017 · Fundamentals

Essential Linux Commands: Classification, Usage, and Tips

This article provides a comprehensive guide to common Linux commands, covering internal vs external classification, help lookup methods, command syntax, practical examples for file management, system monitoring, compression, shutdown, pipelines, quoting, and best learning habits.

LinuxShellSystem Administration
0 likes · 15 min read
Essential Linux Commands: Classification, Usage, and Tips