Skip to content

Commit c1181d9

Browse files
committed
Publish a note about the humble bundle on the site
1 parent a97b832 commit c1181d9

File tree

4 files changed

+26
-3
lines changed

4 files changed

+26
-3
lines changed

Diff for: .eleventy.js

+4-2
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ const {
1717
} = require('@vidhill/fortawesome-brands-11ty-shortcode');
1818

1919

20+
const media_filetypes = "jpg,jpeg,JPG,png,gif,svg,avif";
21+
2022
module.exports = function(eleventyConfig) {
2123
// Configure markdown parser
2224
const markdownLib = markdownIt({html: true, typographer: true});
@@ -34,11 +36,11 @@ module.exports = function(eleventyConfig) {
3436
eleventyConfig.addPassthroughCopy("assets");
3537
eleventyConfig.addPassthroughCopy("dist");
3638
eleventyConfig.addPassthroughCopy("favicon.png");
37-
eleventyConfig.addPassthroughCopy("galleries/**/*.{jpg,jpeg,JPG,png,gif,svg}");
39+
eleventyConfig.addPassthroughCopy("galleries/**/*." + media_filetypes);
3840
eleventyConfig.addPassthroughCopy("google5458abc1104b04dd.html");
3941
eleventyConfig.addPassthroughCopy({"htaccess": ".htaccess"});
4042
eleventyConfig.addPassthroughCopy({"content": "."}, {
41-
filter: ["**/*.{jpg,jpeg,JPG,png,gif,svg}"],
43+
filter: ["**/*." + + media_filetypes],
4244
rename: function (path) {
4345
return path.replace("content/", "");
4446
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
title: Robotics book featured in a Humble Bundle
3+
date: 2025-04-08
4+
tags: [robotics book, robotics at home, embedded-systems, internet-of-things, robot-electronics, robot-building]
5+
description: I have a robotics book featured in an Embedded Intelligence Humble Bundle
6+
thumbnail: content/2025/04/08-robotics-book-featured-in-a-humble-bundle/9a9c54a580029fe3615758d8728879b05378fff0.avif
7+
---
8+
I'm honoured!
9+
10+
One of my books, "Robotics at Home with Raspberry Pi Pico", has been put into an "Embedded Intelligence" Humble Bundle. This is focused on intelligent embedded systems and bringing artificial intelligence to the edge. The bundle includes a variety of books on topics such as robotics, embedded systems, IoT, home automation, FPGA's, PLC programming and AI. It even has a book on designing your own system on a chip!
11+
12+
The bundle also supports Room to Read, a non-profit dedicated to ending illiteracy and promoting gender equality in education. Every purchase helps fund their mission while providing valuable learning materials.
13+
14+
A Humble Bundle is a collection of books, where you get to pay to get as many of the items as you feel would be useful. There are plenty of books in this bundle I would like to have on my shelf alongside my own too!
15+
16+
[Embedded Intelligence Humble Bundle - Pay what you want!
17+
![Embedded Intelligence Humble Bundle](/2025/04/08-robotics-book-featured-in-a-humble-bundle/9a9c54a580029fe3615758d8728879b05378fff0.avif)
18+
](https://www.humblebundle.com/books/embedded-intelligence-packt-books)
19+
20+
This does run for a limited time though, until 21st April 2025.

Diff for: package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@
1111
"stats-cli": "webpack-bundle-analyzer stats.json",
1212
"11ty": "npx @11ty/eleventy --quiet",
1313
"serve": "npx @11ty/eleventy --serve --quiet --port 8081",
14-
"check-missing-tags": "node src/utilities/list-files-without-tags.js"
14+
"check-missing-tags": "node src/utilities/list-files-without-tags.js",
15+
"new-post": ".github/scripts/new_post.sh"
1516
},
1617
"repository": {
1718
"type": "git",

0 commit comments

Comments
 (0)