From daf0fc817b6af39ec77dd74a329e96ffe29c6b64 Mon Sep 17 00:00:00 2001 From: Lucas Fryzek Date: Fri, 20 Jan 2023 23:19:56 -0500 Subject: Fix date issue in rss --- html/feed.xml | 2 +- tools/rss_gen.py | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/html/feed.xml b/html/feed.xml index d3a958a..69772da 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: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 +Fryzek Conceptshttps://fryzekconcepts.comLucas is a developer working on cool thingsSat, 21 Jan 2023 04:19:23 -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.html \ No newline at end of file diff --git a/tools/rss_gen.py b/tools/rss_gen.py index dc2ad2f..729cae1 100755 --- a/tools/rss_gen.py +++ b/tools/rss_gen.py @@ -36,8 +36,11 @@ for file in os.listdir(build_dir): notes.append(note) + +notes.sort(key=lambda note: datetime.datetime.strptime(note["date"], "%Y-%m-%d")) + for note in notes: - post_time = datetime.datetime.strptime("2022-10-30", "%Y-%m-%d") + 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"]) item = ET.SubElement(channel, "item") -- cgit v1.2.3