aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMitja Felicijan <mitja.felicijan@gmail.com>2025-04-09 10:42:11 +0200
committerMitja Felicijan <mitja.felicijan@gmail.com>2025-04-09 10:42:11 +0200
commite6a082bbb784d5ca9c74856eb961541defc295ef (patch)
treed8673ae9164c2ece54ee6ea2582aebd0710d891b
parent9da4314ffaa0fb3ad48c51caadd5d1b5746711a8 (diff)
downloadmitjafelicijan.com-e6a082bbb784d5ca9c74856eb961541defc295ef.tar.gz
Update projects
-rw-r--r--content/pages/projects.md4
-rw-r--r--tools/projects.py10
2 files changed, 7 insertions, 7 deletions
diff --git a/content/pages/projects.md b/content/pages/projects.md
index 9184f0c..cb94a7b 100644
--- a/content/pages/projects.md
+++ b/content/pages/projects.md
@@ -186,7 +186,7 @@ Displays progress bar in terminal. It can be used as a standalone program so you
186</div> 186</div>
187 187
188## newsbarge 188## newsbarge
189Converts RSS feeds into HTML 189Converts RSS feeds into single HTMLpage containing all the feed stories.
190 190
191 191
192<div class='project-release'> 192<div class='project-release'>
@@ -319,7 +319,7 @@ ttdaw is a tiny terminal based digital audio workstation made for fun, experimen
319</div> 319</div>
320 320
321## TurtleTweaks 321## TurtleTweaks
322World of Warcraft 1.12 Tweaks and Enhancements Addon 322World of Warcraft 1.12 client Tweaks and Enhancements Addon.
323 323
324 324
325<div class='project-release'> 325<div class='project-release'>
diff --git a/tools/projects.py b/tools/projects.py
index 2805bf2..bf3c72f 100644
--- a/tools/projects.py
+++ b/tools/projects.py
@@ -135,13 +135,13 @@ def fetch_github_data():
135 return include_repositories 135 return include_repositories
136 136
137 137
138# include_repositories = fetch_github_data() 138include_repositories = fetch_github_data()
139 139
140# with open("out.json", "w") as json_file: 140# with open("out.json", "w") as json_file:
141# json.dump(include_repositories, json_file, indent=4) 141# json.dump(include_repositories, json_file, indent=4)
142 142
143# generate_markdown_file(include_repositories) 143generate_markdown_file(include_repositories)
144 144
145with open("out.json", "r") as fp: 145# with open("out.json", "r") as fp:
146 include_repositories = json.load(fp) 146# include_repositories = json.load(fp)
147 generate_markdown_file(include_repositories) 147# generate_markdown_file(include_repositories)