Skip to content
View dfrencham's full-sized avatar
  • Brisbane, Australia
Block or Report

Block or report dfrencham

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. vscode-chutzpahrunner vscode-chutzpahrunner Public

    VSCode extension for executing tests with Chutzpah

    TypeScript 3

  2. rad-gate rad-gate Public

    Arduino powered BMX gate controller with spoken cadence and random start

    HTML 12 8

  3. Print all browser plugins from brows... Print all browser plugins from browser console
    1
    for (i = 0; i < navigator.plugins.length; i++) { console.log(navigator.plugins[i].name + ' '); }
  4. 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)
    3
    Get-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 }