Skip to content
View psitem's full-sized avatar
Block or Report

Block or report psitem

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 Loading

  1. uptime-kuma-pacman-ghost-light uptime-kuma-pacman-ghost-light Public

    Turn a Pacman Ghost Light into an Uptime Kuma status monitor with CircuitPython.

    Python 3

  2. This is the Plex monitoring script t... This is the Plex monitoring script that wrote and have been using since +/- 2017. I cribbed the list of processes to kill and the idea of checking that the web UI responded without error from other people's scripts but the rest is all me.
    1
    #Start-Transcript -Append -Path .\plex-monitor-transcript.log -IncludeInvocationHeader:$false -Force
    2
    
    
    3
    <#
    4
        This is my Plex monitoring script. There are many like it, but this one is mine. If 
    5
        you're running Plex as a Windows Service this script is not for you as-written, but 
  3. This is my bookmarklet for archive.i... This is my bookmarklet for archive.is. There are many like it, but this one is mine. This one strips the querystring and navigates directly to the latest archived version.
    1
    javascript:void(open('https://archive.is/newest/%27+encodeURIComponent( document.location.origin + document.location.pathname ),"_self"))
  4. Sets all Windows Taskbar Notificatio... Sets all Windows Taskbar Notification Icons to Visible. Should probably be in a Scheduled Task set to run 'At log on' and 'Repeat task every: 1 hour'
    1
    $basePath = 'HKCU:\Control Panel\NotifyIconSettings\'
    2
    Get-ChildItem -Path $basePath | `
    3
        ForEach-Object { Get-ItemProperty "$basePath$($_.PSChildName)" } | `
    4
        Set-ItemProperty -Name 'IsPromoted' -Value 1
  5. Modifies the output of Get-PhysicalD... Modifies the output of Get-PhysicalDisk to have enclosure information. Works On My Machine™ certified with an LSI SAS 9201-16e and Promise SAS enclosures.
    1
    <#
    2
        Wrote this to scratch an itch for tracking where my disks are physically located within and across
    3
        storage enclosures. Before writing this I was using a spreadsheet, which was tedious to maintain. 
    4
        For this script to be useful, you'll need a storage enclosure that Windows recognizes and exposes 
    5
        through WMI, ie: one that provides SCSI Enclosure Services (SES).
  6. edgerouter-backup edgerouter-backup Public

    EdgeRouter to git repo backup scripts.

    Shell 73 13