From e6a77645890d37ef8906374a96d49914f773ead4 Mon Sep 17 00:00:00 2001 From: Lucas Fryzek Date: Thu, 2 Feb 2023 11:25:38 -0500 Subject: Add igalia specific feed --- html/feed.xml | 2 +- html/igalia_feed.xml | 2 ++ makefile | 7 +++++-- tools/rss_gen.py | 19 ++++++++++++++++++- 4 files changed, 26 insertions(+), 4 deletions(-) create mode 100644 html/igalia_feed.xml diff --git a/html/feed.xml b/html/feed.xml index e1eb959..1d0f600 100644 --- a/html/feed.xml +++ b/html/feed.xml @@ -1,2 +1,2 @@ -Fryzek Conceptshttps://fryzekconcepts.comLucas is a developer working on cool thingsThu, 02 Feb 2023 15:15:15 -0000Generating Videohttps://fryzekconcepts.com/notes/generating-video.htmlOne thing I’m very interested in is computer graphics. This could be complex 3D graphics or 2DTue, 07 Apr 2020 04:00:00 -0000https://fryzekconcepts.com/notes/generating-video.htmlN64Brew GameJam 2021https://fryzekconcepts.com/notes/n64brew-gamejam-2021.htmlSo this year myself and two others decided to participate together in the N64Brew homebrew whereFri, 10 Dec 2021 05:00:00 -0000https://fryzekconcepts.com/notes/n64brew-gamejam-2021.htmlRasterizing Triangleshttps://fryzekconcepts.com/notes/rasterizing-triangles.htmlLately I’ve been trying to implement a software renderer following the algorithm described bySun, 03 Apr 2022 04:00:00 -0000https://fryzekconcepts.com/notes/rasterizing-triangles.htmlBaremetal RISC-Vhttps://fryzekconcepts.com/notes/baremetal-risc-v.htmlAfter re-watching suckerpinch’s Reverse Emulation video I got inspired to try and replicate whatThu, 09 Jun 2022 04:00:00 -0000https://fryzekconcepts.com/notes/baremetal-risc-v.htmlDigital Gardenhttps://fryzekconcepts.com/notes/digital_garden.htmlAfter reading Maggie Appleton page on digital gardens I was inspired to convert my own website intoSun, 30 Oct 2022 04:00:00 -0000https://fryzekconcepts.com/notes/digital_garden.html2022 Graphics Team Contributions at Igaliahttps://fryzekconcepts.com/notes/2022_igalia_graphics_team.htmlThis year I started a new job working with Igalia’s Graphics Team. For those of you who don’tigaliaThu, 02 Feb 2023 05:00:00 -0000https://fryzekconcepts.com/notes/2022_igalia_graphics_team.html \ No newline at end of file +Fryzek Conceptshttps://fryzekconcepts.comLucas is a developer working on cool thingsThu, 02 Feb 2023 16:14:09 -0000Generating Videohttps://fryzekconcepts.com/notes/generating-video.htmlOne thing I’m very interested in is computer graphics. This could be complex 3D graphics or 2DTue, 07 Apr 2020 04:00:00 -0000https://fryzekconcepts.com/notes/generating-video.htmlN64Brew GameJam 2021https://fryzekconcepts.com/notes/n64brew-gamejam-2021.htmlSo this year myself and two others decided to participate together in the N64Brew homebrew whereFri, 10 Dec 2021 05:00:00 -0000https://fryzekconcepts.com/notes/n64brew-gamejam-2021.htmlRasterizing Triangleshttps://fryzekconcepts.com/notes/rasterizing-triangles.htmlLately I’ve been trying to implement a software renderer following the algorithm described bySun, 03 Apr 2022 04:00:00 -0000https://fryzekconcepts.com/notes/rasterizing-triangles.htmlBaremetal RISC-Vhttps://fryzekconcepts.com/notes/baremetal-risc-v.htmlAfter re-watching suckerpinch’s Reverse Emulation video I got inspired to try and replicate whatThu, 09 Jun 2022 04:00:00 -0000https://fryzekconcepts.com/notes/baremetal-risc-v.htmlDigital Gardenhttps://fryzekconcepts.com/notes/digital_garden.htmlAfter reading Maggie Appleton page on digital gardens I was inspired to convert my own website intoSun, 30 Oct 2022 04:00:00 -0000https://fryzekconcepts.com/notes/digital_garden.html2022 Graphics Team Contributions at Igaliahttps://fryzekconcepts.com/notes/2022_igalia_graphics_team.htmlThis year I started a new job working with Igalia’s Graphics Team. For those of you who don’tigaliaThu, 02 Feb 2023 05:00:00 -0000https://fryzekconcepts.com/notes/2022_igalia_graphics_team.html \ No newline at end of file diff --git a/html/igalia_feed.xml b/html/igalia_feed.xml new file mode 100644 index 0000000..eab330d --- /dev/null +++ b/html/igalia_feed.xml @@ -0,0 +1,2 @@ + +Fryzek Conceptshttps://fryzekconcepts.comLucas is a developer working on cool thingsThu, 02 Feb 2023 16:24:10 -00002022 Graphics Team Contributions at Igaliahttps://fryzekconcepts.com/notes/2022_igalia_graphics_team.htmlThis year I started a new job working with Igalia’s Graphics Team. For those of you who don’tigaliaThu, 02 Feb 2023 05:00:00 -0000https://fryzekconcepts.com/notes/2022_igalia_graphics_team.html \ No newline at end of file diff --git a/makefile b/makefile index eb45742..9c9b0cc 100644 --- a/makefile +++ b/makefile @@ -34,9 +34,12 @@ $(HTML_DIR)/%.html: $(PAGE_DIR)/%.md -o $@ $(HTML_DIR)/feed.xml: $(META_DOCS) - ./tools/rss_gen.py + ./tools/rss_gen.py $@ -$(HTML_DIR)/index.html: $(HTML_DOCS) $(PAGE_FILES) $(HTML_DIR)/feed.xml +$(HTML_DIR)/igalia_feed.xml: $(META_DOCS) + ./tools/rss_gen.py $@ igalia + +$(HTML_DIR)/index.html: $(HTML_DOCS) $(PAGE_FILES) $(HTML_DIR)/feed.xml $(HTML_DIR)/igalia_feed.xml touch $(HTML_DIR)/.nojekyll pandoc -s --lua-filter=./tools/front_page.lua --template=./templates/main.html main.md \ --metadata=note_list:"$(SOURCE_FILES)" \ diff --git a/tools/rss_gen.py b/tools/rss_gen.py index 729cae1..630e154 100755 --- a/tools/rss_gen.py +++ b/tools/rss_gen.py @@ -5,6 +5,7 @@ import datetime import time import email.utils import os +import sys today = email.utils.formatdate() url = "https://fryzekconcepts.com" @@ -39,7 +40,23 @@ for file in os.listdir(build_dir): notes.sort(key=lambda note: datetime.datetime.strptime(note["date"], "%Y-%m-%d")) +limit_cat = False +categories = [] +if len(sys.argv) >= 3: + limit_cat = True + categories = sys.argv[2:] + for note in notes: + if limit_cat: + if not "categories" in note: continue + note_categories = note["categories"].split(",") + found = False + for cat in note_categories: + if cat in categories: + found = True + break + + if not found: continue post_time = datetime.datetime.strptime(note["date"], "%Y-%m-%d") post_rfc_time = email.utils.formatdate(timeval=time.mktime(post_time.timetuple())) post_url = "{}/notes/{}.html".format(url, note["name"]) @@ -54,4 +71,4 @@ for note in notes: ET.SubElement(item, "guid").text = post_url tree = ET.ElementTree(rss) -tree.write("html/feed.xml", encoding='utf-8', xml_declaration=True) +tree.write(sys.argv[1], encoding='utf-8', xml_declaration=True) -- cgit v1.2.3