Tag

CLI

1 views collected around this technical thread.

php中文网 Courses
php中文网 Courses
Jun 11, 2025 · Backend Development

Master Go CLI Development: Build Powerful Command-Line Tools with Cobra

This comprehensive Go tutorial walks you through installing Cobra, initializing a project, creating basic and advanced commands with flags, subcommands, configuration, colored and table output, building a Todo CLI with persistence, and cross‑platform compilation and automated release, empowering you to craft professional command‑line tools.

CLICobraGo
0 likes · 9 min read
Master Go CLI Development: Build Powerful Command-Line Tools with Cobra
Java Captain
Java Captain
Jun 9, 2025 · Operations

How to Quickly Spin Up Ubuntu VMs with Multipass: A Step‑by‑Step Guide

This guide introduces Multipass, a lightweight cross‑platform VM manager, and walks through installing it, launching Ubuntu instances, checking status, accessing shells, and automating setup with cloud‑init, while also covering pause, restart, and deletion commands.

CLICloud‑InitMultipass
0 likes · 6 min read
How to Quickly Spin Up Ubuntu VMs with Multipass: A Step‑by‑Step Guide
Java Architecture Diary
Java Architecture Diary
Jun 5, 2025 · Artificial Intelligence

Unlock AI Reasoning: How Ollama’s New ‘Thinking’ Feature Works

Version 0.9.0 of Ollama introduces a ‘thinking’ control that lets users view and manage the AI model’s reasoning process, with detailed CLI commands, REST API usage, model support list, scripting options, and advanced Modelfile configurations for models like DeepSeek R1 and Qwen 3.

AI reasoningCLIDeepSeek
0 likes · 6 min read
Unlock AI Reasoning: How Ollama’s New ‘Thinking’ Feature Works
Architecture Digest
Architecture Digest
Jun 3, 2025 · Cloud Native

Podman Tutorial: Installation, Usage, Commands, and Configuration

This comprehensive guide explains what Podman is, compares it with Docker, shows how to install and configure it on Linux, and provides detailed examples of common commands, container management, image handling, rootless operation, volume usage, and user namespace configuration.

CLIConfigurationDocker Compatibility
0 likes · 16 min read
Podman Tutorial: Installation, Usage, Commands, and Configuration
Cognitive Technology Team
Cognitive Technology Team
May 29, 2025 · Backend Development

Managing Multiple JDK Versions with SDKMAN! – Installation, Configuration, and Usage Guide

This guide explains how to install SDKMAN!, use it to list, install, switch, and set global or project‑specific Java JDK versions, upgrade existing installations, and discover other SDKs, providing a practical solution for frequent Java version changes in microservice development.

CLIJDKJava
0 likes · 8 min read
Managing Multiple JDK Versions with SDKMAN! – Installation, Configuration, and Usage Guide
Python Programming Learning Circle
Python Programming Learning Circle
May 27, 2025 · Fundamentals

Essential pip Tips and Tricks for Python Package Management

This article provides a comprehensive guide to using Python's pip tool, covering installation, upgrading, package installation, batch operations, dependency freezing, information querying, compatibility checks, and downloading packages, complete with practical command‑line examples and code snippets.

CLIDependencyPackage Management
0 likes · 9 min read
Essential pip Tips and Tricks for Python Package Management
DataFunTalk
DataFunTalk
May 18, 2025 · Artificial Intelligence

OpenAI Codex AMA Highlights: Cloud Sandbox, TypeScript CLI, Multilingual Plans, and Future Vision

In a one‑hour Reddit AMA, OpenAI's Codex team outlined their cloud‑first strategy, TypeScript‑based CLI, upcoming multilingual bindings, integration with the future GPT‑5 model, pricing, security sandbox, best‑practice recommendations, and a ten‑year roadmap toward a unified AI‑driven software development agent.

AICLICloud
0 likes · 6 min read
OpenAI Codex AMA Highlights: Cloud Sandbox, TypeScript CLI, Multilingual Plans, and Future Vision
Full-Stack Internet Architecture
Full-Stack Internet Architecture
May 8, 2025 · Databases

Manual Slot Migration in Redis Cluster: Step-by-Step Guide

This article explains how to manually migrate a hash slot in a Redis cluster by checking cluster status, setting importing and migrating slots, retrieving keys, using the MIGRATE command, and updating slot assignments across nodes, with detailed command examples and explanations.

CLIClusterRedis
0 likes · 6 min read
Manual Slot Migration in Redis Cluster: Step-by-Step Guide
Cognitive Technology Team
Cognitive Technology Team
Apr 30, 2025 · Backend Development

Getting Started with JLine 3: Building Interactive Java CLI Applications

This article introduces JLine 3, a Java library that adds GNU‑readline‑style features such as line editing, history, auto‑completion, and syntax highlighting to command‑line tools, and provides Maven setup, a complete code example, detailed explanation, and sample output for building robust interactive CLI applications.

CLIInteractiveJLine
0 likes · 10 min read
Getting Started with JLine 3: Building Interactive Java CLI Applications
php中文网 Courses
php中文网 Courses
Apr 27, 2025 · Backend Development

Using NativePHP to Extend Laravel for Efficient Desktop Application Development

NativePHP is a third‑party library that enables developers to embed native PHP code within Laravel, allowing execution of CLI commands, file system manipulation, and database operations, thereby simplifying the creation of efficient, flexible desktop applications.

CLIDesktop ApplicationLaravel
0 likes · 5 min read
Using NativePHP to Extend Laravel for Efficient Desktop Application Development
Python Programming Learning Circle
Python Programming Learning Circle
Apr 25, 2025 · Fundamentals

