From 7554d0873b735b3c9c2aea7452f732ae0ca9e655 Mon Sep 17 00:00:00 2001 From: Rui Rebelo <60976006+rui-rebelo@users.noreply.github.com> Date: Tue, 18 Nov 2025 17:41:54 +0000 Subject: [PATCH] Add Hack a Day recipe Added the Hack a Day recipe with description, and feed settings. --- recipes/hackaday.recipe | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 recipes/hackaday.recipe diff --git a/recipes/hackaday.recipe b/recipes/hackaday.recipe new file mode 100644 index 0000000000..45e3300b2e --- /dev/null +++ b/recipes/hackaday.recipe @@ -0,0 +1,20 @@ +#!/usr/bin/env python +# vim:fileencoding=utf-8 +from calibre.web.feeds.news import BasicNewsRecipe + +class HackADayRecipe(AutomaticNewsRecipe): + __author__ = 'rui-rebelo' + title = 'Hack a Day' + description = 'Hackaday is a website and community focused on hardware hacking, technology projects, and DIY electronics. It features daily articles about innovative projects, news, tutorials, and the latest in hardware engineering news.' + oldest_article = 10 + max_articles_per_feed = 100 + auto_cleanup = True + language = 'en-US' + + publisher = 'Hack a Day' + + feeds = [ + ('Hack a Day', 'https://hackaday.com/blog/feed/'), + ] + + cover_url = 'https://hackaday.com/wp-content/uploads/2020/07/hackaday-logo-with-text-opengraph-default-image.jpg'