Skip to content
View squeakerdev's full-sized avatar
  • DevOps Engineer
  • United Kingdom
Block or Report

Block or report squeakerdev

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. Emojis Emojis Public

    An emoji management bot for Discord

    Python 17 6

  2. NoDistractions NoDistractions Public

    Simple distraction (website & app) blocker for work or study

    Python

  3. QuantumTester QuantumTester Public

    Python app to test tracking accuracy with different Win32PrioritySeparation values

    Python

  4. RainbowDesktop RainbowDesktop Public

    Python app to sort your desktop icons in (approximate) rainbow order

    Python

  5. MouseSwap MouseSwap Public

    Swap between two mice in one click

    PowerShell

  6. Powershell utility to check for IRQ ... Powershell utility to check for IRQ sharing on Windows systems
    1
    try {
    2
        $irqs = Get-WmiObject -Class Win32_IRQResource
    3
        $sharedIRQs = $irqs | Group-Object -Property IRQNumber | Where-Object { $_.Count -gt 1 }
    4
    
                  
    5
        if (-not $sharedIRQs -or $sharedIRQs.Count -eq 0) {