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

Bias Types:
⚠️ powershell_heavy
⚠️ windows_first
⚠️ missing_linux_example
⚠️ windows_tools
Summary:
The documentation demonstrates a strong Windows bias. All shell and command-line examples use PowerShell syntax, including project creation, environment variable setup, and program execution. There are no equivalent Bash or Linux/macOS shell examples provided. The documentation assumes the use of Windows tools and patterns throughout, which may hinder Linux or macOS developers.
Recommendations:
  • For every PowerShell example, provide an equivalent Bash example for Linux/macOS users.
  • When demonstrating environment variable setup, show both PowerShell and Bash export syntax.
  • For file creation and navigation (e.g., creating demo.java, running Java programs), include Bash commands alongside PowerShell.
  • Instruct users on how to run Java files on both Windows and Linux/macOS (e.g., 'java demo.java' vs 'java ./demo.java').
  • Avoid assuming the use of Windows-specific tools or shells; clarify that the SDK and tools are cross-platform.
  • Consider a 'Platform differences' note or section to highlight any OS-specific considerations.
GitHub Create pull request

Scan History

Date Scan ID Status Bias Status
2025-07-12 23:44 #41 in_progress ❌ Biased
2025-07-12 00:58 #8 cancelled ✅ Clean
2025-07-10 05:06 #7 processing ✅ Clean

Flagged Code Snippets

cd DemoProject New-Item demo.java
java .\demo.java
$Env:AZURE_CLIENT_ID="<client-id>" A$Env:AZURE_CLIENT_SECRET="<client-secret>" $Env:AZURE_TENANT_ID="<tenant-id>" $Env:MAPS_CLIENT_ID="<maps-client-id>"
$Env:SUBSCRIPTION_KEY="<subscription-key>"