Using Python argparse for Command‑Line Argument Parsing

This article introduces Python's built‑in argparse module, explains its core features such as defining positional and optional arguments, type constraints, mutually exclusive groups, sub‑parsers, and best‑practice tips, and provides a complete runnable example for building robust CLI tools.

CLITutorialargparse
0 likes · 5 min read
Using Python argparse for Command‑Line Argument Parsing
Efficient Ops
Efficient Ops
Apr 20, 2025 · Operations

How to Instantly Monitor Socket Health with the Lightweight 'dish' CLI Tool

This article introduces the lightweight command‑line tool dish, explains its core features such as one‑time socket health checks, remote configuration, concurrent testing, zero dependencies, multiple notification methods, caching, and provides installation steps, usage examples, and a comprehensive flag reference for efficient operations monitoring.

CLIGomonitoring
0 likes · 7 min read
How to Instantly Monitor Socket Health with the Lightweight 'dish' CLI Tool
Java Captain
Java Captain
Apr 20, 2025 · Databases

RediSearch: Introduction, Features, Benchmarks, Installation, and CLI Operations

This article introduces RediSearch, a Redis module for full‑text search, outlines its many features, compares its indexing and query performance with Elasticsearch, provides installation methods (source and Docker), and demonstrates command‑line operations for creating indexes, adding documents, searching, and managing indexes.

BenchmarkCLIFull-Text Search
0 likes · 13 min read
RediSearch: Introduction, Features, Benchmarks, Installation, and CLI Operations
Go Programming World
Go Programming World
Apr 7, 2025 · Backend Development

Using Air for Hot Reload in Go Applications: Installation, Configuration, and Advanced Features

This article explains how to install and use the Air tool for hot‑reloading Go applications, demonstrates a simple web server example, walks through the full TOML configuration, covers advanced options, command‑line flags, and shows how to prioritize CLI arguments over config files.

BackendCLIConfiguration
0 likes · 14 min read
Using Air for Hot Reload in Go Applications: Installation, Configuration, and Advanced Features
Code Mala Tang
Code Mala Tang
Apr 3, 2025 · Fundamentals

33 Essential Python CLI Tricks You Should Bookmark

Discover 33 practical Python command‑line tricks—from running one‑liners without files and using the interpreter as a calculator, to measuring execution time, managing virtual environments, generating passwords, and sending HTTP requests—each illustrated with ready‑to‑copy commands that boost productivity and streamline everyday scripting tasks.

CLIPythoncommand-line
0 likes · 9 min read
33 Essential Python CLI Tricks You Should Bookmark
Architecture Digest
Architecture Digest
Mar 24, 2025 · Backend Development

Comprehensive Guide to RediSearch: Features, Installation, and Query Operations

RediSearch is a Redis module that provides full‑text search, secondary indexing, and query capabilities; this guide introduces its features, compares performance with Elasticsearch, details installation via source and Docker, and demonstrates index creation, document management, and advanced search queries with code examples.

BackendCLIDocker
0 likes · 14 min read
Comprehensive Guide to RediSearch: Features, Installation, and Query Operations
Python Programming Learning Circle
Python Programming Learning Circle
Mar 22, 2025 · Information Security

Python Script for WiFi Password Cracking with CLI and GUI Implementations

This article demonstrates how to use Python and the pywifi library to perform Wi‑Fi password brute‑forcing through both command‑line and graphical interfaces, explains script optimization, shows Tkinter‑based GUI versions, and discusses limitations such as the lack of multithreading.

CLIGUITkinter
0 likes · 15 min read
Python Script for WiFi Password Cracking with CLI and GUI Implementations
Test Development Learning Exchange
Test Development Learning Exchange
Mar 16, 2025 · Backend Development

Comprehensive Python Ecosystem Overview: Web Frameworks, HTTP Clients, Databases, Data Analysis, Machine Learning, Image Processing, NLP, CLI, Concurrency, Testing, and Logging

This guide introduces a wide range of Python libraries and tools—including Flask, Django, FastAPI, Requests, HTTPX, SQLAlchemy, Pandas, NumPy, Scikit‑learn, TensorFlow, PyTorch, Pillow, OpenCV, spaCy, Click, asyncio, pytest, and logging—providing concise descriptions and ready‑to‑run code examples for each domain.

CLIPythonWeb Development
0 likes · 7 min read
Comprehensive Python Ecosystem Overview: Web Frameworks, HTTP Clients, Databases, Data Analysis, Machine Learning, Image Processing, NLP, CLI, Concurrency, Testing, and Logging
Top Architecture Tech Stack
Top Architecture Tech Stack
Mar 12, 2025 · Big Data

DeepSeek: Comprehensive Installation, Configuration, and Usage Guide

This article provides a detailed, step‑by‑step guide to installing, configuring, and using DeepSeek—a powerful command‑line data processing tool—covering basic operations, advanced features, scripting tips, and troubleshooting to help users efficiently import, clean, analyze, and visualize data.

Big DataCLIConfiguration
0 likes · 8 min read
DeepSeek: Comprehensive Installation, Configuration, and Usage Guide
FunTester
FunTester
Feb 27, 2025 · Operations

Lume: A Lightweight CLI Tool for Managing macOS and Linux Virtual Machines on Apple Silicon

Lume is an open‑source, lightweight command‑line and API tool designed for Apple Silicon that simplifies creation, control, and automation of macOS and Linux virtual machines using macOS’s Virtualization.framework, offering installation methods, core commands, architecture details, advantages, limitations, and typical use cases.

Apple SiliconCLIVM management
0 likes · 8 min read
Lume: A Lightweight CLI Tool for Managing macOS and Linux Virtual Machines on Apple Silicon