Tagged articles
19 articles
Page 1 of 1
Wu Shixiong's Large Model Academy
Wu Shixiong's Large Model Academy
Apr 30, 2026 · Artificial Intelligence

When Is Claude Code’s Memory Injected into system_prompt? Interview Insight

The article explains that Claude Code loads persisted memory once at REPL startup via _build_system(), inserts it as the 10th segment of system_prompt, enforces a 200‑line limit on MEMORY.md, deliberately avoids side‑effects in get_memory_dir(), and only refreshes the prompt with the /model command.

Claude CodeInterview PreparationLLM
0 likes · 11 min read
When Is Claude Code’s Memory Injected into system_prompt? Interview Insight
AI Tech Publishing
AI Tech Publishing
Apr 25, 2026 · Artificial Intelligence

A Comprehensive Guide to Harness Engineering for Reliable AI Agents

This article systematically breaks down Harness Engineering—a framework that organizes large models, context, tools, state, sandboxing, security, and evaluation into a reliable AI agent engineering system, showing how to move agents from demo to production.

AI agentsHarness EngineeringLLM
0 likes · 21 min read
A Comprehensive Guide to Harness Engineering for Reliable AI Agents
Data STUDIO
Data STUDIO
Oct 17, 2025 · Fundamentals

Python 3.14 (π) Released: Cool New Features You Should Try

Python 3.14, released on October 7 2025, brings a revamped REPL with real‑time syntax highlighting and smarter auto‑completion, new syntax such as t‑strings and optional parentheses in exception handling, lazy‑evaluated type annotations, sub‑interpreter parallelism, free‑threading, an experimental JIT, tail‑call interpreter support, and an incremental garbage collector, all of which improve developer ergonomics and performance.

Pythonconcurrencydebugging
0 likes · 44 min read
Python 3.14 (π) Released: Cool New Features You Should Try
Open Source Tech Hub
Open Source Tech Hub
Oct 7, 2025 · Backend Development

Discover Phel: Bringing Functional Lisp Power to PHP Development

Phel is a Lisp‑inspired functional programming language for PHP that integrates seamlessly with the PHP ecosystem, offering immutable data structures, a macro system, an interactive REPL, and concise syntax, while providing step‑by‑step installation via Docker or Composer.

ComposerDockerLisp
0 likes · 6 min read
Discover Phel: Bringing Functional Lisp Power to PHP Development
Data STUDIO
Data STUDIO
Sep 4, 2025 · Fundamentals

Seven Must‑Know Python 3.14 Features That Boost Performance and Developer Experience

The upcoming Python 3.14 release introduces seven major enhancements—including template strings (PEP 750), lazy type‑annotation evaluation (PEP 649), an external debugger API (PEP 768), native Zstandard compression (PEP 784), an upgraded REPL, UUID module improvements, and stricter finally‑block rules—each aimed at improving speed, safety, and usability for developers.

Pythondebugger-apifinally
0 likes · 11 min read
Seven Must‑Know Python 3.14 Features That Boost Performance and Developer Experience
Python Programming Learning Circle
Python Programming Learning Circle
Jun 5, 2025 · Fundamentals

What’s New in Python 3.14? 7 Game‑Changing Features You Must Know

Python 3.14 brings a collection of major upgrades—t‑strings for safer templating, lazy type‑annotation evaluation, a standardized external debugger API, built‑in Zstandard compression, a smarter REPL, new UUID versions with 40% faster generation, and stricter finally‑block semantics—each aimed at improving developer productivity, security, and runtime performance.

Pythondebugger-apipython-3.14
0 likes · 11 min read
What’s New in Python 3.14? 7 Game‑Changing Features You Must Know
Python Programming Learning Circle
Python Programming Learning Circle
Oct 23, 2024 · Fundamentals

Key New Features in Python 3.13.0 Release

Python 3.13.0, released on October 7, 2024, brings experimental no‑GIL support, a JIT compiler, an improved REPL, colour‑highlighted error messages, enhanced static typing, and Tier 3 official support for iOS and Android, while warning developers about experimental features and compatibility considerations.

JITNewFeaturesStaticTyping
0 likes · 5 min read
Key New Features in Python 3.13.0 Release
AI Cyberspace
AI Cyberspace
Mar 9, 2023 · Backend Development

Build a Cross‑Platform C REPL with GNU Readline and MPC Parser

This guide walks through building a cross‑platform interactive C REPL, covering basic input/output loops, integrating GNU Readline for line editing and history, handling portability with preprocessor directives, and using the MPC library to create a simple Doge language parser.

GNU ReadlineMPCc++
0 likes · 14 min read
Build a Cross‑Platform C REPL with GNU Readline and MPC Parser
Programmer DD
Programmer DD
May 19, 2022 · Fundamentals

Master Java’s Interactive Shell: Quick JShell Guide for Rapid Prototyping

This article introduces Java's interactive programming environment, explains how to launch JShell, demonstrates calculations, variable and function definitions, class creation, and covers essential commands like /help, /list, /edit, /drop, /save, /open, /reset, /imports, /types, and /exit for efficient REPL usage.

JShellJava 9command-line
0 likes · 11 min read
Master Java’s Interactive Shell: Quick JShell Guide for Rapid Prototyping
MaGe Linux Operations
MaGe Linux Operations
Aug 3, 2020 · Fundamentals

What Defines a True Python Implementation? REPL, Compatibility, and WebAssembly

The article examines the challenges of creating a Python implementation for WebAssembly, questioning what core features—such as a REPL, dynamic compilation, sys.settrace, and frame inspection—are essential for a language to be recognized as Python, and how much compatibility can be sacrificed for performance.

CompatibilityLanguage ImplementationPython
0 likes · 8 min read
What Defines a True Python Implementation? REPL, Compatibility, and WebAssembly
FunTester
FunTester
Nov 22, 2019 · Backend Development

Getting Started with Groovy Shell: Tips, Commands, and Use Cases

This article introduces Groovy Shell, explains how to launch it, demonstrates basic commands, variable handling, closures, Windows-specific tips, arithmetic with BigInteger, and showcases its usefulness for rapid prototyping and testing in backend development.

GroovyScriptingShell
0 likes · 6 min read
Getting Started with Groovy Shell: Tips, Commands, and Use Cases
MaGe Linux Operations
MaGe Linux Operations
Jan 20, 2019 · Backend Development

Build a Powerful Python REPL in Under 20 Lines with Prompt Toolkit & Click

This tutorial shows how to create a feature‑rich interactive Python REPL using Prompt Toolkit, Click, fuzzyfinder and Pygments, adding echo functionality, persistent history, auto‑suggest, tab completion, paging, editor integration and syntax highlighting—all with fewer than twenty lines of code.

Pythonclickcommand-line
0 likes · 9 min read
Build a Powerful Python REPL in Under 20 Lines with Prompt Toolkit & Click