This repository contains challenges and projects I tackle using golang.
-
- Implements a recursive, mirroring web crawler . The crawler should be a command-line tool that accepts a starting URL and a destination directory. The crawler will then download the page at the URL, save it in the destination directory, and then recursively proceed to any valid links in this page.
-
- Implement a queue. The queue should be able to queue future jobs. Use any implementation as you please.