Tagged articles
121 articles
Page 1 of 2
Linux Tech Enthusiast
Linux Tech Enthusiast
May 16, 2026 · Fundamentals

Beginner-Friendly Guide to Linux Shell Programming

This article provides a step‑by‑step tutorial on Linux shell programming for beginners, covering variable naming rules, string manipulation, script creation, environment variable handling, arithmetic operations, user input, logical and string operators, as well as common file and directory commands, all illustrated with concrete code examples and screenshots.

ArithmeticBashEnvironment Variables
0 likes · 19 min read
Beginner-Friendly Guide to Linux Shell Programming
James' Growth Diary
James' Growth Diary
May 3, 2026 · Artificial Intelligence

How Claude Code Handles max_output_tokens and Model Downgrade to Keep Agents Running

The article explains Claude Code's multi‑level fault‑tolerance for max_output_tokens errors, detailing dynamic token allocation, automatic model downgrade, environment‑variable controls, StopFailure hooks, and their coordination with compaction to prevent agents from getting stuck during long‑running tasks.

AI AgentClaude CodeEnvironment Variables
0 likes · 13 min read
How Claude Code Handles max_output_tokens and Model Downgrade to Keep Agents Running
James' Growth Diary
James' Growth Diary
Apr 27, 2026 · Artificial Intelligence

Three Gating Mechanisms for Tool Registration and Conditional Loading

Claude Code uses a single-source tool registry and three layered gating mechanisms—Feature Flags for experimental tools, environment‑variable SIMPLE mode for minimal tool sets, and fine‑grained permission filtering—to securely control tool visibility, initialization side‑effects, and ordering, ensuring stable prompt caching and safe schema exposure.

AI agentsEnvironment VariablesTool Registration
0 likes · 17 min read
Three Gating Mechanisms for Tool Registration and Conditional Loading
Data STUDIO
Data STUDIO
Apr 27, 2026 · Backend Development

Stop Hand‑Coding os.getenv: How pydantic‑settings Doubles Your Config Management Efficiency

The article explains why ad‑hoc configuration handling with os.getenv quickly becomes fragile, introduces pydantic‑settings as a strong‑typed, validated alternative, walks through installation, core concepts, practical examples, best‑practice guidelines, and shows how it prevents silent failures while simplifying testing and secret management.

Configuration ManagementEnvironment Variablesbest practices
0 likes · 13 min read
Stop Hand‑Coding os.getenv: How pydantic‑settings Doubles Your Config Management Efficiency
AI Insight Log
AI Insight Log
Apr 20, 2026 · Information Security

Vercel Breach Reveals How an AI Tool Compromised Env Vars and Led to Data Leak

Vercel confirmed an intrusion where attackers leveraged the third‑party AI service Context.ai to hijack an employee’s Google Workspace OAuth access, gaining entry to internal systems and exposing ordinary environment variables, prompting a rapid public disclosure and a detailed remediation checklist for developers and admins.

AI toolsEnvironment VariablesInfoSec
0 likes · 7 min read
Vercel Breach Reveals How an AI Tool Compromised Env Vars and Led to Data Leak
Java Tech Enthusiast
Java Tech Enthusiast
Apr 15, 2026 · Information Security

Why Your API Keys Are Leaking on GitHub and How to Stop It

Developers often store dozens of AI service API keys in .env files or hard‑code them, which can accidentally be committed to public GitHub repositories, leading to massive credential exposure, unexpected billing, and security breaches; this article explains the risks, real‑world examples, statistics, and practical steps to protect your keys.

API SecurityEnvironment VariablesGitHub
0 likes · 4 min read
Why Your API Keys Are Leaking on GitHub and How to Stop It
Node.js Tech Stack
Node.js Tech Stack
Apr 11, 2026 · Cloud Native

Control Node.js Heap Size with ENV in Kubernetes – New --max-heap-size in 25.9.0

