diff --git a/_posts/2021-05-01-custom_ts100_logo.md b/_posts/2021-05-01-custom_ts100_logo.md index fc24357..ecc09f1 100644 --- a/_posts/2021-05-01-custom_ts100_logo.md +++ b/_posts/2021-05-01-custom_ts100_logo.md @@ -1,8 +1,8 @@ --- title: Making a custom bootscreen for your TS100 Soldering Iron -date: 2022-02-02 layout: post image: /assets/blog/TS100/real.jpeg +alt: An image of a TS100 soldering iron showing a custom bootscreen that says 'solder boy'. --- diff --git a/_posts/2022-06-22-Learning-Paths.html b/_posts/2022-06-22-Learning-Paths.html index 5f94af4..6bc5fbf 100644 --- a/_posts/2022-06-22-Learning-Paths.html +++ b/_posts/2022-06-22-Learning-Paths.html @@ -3,6 +3,7 @@ title: Learning Paths excerpt: A small tool to visualise dependencies of courses. layout: post image: /assets/images/learning_paths.png +alt: A screenshot of a web app that visualises dependencies between courses by linking them with lines. --- I made this little app for a team at Imperial to quickly visualise the dependencies between the programming courses that they offer. diff --git a/_posts/2022-07-06-command_line_slides.md b/_posts/2022-07-06-command_line_slides.md index 84d8543..77d49d7 100644 --- a/_posts/2022-07-06-command_line_slides.md +++ b/_posts/2022-07-06-command_line_slides.md @@ -3,6 +3,7 @@ title: Command Line Slides excerpt: I had to give a quick lecture on using the command line and came up with this to do live demos of using the command line. layout: post image: /assets/images/command_line_slides.png +alt: A screenshot of a slide deck with computer code on it. --- I had to give a quick lecture on using the command line and came up with this to do live demos of using the command line. Embedded below. diff --git a/_posts/2022-11-10-adding_interactivity_to_svg.md b/_posts/2022-11-10-adding_interactivity_to_svg.md index 00c527b..0c22e29 100644 --- a/_posts/2022-11-10-adding_interactivity_to_svg.md +++ b/_posts/2022-11-10-adding_interactivity_to_svg.md @@ -3,6 +3,7 @@ title: How to Animate Inkscape SVGs with d3 excerpt: In which a simple thing turns out to be surprisingly in-depth! layout: post image: /assets/extracted_from_ipynb/452af1f7-a8e3-4b32-b6d2-720c31f27af3.png +alt: A diagram showing showing circles with arrows in them linked by lines that represents a simple physical model of electron spins interacting. --- I wanted my thesis to have a nice HTML version in addition to the mandatory-in-my-field latex/PDF version. Having a HTML version also means I can experiment with a bit of interactivity. I've done some of the diagrams in SVG using Inkscape which is a nice tool for this kind of thing. I wanted to add some interactivity as an easter egg to the SVGs in the HTML version. diff --git a/_posts/2022-11-22-sensor_watch.md b/_posts/2022-11-22-sensor_watch.md index 802dc35..2162e10 100644 --- a/_posts/2022-11-22-sensor_watch.md +++ b/_posts/2022-11-22-sensor_watch.md @@ -2,6 +2,7 @@ title: Sensor Watch layout: post image: /assets/blog/SensorWatch/watch.svg +alt: A simple vector image of a classic casio watch. --- A while ago I backed a crowdsupply project called [Sensor Watch](https://www.oddlyspecificobjects.com/products/sensorwatch/). It's a replacement logic board for those classic Casio watches that you probably don't know the name of but have certainly seen around. This post goes through the process of getting the board swapped out and programming custom firmware on it. I also went opted for the [temperature sensor addon board](https://www.sensorwatch.net/docs/sensorboards/). diff --git a/_posts/2022-11-23-emscripten_arduino.md b/_posts/2022-11-23-emscripten_arduino.md index 7dea60b..b385331 100644 --- a/_posts/2022-11-23-emscripten_arduino.md +++ b/_posts/2022-11-23-emscripten_arduino.md @@ -2,6 +2,7 @@ title: Using emscripten to simulate an arduino project layout: post image: /assets/blog/emscripten_arduino/arduino.svg +alt: A rendered image of a breadboard with an LED and resistor wired up in series to an arduino. --- In [another post](/2022/11/22/sensor_watch.html) I talked about the [Sensor Watch](https://www.oddlyspecificobjects.com/products/sensorwatch/) project which has this nifty JS simulation for testing the firmware. This saves you having to dissasemble the watch every time you want to test a change to the firmware so makes the develop/test loop much faster. Here I'll go through a toy example of how that works.