Pinned Loading
-
vscode-chutzpahrunner
vscode-chutzpahrunner PublicVSCode extension for executing tests with Chutzpah
TypeScript 3
-
Print all browser plugins from brows...
Print all browser plugins from browser console 1for (i = 0; i < navigator.plugins.length; i++) { console.log(navigator.plugins[i].name + ' '); }
-
Find duplicate css classes in a file
Find duplicate css classes in a file 1# One liner!
2# Finds all duplicate CSS classes in a CSS file, and ignores hex colour codes (the #DDDDDD pattern would be a false positve)
3Get-Content .\filename.css | ForEach-Object { $_.Split(" ,.", [System.StringSplitOptions]::RemoveEmptyEntries) } | ForEach-Object { $_.Trim() } | where { ($_[0] -eq "#" -or $_[0] -eq "." ) -and (!$_.EndsWith(";")) } | where {$_ -notmatch '#[0-9a-fA-F]{2,}$'} | sort-object | group-object | where-object { $_.Count -gt 1 }
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.