Node.js 25.9.0 adds support for the --max‑heap‑size flag in the NODE_OPTIONS whitelist, allowing containers on Kubernetes to set heap limits via environment variables, reducing OOM kills, while also introducing experimental stream/iter API, test‑module mock changes, new Web Crypto algorithms, and other enhancements.

Environment VariablesHeap MemoryKubernetes
0 likes · 8 min read
Control Node.js Heap Size with ENV in Kubernetes – New --max-heap-size in 25.9.0
Old Meng AI Explorer
Old Meng AI Explorer
Apr 3, 2026 · Artificial Intelligence

Unlock Faster, Cheaper Claude Code with Domestic LLMs: 3 Practical Solutions

Discover three practical ways to replace costly, slow Claude Code API calls with domestic large‑language models—DeepSeek, Alibaba Cloud Bailei, and third‑party relay services—offering lower latency, dramatically reduced fees, step‑by‑step configuration, performance benchmarks, and troubleshooting tips for developers.

AI CodingClaude CodeCost Optimization
0 likes · 8 min read
Unlock Faster, Cheaper Claude Code with Domestic LLMs: 3 Practical Solutions
Frontend AI Walk
Frontend AI Walk
Mar 18, 2026 · Operations

17 Essential OpenClaw Pitfalls and How to Fix Them for Beginners

This guide walks you through the 17 most common OpenClaw issues—from installation and Node.js version mismatches to gateway port conflicts, token authentication failures, channel integration quirks, multi‑agent communication problems, and performance bottlenecks—providing step‑by‑step diagnostics, concrete command‑line examples, scripts and preventive measures to help you avoid hours of troubleshooting.

DevOpsEnvironment VariablesInstallation
0 likes · 44 min read
17 Essential OpenClaw Pitfalls and How to Fix Them for Beginners
Lisa Notes
Lisa Notes
Mar 13, 2026 · Fundamentals

How to Set Up a Java Development Environment from Scratch

This guide walks through installing the JDK, configuring JAVA_HOME, PATH and CLASSPATH on Windows, and verifying the setup, showing that only the JDK and a basic text editor are needed to write and run your first Java program.

Environment VariablesJDKJava
0 likes · 9 min read
How to Set Up a Java Development Environment from Scratch
Code Mala Tang
Code Mala Tang
Feb 20, 2026 · Artificial Intelligence

How to Integrate Claude Code with Ollama for Local and Cloud LLM Workflows

This guide walks you through installing Claude Code and Ollama, pulling and configuring various open‑source models, setting environment variables, and running Claude Code with both local and cloud‑hosted models, while covering context length, performance considerations, and tool‑calling examples.

Claude CodeEnvironment VariablesLLM integration
0 likes · 14 min read
How to Integrate Claude Code with Ollama for Local and Cloud LLM Workflows
Linux Tech Enthusiast
Linux Tech Enthusiast
Jan 29, 2026 · Fundamentals

Understanding the Linux /etc Directory: Key Configuration Files Explained

This article walks through the most important files and subdirectories under /etc—such as /etc/profile, /etc/bashrc, user‑specific .bash_* files, /etc/motd, /etc/issue, shadow‑password utilities, fstab and rc.local—explaining when they are executed, what they configure, and how they affect system behavior.

/etcBashEnvironment Variables
0 likes · 7 min read
Understanding the Linux /etc Directory: Key Configuration Files Explained
Dunmao Tech Hub
Dunmao Tech Hub
Dec 1, 2025 · Mobile Development

How to Install and Configure Dart for Cross‑Platform Development

This guide explains what Dart is, outlines its multi‑platform use cases, and provides step‑by‑step installation commands for Linux, macOS, and Windows, plus environment‑variable configuration, enabling developers to start building Dart‑based applications across devices.

DARTEnvironment VariablesFlutter
0 likes · 5 min read
How to Install and Configure Dart for Cross‑Platform Development
Raymond Ops
Raymond Ops
Nov 3, 2025 · Operations

Master Shell Scripting: A Hands‑On Guide to Bash Basics and Advanced Tricks

