Sad Tux - Windows bias detected
This page contains Windows bias

About This Page

This page is part of the Azure documentation. It contains code examples and configuration instructions for working with Azure services.

Bias Analysis

Detected Bias Types
windows_first
Summary
The documentation demonstrates a mild 'windows_first' bias. In the prerequisites, the only platform-specific setup link is for Python on Windows, with no equivalent for Linux or macOS. In the environment variable setup section, Windows command prompt and PowerShell instructions are listed before macOS/Linux, but all platforms are covered and the instructions are clearly separated. No PowerShell-heavy scripting, exclusive use of Windows tools, or missing Linux examples are present.
Recommendations
  • In the prerequisites, provide links for setting up Python on Linux and macOS alongside the Windows link.
  • When presenting environment variable setup commands, consider listing all platforms in parallel (e.g., in a table or side-by-side tabs) or rotating the order so Linux/macOS is not always last.
  • Where possible, ensure parity in references and guidance for all major platforms to avoid the perception of Windows as the default or primary environment.
GitHub Create Pull Request

Scan History

Date Scan Status Result
2025-07-12 23:44 #41 cancelled Biased Biased
2025-07-12 00:58 #8 cancelled Clean Clean
2025-07-10 05:06 #7 processing Clean Clean
2025-07-09 23:22 #6 cancelled Clean Clean

Flagged Code Snippets

    mkdir app-configuration-example
    
    setx AZURE_APPCONFIG_CONNECTION_STRING "<connection-string-of-your-app-configuration-store>"
    
    $Env:AZURE_APPCONFIG_CONNECTION_STRING = "connection-string-of-your-app-configuration-store"
    
    setx AZURE_APPCONFIG_ENDPOINT "endpoint-of-your-app-configuration-store"
    
    $Env:AZURE_APPCONFIG_ENDPOINT = "endpoint-of-your-app-configuration-store"