If you’re looking to get a start in Cyber Security this is the page I would throw you at. Here you can find a large collection of random articles / websites / resources I’ve collected over the years, I’ve done by best to categorise them into subsections but the chaos is part of the fun. Find something you like and get lost down a rabbit hole and learn something new!
Go is current my favourite programming language and I would highly recommend everyone to give it a go! Below are a few very light and great resources to get you started in the language:
The terrible code to generate the Links on this page
for links in $(cat /tmp/links);
do
title=$(curl -s $links | grep -oP '<title>\K[^<]*');
echo "[${title}](${links})";
done | tee -a reading-list.md