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
powershell_heavy
missing_linux_example
windows_tools
Summary
The documentation provides a PowerShell example for URL encoding but does not offer equivalent Linux or cross-platform command-line examples (such as Bash or Python). This may disadvantage users on Linux or macOS, as PowerShell is primarily associated with Windows environments. No Linux-native tools or commands are mentioned for this common task.
Recommendations
  • Add a Bash example for URL encoding, such as using 'python3 -c "import urllib.parse, sys; print(urllib.parse.quote(sys.argv[1]))" "$url"' or 'jq -sRr @uri <<< "$url"'.
  • Mention cross-platform or platform-agnostic tools (e.g., Python, Node.js) for URL encoding.
  • Explicitly state that the PowerShell example is one of several possible methods, and provide parity for Linux/macOS users.
  • Consider including a table or section listing equivalent commands for Windows (PowerShell), Linux (Bash), and macOS.
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

Flagged Code Snippets

$url = "https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/quickstarts/microsoft.storage/storage-account-create/azuredeploy.json"
[uri]::EscapeDataString($url)