This comprehensive tutorial explains what a shell is, introduces common shell types, walks through creating and executing shell scripts, covers variables, quoting, special parameters, environment settings, and demonstrates practical string manipulation and batch‑renaming techniques for Linux users.

BashEnvironment VariablesShebang
0 likes · 17 min read
Master Shell Scripting: A Hands‑On Guide to Bash Basics and Advanced Tricks
Open Source Tech Hub
Open Source Tech Hub
Sep 5, 2025 · Backend Development

Mastering PHP Configuration: A Practical Guide to vlucas/phpdotenv

This guide explains how to securely manage configuration in PHP projects using the vlucas/phpdotenv library, covering installation, .env file creation, loading variables, best practices, performance tips, advanced features, and framework integration with clear code examples.

Environment VariablesSecuritydotenv
0 likes · 10 min read
Mastering PHP Configuration: A Practical Guide to vlucas/phpdotenv
Architecture and Beyond
Architecture and Beyond
Jul 5, 2025 · Information Security

Why Leaked OpenAI API Keys Are a Massive Risk and How to Protect Yours

Leaked API keys on GitHub expose millions of dollars and sensitive data, as illustrated by real-world breaches, and the article explains why developers embed secrets, the dangers involved, and practical steps—environment variables, secret managers, git hooks, and regular scanning—to prevent costly security incidents.

API SecurityEnvironment VariablesGitHub scanning
0 likes · 8 min read
Why Leaked OpenAI API Keys Are a Massive Risk and How to Protect Yours
Lin is Dream
Lin is Dream
May 22, 2025 · Backend Development

How Apifox Solves Swagger’s API Testing Pain Points with Automated Scripts

This article explains why Swagger falls short for API debugging in production, outlines the recurring issues developers face, and shows how Apifox’s import, environment variables, global parameters, pre‑ and post‑scripts, mock data, and cURL import features streamline API development and testing.

API testingApifoxAutomation scripts
0 likes · 10 min read
How Apifox Solves Swagger’s API Testing Pain Points with Automated Scripts
Rare Earth Juejin Tech Community
Rare Earth Juejin Tech Community
May 21, 2025 · Backend Development

Master Node.js v24: Real‑Time Watch, Multi‑File Test, Native Env Files & Colorful Console

With Node.js v24 released, this guide demonstrates how to use the new --watch flag for live file monitoring, the --test command for multi‑file testing, native --env-file support for environment variables, colorful console output via util.styleText, and built‑in WebSocket client/server examples.

BackendCLIConsole Styling
0 likes · 9 min read
Master Node.js v24: Real‑Time Watch, Multi‑File Test, Native Env Files & Colorful Console
Code Mala Tang
Code Mala Tang
May 5, 2025 · Information Security

6 Essential Python Security Practices Every Developer Should Follow

Learn how to safeguard your Python applications by avoiding hard‑coded secrets, using .env files, employing virtual environments, validating and sanitizing inputs, handling files securely, encrypting sensitive data, and implementing proper exception handling—all essential steps for robust information security.

Environment VariablesException HandlingPython
0 likes · 5 min read
6 Essential Python Security Practices Every Developer Should Follow
Liangxu Linux
Liangxu Linux
Apr 14, 2025 · Fundamentals

Master Linux Environment Variables: View, Set, and Delete Them

This guide explains what Linux environment variables are, lists common ones, and provides step‑by‑step commands for viewing, temporarily or permanently setting, and deleting variables, plus practical script examples to help users manage their shell environment efficiently.

BashEnvironment VariablesLinux
0 likes · 6 min read
Master Linux Environment Variables: View, Set, and Delete Them
AI Algorithm Path
AI Algorithm Path
Mar 24, 2025 · Fundamentals

Unlock Efficient Data Validation in Python with Pydantic

This article walks through installing Pydantic, creating basic and nested models, handling validation errors, using default values, defining custom validators, loading settings from environment variables, and serializing models to dictionaries and JSON, demonstrating how Pydantic streamlines data validation in Python.

