Data update
This commit is contained in:
parent
5150844a7d
commit
4bb20c9b71
7735 changed files with 38060 additions and 199180 deletions
|
|
@ -1,20 +0,0 @@
|
|||
function Find-UnimplementedTask
|
||||
{
|
||||
[CmdletBinding()]
|
||||
[OutputType([string[]])]
|
||||
Param
|
||||
(
|
||||
[Parameter(Mandatory=$true,
|
||||
Position=0)]
|
||||
[string]
|
||||
$Language
|
||||
)
|
||||
|
||||
$url = "http://rosettacode.org/wiki/Reports:Tasks_not_implemented_in_$Language"
|
||||
$web = Invoke-WebRequest $url
|
||||
$unimplemented = 1
|
||||
|
||||
[string[]](($web.AllElements |
|
||||
Where-Object {$_.class -eq "mw-content-ltr"})[$unimplemented].outerText -split "`r`n" |
|
||||
Select-String -Pattern "[^0-9A-Z]$" -CaseSensitive)
|
||||
}
|
||||
|
|
@ -1,4 +0,0 @@
|
|||
$tasks = Find-UnimplementedTask -Language PowerShell
|
||||
|
||||
$tasks[0..5],".`n.`n.",$tasks[-6..-1]
|
||||
Write-Host "`nTotal unimplemented Tasks: $($tasks.Count)"
|
||||
Loading…
Add table
Add a link
Reference in a new issue