Raspberry Pi Zero W Kiosk

I wanted to setup a digital signage in my house for use with my home theater. I used https://www.mattsshack.com/plex-movie-poster-display-v3/ and built a VM to host the site displaying movie posters from my Plex Server. I then used a Raspberry Pi Zero W to view the poster site on the digital display.

Continue Reading →

Windows – Speedtest from Terminal

clearcd “$env:USERPROFILE\Downloads”Invoke-WebRequest “https://install.speedtest.net/app/cli/ookla-speedtest-1.1.1-win64.zip” -OutFile “$env:USERPROFILE\Downloads\speedtest.zip”Expand-Archive -LiteralPath “$env:USERPROFILE\Downloads\speedtest.zip” -DestinationPath “$env:USERPROFILE\Downloads\speedtest” -forceremove-item “$env:USERPROFILE\Downloads\speedtest.zip” -Force$Results = & “$env:USERPROFILE\Downloads\speedtest\speedtest.exe” –format=json –accept-license –accept-gdpr | Convertfrom-JSON$Results

Continue Reading →