A Wget output formatter and parser made with PHP
A Wget output parser that turns a Wget file download into a viewable JSON output. This provides a different observation and makes documenting network speeds possible. The doWget() function attempts…
A Wget output parser that turns a Wget file download into a viewable JSON output. This provides a different observation and makes documenting network speeds possible. The doWget() function attempts…
How to generate URL authentication tokens and expiry with PHP on BunnyCDN (Bunny Net) URLs. This means that URL’s fetched that do not have a valid token and expiry will…
A youtube-dl command to archive a Youtube channel in high resolution as an mp4, write the downloaded id to a file, save the thumbnail plus embed metadata to the video….
Downloading, installing and upgrading Youtube-dl on Ubuntu 20.04 Youtube-dl is a command-line program to download Youtube videos in a variety of formats. Youtube-dl is designed to handle archive type tasks…
How to force SSH key only access to your Linux system with password access being denied. Creating SSH key access to Linux instead of a password. Open the sshd config…
A different method to finding values in an associated or nested array rather than use a loop. Looping The seemingly easiest way is to do a loop and when the…
Comparing 4 different values from select dropdown inputs with jQuery/javascript. Having the ability to do a comparison between up to 4 different selected values. Whilst the CodePen example only adds…
Getting the query parameters out of a URL string by using vanilla Javascript. The query parameters are what is used in HTTP GET to shape a response. The main piece…
Converting seconds to a time string and time string to seconds with vanilla Javascript. The time string is in the format of hh:mm:ss eg 01:24:52 is 1 hour, 24 minutes…
Checking if an array is empty or not with Javascript. let the_array = []; Check if the array is empty Array.isArray() checks if the value passed in is an…