Environment Variablescustom validatordata validation
0 likes · 7 min read
Unlock Efficient Data Validation in Python with Pydantic
Open Source Linux
Open Source Linux
Feb 25, 2025 · Fundamentals

Master Linux Environment Variables: View, Set, and Delete Them

This guide explains what Linux environment variables are, lists common ones, and provides step‑by‑step commands to view, temporarily or permanently set, and delete them, plus practical examples for using variables in scripts, helping users efficiently manage their system configuration.

BashEnvironment VariablesSystem Administration
0 likes · 6 min read
Master Linux Environment Variables: View, Set, and Delete Them
Python Programming Learning Circle
Python Programming Learning Circle
Feb 15, 2025 · Backend Development

Proper Python Configuration for Multi‑Environment Applications

This article explains how to structure Python projects so that configuration is managed through packages and environment variables, enabling seamless deployment across development, testing, staging, and production environments without code changes, while illustrating best practices with clear examples and code snippets.

BackendConfigurationDeployment
0 likes · 12 min read
Proper Python Configuration for Multi‑Environment Applications
Code Mala Tang
Code Mala Tang
Jan 14, 2025 · Fundamentals

What’s New in Python 3.14? 5 Features That Boost Performance and Safety

Python 3.14 introduces five major enhancements—including a reload_environ() function for updating environment variables, lazy annotation parsing, strict length checks for map(), clearer unpacking error messages, and new operator.is_none()/is_not_none() methods—each aimed at improving performance, safety, and developer ergonomics.

Environment VariablesNew Featureslazy annotations
0 likes · 7 min read
What’s New in Python 3.14? 5 Features That Boost Performance and Safety
Rare Earth Juejin Tech Community
Rare Earth Juejin Tech Community
Jan 9, 2025 · Frontend Development

Comprehensive Guide to Vite Configuration: Aliases, Plugins, Environment Variables, Build Optimizations, and Code Splitting

This article provides a detailed walkthrough of Vite's configuration options, covering development server setup, path aliasing, TypeScript support, plugin integration, environment variable handling, CSS pre‑processor settings, dependency pre‑bundling, production build tweaks, and advanced code‑splitting strategies for modern frontend projects.

Build ToolCode SplittingConfiguration
0 likes · 17 min read
Comprehensive Guide to Vite Configuration: Aliases, Plugins, Environment Variables, Build Optimizations, and Code Splitting
Code Ape Tech Column
Code Ape Tech Column
Dec 17, 2024 · Backend Development

Enhanced Configuration Property Support in Spring Boot 3.4.0

Spring Boot 3.4.0 introduces stronger type‑safe configuration, unified multi‑source support (YAML, properties, environment variables, command‑line), and improved IDE assistance, providing developers with clearer, safer, and more flexible ways to manage application settings compared with version 3.3.

Environment VariablesIDE SupportSpring Boot
0 likes · 11 min read
Enhanced Configuration Property Support in Spring Boot 3.4.0
Architecture Digest
Architecture Digest
Nov 30, 2024 · Backend Development

Enhanced Configuration Property Support in Spring Boot 3.4.0

Spring Boot 3.4.0 introduces stronger type‑safe configuration, unified multi‑source support, and improved IDE assistance, enabling developers to manage application settings more safely and efficiently compared with version 3.3, with practical examples for microservice scenarios.

Environment VariablesIDE SupportSpring Boot
0 likes · 10 min read
Enhanced Configuration Property Support in Spring Boot 3.4.0
macrozheng
macrozheng
Oct 21, 2024 · Backend Development

Boost Your Java API Testing with IntelliJ IDEA’s Built‑in HTTP Client

This guide shows Java backend developers how to replace external tools like Postman by using IntelliJ IDEA’s native HTTP Client plugin to create, edit, and run HTTP requests directly in the IDE, manage environments, import collections, and quickly generate JSON payloads from POJOs, streamlining API testing and improving code quality.

Environment VariablesHTTP clientIntelliJ IDEA
0 likes · 6 min read
Boost Your Java API Testing with IntelliJ IDEA’s Built‑in HTTP Client
Code Mala Tang
Code Mala Tang
Aug 27, 2024 · Backend Development

