2024-11-08 12:38:20 +01:00
|
|
|
The *list-tiobe-index.ps1* Script
|
|
|
|
===========================
|
2022-11-17 20:02:26 +01:00
|
|
|
|
|
|
|
list-tiobe-index.ps1
|
2021-10-17 14:33:27 +02:00
|
|
|
|
|
|
|
|
2023-07-29 10:04:38 +02:00
|
|
|
Parameters
|
|
|
|
----------
|
2021-10-17 14:33:27 +02:00
|
|
|
```powershell
|
|
|
|
|
|
|
|
|
|
|
|
[<CommonParameters>]
|
|
|
|
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
|
|
|
|
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
|
|
|
```
|
|
|
|
|
2023-07-29 10:04:38 +02:00
|
|
|
Script Content
|
|
|
|
--------------
|
2022-11-17 20:05:34 +01:00
|
|
|
```powershell
|
2022-11-17 20:02:26 +01:00
|
|
|
<#
|
|
|
|
.SYNOPSIS
|
|
|
|
Lists the TIOBE index of top programming languages
|
|
|
|
.DESCRIPTION
|
|
|
|
This PowerShell script lists the TIOBE index of top programming languages.
|
|
|
|
.EXAMPLE
|
2023-08-06 21:36:33 +02:00
|
|
|
PS> ./list-tiobe-index.ps1
|
2022-11-17 20:02:26 +01:00
|
|
|
.LINK
|
|
|
|
https://github.com/fleschutz/PowerShell
|
|
|
|
.NOTES
|
|
|
|
Author: Markus Fleschutz | License: CC0
|
|
|
|
#>
|
|
|
|
|
|
|
|
function WriteBar { param([string]$Text, [float]$Value, [float]$Max, [float]$Change)
|
|
|
|
$Num = ($Value * 100.0) / $Max
|
|
|
|
while ($Num -ge 1.0) {
|
|
|
|
write-host -noNewLine "█"
|
|
|
|
$Num -= 1.0
|
|
|
|
}
|
|
|
|
if ($Num -ge 0.875) {
|
|
|
|
write-host -noNewLine "▉"
|
|
|
|
} elseif ($Num -ge 0.75) {
|
|
|
|
write-host -noNewLine "▊"
|
|
|
|
} elseif ($Num -ge 0.625) {
|
|
|
|
write-host -noNewLine "▋"
|
|
|
|
} elseif ($Num -ge 0.5) {
|
|
|
|
write-host -noNewLine "▌"
|
|
|
|
} elseif ($Num -ge 0.375) {
|
|
|
|
write-host -noNewLine "▍"
|
|
|
|
} elseif ($Num -ge 0.25) {
|
|
|
|
write-host -noNewLine "▎"
|
|
|
|
} elseif ($Num -ge 0.125) {
|
|
|
|
write-host -noNewLine "▏"
|
|
|
|
}
|
|
|
|
write-host -noNewLine " $Text $($Value)%"
|
|
|
|
if ($Change -ge 0.0) {
|
|
|
|
write-host -foregroundColor green " +$($Change)%"
|
|
|
|
} else {
|
|
|
|
write-host -foregroundColor red " $($Change)%"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
|
|
|
& write-big.ps1 "TIOBE INDEX 2021-06"
|
|
|
|
" Source: https://www.tiobe.com"
|
|
|
|
""
|
|
|
|
|
2023-12-07 20:24:45 +01:00
|
|
|
$Table = import-csv "$PSScriptRoot/../data/TIOBE-index.csv"
|
2022-11-17 20:02:26 +01:00
|
|
|
foreach($Row in $Table) {
|
|
|
|
[string]$Name = $Row.Language
|
|
|
|
[float]$Value = $Row.Popularity
|
|
|
|
[float]$Change = $Row.Change
|
|
|
|
WriteBar $Name $Value 14.0 $Change
|
|
|
|
}
|
|
|
|
exit 0 # success
|
|
|
|
} catch {
|
|
|
|
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
|
|
|
exit 1
|
|
|
|
}
|
2022-11-17 20:05:34 +01:00
|
|
|
```
|
2022-11-17 20:02:26 +01:00
|
|
|
|
2024-11-20 11:52:20 +01:00
|
|
|
*(generated by convert-ps2md.ps1 as of 11/20/2024 11:51:57)*
|