From e9ba415feb4d524cc7c3311bc98cc59971f873d2 Mon Sep 17 00:00:00 2001 From: Lucas Fryzek Date: Wed, 8 Feb 2023 21:38:57 -0500 Subject: Fix how categories are handled --- html/feed.xml | 2 +- html/graphics_feed.xml | 2 +- tools/rss_gen.py | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/html/feed.xml b/html/feed.xml index 6620062..c76e351 100644 --- a/html/feed.xml +++ b/html/feed.xml @@ -1,2 +1,2 @@ -Fryzek Conceptshttps://fryzekconcepts.comLucas is a developer working on cool thingsThu, 09 Feb 2023 02:30:16 -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’tigalia graphicsThu, 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, 09 Feb 2023 02:37:42 -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’tThu, 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/graphics_feed.xml b/html/graphics_feed.xml index 145fec0..e570df7 100644 --- a/html/graphics_feed.xml +++ b/html/graphics_feed.xml @@ -1,2 +1,2 @@ -Fryzek Conceptshttps://fryzekconcepts.comLucas is a developer working on cool thingsThu, 09 Feb 2023 02:30:16 -0000 \ No newline at end of file +Fryzek Conceptshttps://fryzekconcepts.comLucas is a developer working on cool thingsThu, 09 Feb 2023 02:37:42 -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’tThu, 02 Feb 2023 05:00:00 -0000https://fryzekconcepts.com/notes/2022_igalia_graphics_team.html \ No newline at end of file diff --git a/tools/rss_gen.py b/tools/rss_gen.py index 630e154..75572ba 100755 --- a/tools/rss_gen.py +++ b/tools/rss_gen.py @@ -49,7 +49,7 @@ if len(sys.argv) >= 3: for note in notes: if limit_cat: if not "categories" in note: continue - note_categories = note["categories"].split(",") + note_categories = note["categories"].strip().split() found = False for cat in note_categories: if cat in categories: @@ -64,8 +64,8 @@ for note in notes: ET.SubElement(item, "title").text = note["title"] ET.SubElement(item, "link").text = post_url ET.SubElement(item, "description").text = note["preview"] - if "categories" in note: - ET.SubElement(item, "category").text = note["categories"] + #if "categories" in note: + # ET.SubElement(item, "category").text = note["categories"] ET.SubElement(item, "pubDate").text = post_rfc_time ET.SubElement(item, "guid").text = post_url -- cgit v1.2.3