Mastering .env Files: Secure Node.js Config with dotenv and dotenvx

This guide explains why .env files are used, how to install and configure the dotenv package, handle multiple environments, expand variables, and secure secrets with dotenvx, providing clear code examples and best‑practice recommendations for Node.js developers.

BackendConfigurationEnvironment Variables
0 likes · 9 min read
Mastering .env Files: Secure Node.js Config with dotenv and dotenvx
Liangxu Linux
Liangxu Linux
Aug 4, 2024 · Fundamentals

Unlock the Power of Shell: Environment Variables, PATH, and File Search

Learn how to create and manage shell variables, differentiate between local and environment scopes, manipulate the PATH variable, and efficiently locate files using whereis, locate, which, and find commands, complete with practical examples and step‑by‑step instructions for Unix‑like systems.

BashEnvironment VariablesFile Search
0 likes · 9 min read
Unlock the Power of Shell: Environment Variables, PATH, and File Search
Liangxu Linux
Liangxu Linux
Feb 25, 2024 · Operations

Master Linux Environment Variables: 6 Proven Configuration Methods & Loading Order

Learn how to configure Linux environment variables using six practical methods—including export, editing ~/.bashrc, ~/.bash_profile, /etc/bashrc, /etc/profile, and /etc/environment—plus understand the loading sequence and testing techniques to ensure your PATH and custom variables work reliably across users and sessions.

BashEnvironment VariablesLinux
0 likes · 11 min read
Master Linux Environment Variables: 6 Proven Configuration Methods & Loading Order
php Courses
php Courses
Feb 20, 2024 · Backend Development

How Laravel Loads Environment Variables During Bootstrap

This article explains Laravel's bootstrapping process for loading environment variables, detailing each step from configuration cache checking to creating a Dotenv instance, parsing the .env file, and handling related exceptions, with code examples illustrating the workflow.

BackendBootstrapEnvironment Variables
0 likes · 9 min read
How Laravel Loads Environment Variables During Bootstrap
MaGe Linux Operations
MaGe Linux Operations
Jan 18, 2024 · Operations

Master Linux Environment Variables: 6 Methods & Loading Order Explained

This guide walks through six ways to configure Linux environment variables—including export commands, editing ~/.bashrc, ~/.bash_profile, /etc/bashrc, /etc/profile, and /etc/environment—while also detailing how the system loads these files and offering practical tips for testing and customizing variable definitions.

BashEnvironment VariablesLinux
0 likes · 13 min read
Master Linux Environment Variables: 6 Methods & Loading Order Explained
Liangxu Linux
Liangxu Linux
Sep 26, 2023 · Operations

Master Linux Environment Variable Configuration: Methods, Loading Order & Tips

This guide explains how to configure Linux environment variables using various methods—including direct export, editing ~/.bashrc, ~/.profile, /etc/bashrc, /etc/profile, and /etc/environment—covers the loading order of these files, provides testing techniques, and offers practical tips for effective variable management.

BashEnvironment Variables
0 likes · 12 min read
Master Linux Environment Variable Configuration: Methods, Loading Order & Tips
Ops Development Stories
Ops Development Stories
Aug 3, 2023 · Cloud Native

How to Use Kubernetes as a Config Center and Auto‑Generate Dockerfiles

This article compares traditional independent config centers with Kubernetes as a config center, explains how to simplify environment variable handling, automatically generate Dockerfiles, and manage build and runtime images in Go projects, offering practical tips and code examples for containerized service deployment.

Config CenterDockerfileEnvironment Variables
0 likes · 11 min read
How to Use Kubernetes as a Config Center and Auto‑Generate Dockerfiles
ByteDance Web Infra
ByteDance Web Infra
Apr 11, 2023 · Frontend Development

Migrating Excalidraw from Webpack to Rspack: A Step‑by‑Step Guide

