Print awesome artwork in your Linux terminal.

Print some artwork to your terminal with these cool commands. These are excellent ASCII artwork samples that could be very nice to have in your terminal. wget -qO- git.io/burger Here is the output of that one-liner. It looks awesome when printed in the terminal. wget -qO- http://git.io/coffee">git.io/coffee   wget -qO- http://git.io/ff5boss">git.io/ff5boss   wget -qO- http://git.io/nier2b">git.io/nier2b … Read more

Nice web scraper to get a listing of all 4chan threads on a certain board.

This is a nice web scraper that will read a 4chan board and return a listing of all threads on that board page. This could be very useful code to expand into a useful script. #!/usr/bin/env bash   set -e   links=( $( wget "$@" -qo /dev/null -SO – | grep -oE ‘</span><a href=\"thread\/[0-9]+\"’ | … Read more

How to perform the same task as wget using Windows 10 and Powershell 5.0.

The Windows 10 Powershell command prompt has a cmdlet named Invoke-WebRequest, this allows a user to download a link using Powershell. This will download a web link with a very fast transfer rate. Making this a very good way to retrieve a web link. Below is an example downloading a link from kernel.org. I am … Read more