Tag

environment variables

1 views collected around this technical thread.

Python Programming Learning Circle
Python Programming Learning Circle
Jun 12, 2025 · Fundamentals

How to Completely Uninstall Python from Windows: Step-by-Step Guide

Learn how to fully remove Python from a Windows system by following detailed steps—including using the installer’s uninstall option, Windows Settings, manual deletion of installation folders, cleaning environment variables, and clearing related AppData and pip caches—to ensure no residual files remain.

Uninstallenvironment variablestutorial
0 likes · 4 min read
How to Completely Uninstall Python from Windows: Step-by-Step Guide
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.

Best PracticesException HandlingPython
0 likes · 5 min read
6 Essential Python Security Practices Every Developer Should Follow
Code Mala Tang
Code Mala Tang
May 4, 2025 · Backend Development

Mastering Environment Variables in FastAPI: Secure, Scalable Configurations

This guide explains why environment variables are essential for FastAPI projects and provides step‑by‑step instructions for both a simple .env + python‑dotenv setup and a modern pydantic‑settings approach, including Docker integration and security best practices.

DockerSecuritybackend configuration
0 likes · 6 min read
Mastering Environment Variables in FastAPI: Secure, Scalable Configurations
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.

ConfigurationDeploymentPython
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.

Python 3.14environment variableslazy 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.

ConfigurationTypeScriptbuild tool
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.

IDE SupportSpring Bootconfiguration-properties
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.

Backend DevelopmentIDE 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.

HTTP ClientIntelliJ IDEAJava API testing
0 likes · 6 min read
Boost Your Java API Testing with IntelliJ IDEA’s Built‑in HTTP Client
Cognitive Technology Team
Cognitive Technology Team
Sep 15, 2024 · Backend Development

Understanding Java System Properties vs System Environment Variables and How to Modify Them

This article explains the distinction between Java system properties and operating‑system environment variables, shows how to read and set them in Java, and demonstrates advanced techniques using reflection to modify environment variables at runtime for the current process.

ConfigurationJavabackend
0 likes · 7 min read
Understanding Java System Properties vs System Environment Variables and How to Modify Them
Code Mala Tang
Code Mala Tang
Sep 13, 2024 · Backend Development

How to Get TypeScript Autocomplete for process.env and Safely Validate Env Variables

This article explains why TypeScript’s process.env lacks autocomplete, shows three approaches—including global type augmentation, a custom getter function, and using t3‑env with Zod—to ensure environment variables are type‑safe and available at runtime.

Node.jsTypeScriptZod
0 likes · 6 min read
How to Get TypeScript Autocomplete for process.env and Safely Validate Env Variables
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.

ConfigurationNode.jsSecurity
0 likes · 9 min read
Mastering .env Files: Secure Node.js Config with dotenv and dotenvx
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.

BootstrapLaravelPHP
0 likes · 9 min read
How Laravel Loads Environment Variables During Bootstrap
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.

HTML pluginRspackSASS
0 likes · 10 min read
Migrating Excalidraw from Webpack to Rspack: A Step‑by‑Step Guide
Python Programming Learning Circle
Python Programming Learning Circle
Sep 14, 2022 · Fundamentals

How to Set Up and Install Python 3 Development Environment Across Platforms

This guide explains how to download, install, and configure Python 3 on Windows, Linux, and macOS, covering binary installers, source compilation, environment‑variable setup, and ways to run Python scripts or use an IDE such as PyCharm, with detailed command examples.

Cross‑PlatformInstallationPython
0 likes · 8 min read
How to Set Up and Install Python 3 Development Environment Across Platforms
转转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.

Backend DevelopmentJavaencoding
0 likes · 9 min read
A Case Study of Troubleshooting Service Log Garbled Character Issues
Efficient Ops
Efficient Ops
Nov 8, 2021 · Cloud Native

Mastering Kubernetes Environment Variables: Static, Dynamic, and ConfigMap Strategies

This article explains how to effectively use static and dynamic environment variables in Kubernetes, including explicit definitions, implicit inclusion, Helm injection, and ConfigMap-based approaches, to streamline operations, reduce complexity, and improve microservice configuration and logging.

ConfigMapDevOpsHelm
0 likes · 7 min read
Mastering Kubernetes Environment Variables: Static, Dynamic, and ConfigMap Strategies
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.

ApacheBackend DevelopmentPHP
0 likes · 2 min read
apache_getenv — Retrieve Apache Subprocess Environment Variable