This article demonstrates how to migrate the open‑source Excalidraw drawing application from Webpack to the Rust‑based Rspack bundler, covering repository cloning, dependency installation, Rspack initialization, Sass, HTML plugin, environment variable handling, static asset copying, performance comparison, and the use of react‑scripts‑rspack for automated migration.

Build PerformanceEnvironment VariablesHTML plugin
0 likes · 10 min read
Migrating Excalidraw from Webpack to Rspack: A Step‑by‑Step Guide
MaGe Linux Operations
MaGe Linux Operations
Feb 14, 2023 · Operations

Master Linux Environment Variables: 6 Proven Configuration Methods

This guide explains how to read and configure Linux environment variables, covering six methods—including export, editing ~/.bashrc, ~/.bash_profile, /etc/bashrc, /etc/profile, and /etc/environment—while detailing the loading order, user vs system scopes, and practical tips for managing PATH and custom variables.

BashEnvironment VariablesShell scripting
0 likes · 13 min read
Master Linux Environment Variables: 6 Proven Configuration Methods
MaGe Linux Operations
MaGe Linux Operations
Jan 19, 2023 · Fundamentals

Master Linux Environment Variables: View, Set, and Use Them in Bash

This guide explains what Linux environment variables are, how to display them with env or printenv, set new variables using export, make them read‑only, unset them, access them from C programs with getenv/setenv/unsetenv, and modify system configuration files to persist changes.

BashEnvironment VariablesLinux
0 likes · 6 min read
Master Linux Environment Variables: View, Set, and Use Them in Bash
Open Source Linux
Open Source Linux
Dec 21, 2022 · Fundamentals

Master Linux Environment Variables: Configuration Methods & Loading Order

This guide explains how to read, set, and persist Linux environment variables using various commands and configuration files, compares multiple configuration approaches, and details the exact sequence in which the system loads these files for both user‑level and system‑wide settings.

Environment VariablesLinuxShell
0 likes · 11 min read
Master Linux Environment Variables: Configuration Methods & Loading Order
Liangxu Linux
Liangxu Linux
Dec 4, 2022 · Operations

Master Linux Environment Variables: Configure, Load, and Debug Paths Efficiently

This guide explains how to set and read Linux environment variables, presents six practical methods for configuring PATH—including using export, editing ~/.bashrc, ~/.bash_profile, /etc/bashrc, /etc/profile, and /etc/environment—details their scope and persistence, and analyzes the system's variable‑loading order with testing scripts.

BashEnvironment VariablesLinux
0 likes · 12 min read
Master Linux Environment Variables: Configure, Load, and Debug Paths Efficiently
转转QA
转转QA
Sep 6, 2022 · Backend Development

A Case Study of Troubleshooting Service Log Garbled Character Issues

This article details a step‑by‑step investigation of Java service log garbled‑character problems caused by incorrect LC_CTYPE and locale settings, describing how environment variable synchronization via SSH led to ASCII encoding defaults and outlining preventive configurations for both client and server.

Environment VariablesJavaLinux
0 likes · 9 min read
A Case Study of Troubleshooting Service Log Garbled Character Issues
Open Source Linux
Open Source Linux
Jun 7, 2022 · Operations

Mastering Linux Shell: 13 Essential Concepts Every Developer Should Know

This article explains the fundamentals of Linux shells, covering why they’re called shells, prompt and carriage return behavior, echo command, quoting rules, variable assignment and export, differences between exec and source, grouping syntax, arithmetic expansion, parameter handling, loops, conditionals, and I/O redirection.

BashEnvironment Variablesio redirection
0 likes · 13 min read
Mastering Linux Shell: 13 Essential Concepts Every Developer Should Know
MaGe Linux Operations
MaGe Linux Operations
Feb 4, 2022 · Operations

Master Linux Environment Variables: Configuring Paths & Loading Order

This guide explains how to read, set, and permanently configure Linux environment variables—especially the PATH variable—using commands like export and editing files such as ~/.bashrc, ~/.profile, /etc/profile, /etc/bashrc, and /etc/environment, and details the loading order and practical tips for effective management.

