PageSieve
A browser extension for interactive web scraping.
Hi, you have landed on my corner of the web. Within are logs of my various projects, experiements and thoughts on tools. All software focused of course.
Feel free to reach out with any questions or comments. Enjoy reading!
In this article I will go over the details of a recent project involving extracting data from a PDF Swahili-English dictionary.
In this article we'll be trying to solve the puzzle game flood using Python. The game is played on a grid of cells that can be of any fixed number of colors.
Often times there's data on the internet we'd like to get our hands on. In most cases I'd start on a Python script with the usual suspects requests, beautifulsoup4, json or csv. This works well butwhen the task in question only needs to be run once, it would be alot easier to run a few commands on the shell.
Genetic algorithms try to replicate the mechanisms of biological evolution to solve problems. In this article we'll use a somewhat useless example problem to demonstrate how to design and implement a genetic algorithm in Julia which I have been trying to learn recently.