Recently, I've been working on a web application to manage recipes that my partner and I have collected. The application provides forms to enter the recipe metadata as well as the ingredients that comprise the recipe.
To ease the process of copying recipes into system, I started to investigate whether it would be possible to extract the details of a recipe from the website where it is listed. This post will detail the process involved in building the functionality to import recipes, including extracting the raw data and parsing into a useable format.
In starting the process, I wished to discover if there was a common format that recipe sites adhere to. I quickly found that to help improve the ranking of a site... Continue Reading...
| Author | Jed Simson |
| Date | June 04, 2020 |
| Filename | 2020-06-04-Parsing ingredients from online recipe articles.md |
| Filesize | 6694 |
| Last Modified | Thu, 04 Jun 2020 |
| Post ID | blog_post_2 |
| Summary | Details the project I've been working on to extract recipe ingredients from online articles |
| Tags | parsing, parser combinators, recipes, ingredients, project, c#, .net |
| Title | Parsing ingredients from online recipe articles |
| Words | 906 |
In my second semester of 2016 I took a paper titled Operating Systems, which is a 300 level paper that deals with Operating Systems concepts and design. The majority of this paper focuses on the MINIX OS to provide examples of design decisions (e.g. microkernel vs. monolithic kernel) and as the system is reasonably small and manageable (relative to something like Linux) it allows for the code to be analysed and modified to learn more about it.
A core component of this paper is what is called the MINIX Project, where one must decide on some extension to add to the MINIX system and implement it as a way of demonstrate understanding of the system and to gain experience working on a large system like that of an OS. The project is worth 50% and spans across about 2 months or so.
For my project I chose to extend the existing MINIX File System to include journaling, ultimately turning it into a reliable, journaling file system. I learnt a lot while working on this project and consider it one of the most complex projects I have worked on while studying at university.
The source for my project can be found in a GitLab repository here, and contains:
The version of MINIX used is 3.1.0.
| Author | Jed Simson |
| Date | October 15, 2016 |
| Filename | 2016-12-06-MINIX Journaled File System.md |
| Filesize | 1808 |
| Last Modified | Thu, 04 Jun 2020 |
| Post ID | blog_post_4 |
| Summary | Thoughts about implementing Journaling for the MINIX File System |
| Tags | file systems, journaling, minix, journal, jfs, project, university |
| Title | MINIX Journaled File System |
| Words | 270 |