Environment VariablesShellpath
0 likes · 12 min read
Master Linux Environment Variables: Configuring Paths & Loading Order
Laravel Tech Community
Laravel Tech Community
Oct 22, 2021 · Backend Development

apache_getenv — Retrieve Apache Subprocess Environment Variable

The article explains the PHP function apache_getenv, which retrieves the value of a specified Apache environment variable, describes its required Apache 2 context, details its parameters $variable and optional $walk_to_top, outlines the return value, and provides a usage example.

Backend DevelopmentEnvironment VariablesPHP
0 likes · 2 min read
apache_getenv — Retrieve Apache Subprocess Environment Variable
Java Architect Essentials
Java Architect Essentials
Sep 17, 2021 · Backend Development

Using IntelliJ IDEA REST Client for API Testing: Features, Scripts, and Environment Management

This article explains how IntelliJ IDEA REST Client can replace Postman for API debugging by offering integrated request consoles, history logs, environment variable support, scriptable assertions, and token handling, providing a unified tool for backend developers to test and share HTTP requests efficiently.

Environment VariablesHTTP requestsIDEA REST Client
0 likes · 8 min read
Using IntelliJ IDEA REST Client for API Testing: Features, Scripts, and Environment Management
macrozheng
macrozheng
Aug 25, 2021 · Backend Development

Master Postman: Hidden Features for Efficient API Testing and Automation

This article reveals powerful yet often overlooked Postman features—including environment variables, global and collection scopes, pre‑request scripts, test scripts, and token automation—demonstrating how to streamline API debugging across multiple environments, automate authentication, and manage variable lifecycles for more efficient development workflows.

API testingAutomationEnvironment Variables
0 likes · 11 min read
Master Postman: Hidden Features for Efficient API Testing and Automation
Node Underground
Node Underground
Jul 25, 2021 · Backend Development

Node.js Debugging Essentials: Env Vars, Exit Codes, Deprecations & Sync I/O

Learn how to effectively debug Node.js applications by leveraging environment variables like DEBUG and NODE_DEBUG, interpreting process exit codes, handling deprecated APIs, detecting synchronous I/O, and managing unhandled promise rejections, with practical code examples and command-line flags to streamline troubleshooting.

DebuggingEnvironment VariablesNode.js
0 likes · 12 min read
Node.js Debugging Essentials: Env Vars, Exit Codes, Deprecations & Sync I/O
php Courses
php Courses
Apr 6, 2021 · Backend Development

ThinkPHP6 Configuration and Environment Variable Setup Guide

This article explains how to work with the ThinkPHP6 config directory, rename and edit the .example.env file to .env, adjust database connection settings, and use the think\facade\Env facade to access environment variables in a PHP backend project.

Environment VariablesThinkPHP6
0 likes · 3 min read
ThinkPHP6 Configuration and Environment Variable Setup Guide
php Courses
php Courses
Jan 22, 2021 · Backend Development

Transferring API Collections Between Postman and Talend API Tester

This tutorial explains how to create a Postman collection, use environment variables for host URLs, share the collection via a public link, and import/export it between Postman and the Talend API Tester extension, ensuring seamless data exchange for API testing.

API testingCollection SharingEnvironment Variables
0 likes · 6 min read
Transferring API Collections Between Postman and Talend API Tester
Liangxu Linux
Liangxu Linux
Jan 20, 2021 · Fundamentals

Master the Linux export Command: Beginner’s Guide to Environment Variables

This article explains how to use the Linux export command to set and view environment variables, demonstrates common options such as listing all exports, exporting specific variables, exporting functions, and shows how to persist settings in shell configuration files, providing practical examples for beginners.

Environment VariablesExportLinux
0 likes · 6 min read
Master the Linux export Command: Beginner’s Guide to Environment Variables
ITPUB
ITPUB
Dec 10, 2020 · Fundamentals

Master Linux Environment Variables: Quick Config & Loading Order Explained

This guide explains how to configure Linux environment variables—especially PATH for MySQL—using various methods such as export commands, editing ~/.bashrc, ~/.bash_profile, /etc/bashrc, /etc/profile, and /etc/environment, and details the exact order Linux reads these files during login and shell startup.

