From 3d89393a2fa64dc688fa42458b7610831f3b76f5 Mon Sep 17 00:00:00 2001 From: Lucas Fryzek Date: Fri, 20 Jan 2023 23:10:26 -0500 Subject: Fix link bug in rss feed --- html/feed.xml | 2 +- tools/rss_gen.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/html/feed.xml b/html/feed.xml index 9d2e9b1..d3a958a 100644 --- a/html/feed.xml +++ b/html/feed.xml @@ -1,2 +1,2 @@ -Fryzek Conceptshttps://fryzekconcepts.comLucas is a developer working on cool thingsSat, 21 Jan 2023 04:03:36 -0000Generating Videohttps://fryzekconcepts.com/notes/generating-videoOne thing I’m very interested in is computer graphics. This could be complex 3D graphics or 2DSun, 30 Oct 2022 04:00:00 -0000https://fryzekconcepts.com/notes/generating-videoN64Brew GameJam 2021https://fryzekconcepts.com/notes/n64brew-gamejam-2021So this year myself and two others decided to participate together in the N64Brew homebrew whereSun, 30 Oct 2022 04:00:00 -0000https://fryzekconcepts.com/notes/n64brew-gamejam-2021Baremetal RISC-Vhttps://fryzekconcepts.com/notes/baremetal-risc-vAfter re-watching suckerpinch’s Reverse Emulation video I got inspired to try and replicate whatSun, 30 Oct 2022 04:00:00 -0000https://fryzekconcepts.com/notes/baremetal-risc-vDigital Gardenhttps://fryzekconcepts.com/notes/digital_gardenAfter 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_gardenRasterizing Triangleshttps://fryzekconcepts.com/notes/rasterizing-trianglesLately I’ve been trying to implement a software renderer following the algorithm described bySun, 30 Oct 2022 04:00:00 -0000https://fryzekconcepts.com/notes/rasterizing-triangles \ No newline at end of file +Fryzek Conceptshttps://fryzekconcepts.comLucas is a developer working on cool thingsSat, 21 Jan 2023 04:09:56 -0000Generating Videohttps://fryzekconcepts.com/notes/generating-video.htmlOne thing I’m very interested in is computer graphics. This could be complex 3D graphics or 2DSun, 30 Oct 2022 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 whereSun, 30 Oct 2022 04:00:00 -0000https://fryzekconcepts.com/notes/n64brew-gamejam-2021.htmlBaremetal RISC-Vhttps://fryzekconcepts.com/notes/baremetal-risc-v.htmlAfter re-watching suckerpinch’s Reverse Emulation video I got inspired to try and replicate whatSun, 30 Oct 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.htmlRasterizing Triangleshttps://fryzekconcepts.com/notes/rasterizing-triangles.htmlLately I’ve been trying to implement a software renderer following the algorithm described bySun, 30 Oct 2022 04:00:00 -0000https://fryzekconcepts.com/notes/rasterizing-triangles.html \ No newline at end of file diff --git a/tools/rss_gen.py b/tools/rss_gen.py index c4cc1b0..dc2ad2f 100755 --- a/tools/rss_gen.py +++ b/tools/rss_gen.py @@ -39,7 +39,7 @@ for file in os.listdir(build_dir): for note in notes: post_time = datetime.datetime.strptime("2022-10-30", "%Y-%m-%d") post_rfc_time = email.utils.formatdate(timeval=time.mktime(post_time.timetuple())) - post_url = "{}/notes/{}".format(url, note["name"]) + post_url = "{}/notes/{}.html".format(url, note["name"]) item = ET.SubElement(channel, "item") ET.SubElement(item, "title").text = note["title"] ET.SubElement(item, "link").text = post_url -- cgit v1.2.3