BashEnvironment VariablesLinux
0 likes · 11 min read
Master Linux Environment Variables: Quick Config & Loading Order Explained
Python Crawling & Data Mining
Python Crawling & Data Mining
Nov 24, 2020 · Fundamentals

Unlock Python’s sys and os Modules: Essential Functions and Practical Examples

This article introduces Python’s sys and os modules, detailing their most useful functions for runtime configuration, file and path manipulation, process control, and environment handling, and provides clear code examples—including a simple progress bar and a demonstration of sys.argv versus __file__ behavior—to help readers master essential system programming techniques.

Environment VariablesFile OperationsOS module
0 likes · 22 min read
Unlock Python’s sys and os Modules: Essential Functions and Practical Examples
Liangxu Linux
Liangxu Linux
Nov 22, 2020 · Operations

Master Linux Environment Variables: Six Ways to Set and Load PATH

This guide explains multiple methods for configuring Linux environment variables—especially PATH—on Ubuntu, covering user‑level files like ~/.bashrc and system‑wide files such as /etc/profile, and details the exact loading order Linux follows when initializing shells.

BashEnvironment VariablesLinux
0 likes · 11 min read
Master Linux Environment Variables: Six Ways to Set and Load PATH
macrozheng
macrozheng
Nov 16, 2020 · Backend Development

Boost API Testing: How to Integrate Swagger with Postman for Seamless Debugging

This guide shows how to import Swagger-generated API definitions into Postman, configure environment variables, handle authentication tokens, and use Postman for efficient API debugging, while noting the limitations of documentation display compared to Swagger.

API testingAuthenticationBackend Development
0 likes · 6 min read
Boost API Testing: How to Integrate Swagger with Postman for Seamless Debugging
MaGe Linux Operations
MaGe Linux Operations
Sep 23, 2020 · Operations

How to Install Python 3.6.5 on Linux: Step‑by‑Step Guide

This tutorial walks you through checking the pre‑installed Python version, locating its binaries, downloading Python 3.6.5 source, installing required dependencies, compiling and installing the interpreter, creating symlinks, and configuring environment variables on a Linux system.

CompilationEnvironment VariablesLinux
0 likes · 6 min read
How to Install Python 3.6.5 on Linux: Step‑by‑Step Guide
FunTester
FunTester
Sep 23, 2020 · Backend Development

Getting Started with IntelliJ's Text-Based HTTP Client

This guide explains how to create .http/.rest files in IntelliJ, write and run GET requests, use variables and environment files, separate multiple requests, and share request definitions securely with a team, providing practical examples and code snippets.

API testingBackend DevelopmentEnvironment Variables
0 likes · 5 min read
Getting Started with IntelliJ's Text-Based HTTP Client
Liangxu Linux
Liangxu Linux
Jul 22, 2020 · Operations

How to Fix sudo Missing Environment Variables on Linux

When using sudo, Linux resets the environment, causing custom variables to disappear; this guide explains why, shows the relevant lines in /etc/sudoers, and presents three practical methods—including sudo -E, editing env_keep and secure_path, and creating aliases—to retain needed variables.

BashEnvironment VariablesLinux
0 likes · 4 min read
How to Fix sudo Missing Environment Variables on Linux
MaGe Linux Operations
MaGe Linux Operations
Jun 17, 2020 · Cloud Native

Mastering Kubernetes ConfigMaps: From Creation to Pod Integration

This comprehensive guide explains how ConfigMaps and Secrets work in Kubernetes, walks through multiple ways to provide configuration to containers—including command‑line arguments, environment variables, and volume mounts—shows how to create ConfigMaps from literals, files, or directories, and demonstrates how to consume them in Pods with env, envFrom, and volume mounts, plus best‑practice tips.

ConfigMapEnvironment VariablesKubernetes
0 likes · 34 min read
Mastering Kubernetes ConfigMaps: From Creation to Pod Integration