Skip to content

Commit f2538aa

Browse files
add more apps
1 parent 5be9f6e commit f2538aa

5 files changed

Lines changed: 44 additions & 0 deletions

File tree

store/images/Mandelbrot/cover.png

11.1 KB
Loading

store/images/PocketNN/cover.png

4.83 KB
Loading

store/images/Raytracer/cover.png

6.73 KB
Loading

store/index.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -373,6 +373,7 @@ <h1 class="section-title">App Store</h1>
373373
<button class="filter-btn" data-filter="Math">Math</button>
374374
<button class="filter-btn" data-filter="Physics">Physics</button>
375375
<button class="filter-btn" data-filter="Chemistry">Chemistry</button>
376+
<button class="filter-btn" data-filter="AI">AI</button>
376377
<!-- Apps -->
377378
<button class="filter-btn" data-filter="Utility">Utilities</button>
378379
<button class="filter-btn" data-filter="Graphics">Graphics</button>

store/meta.json

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,5 +108,48 @@
108108
"Platformer",
109109
"Action"
110110
]
111+
},
112+
{
113+
"name": "Mandelbrot",
114+
"description": "A Mandelbrot set renderer for ClassPad, visualizing the famous fractal.",
115+
"author": "Phoebe",
116+
"releaseDate": "2026-02-08",
117+
"installation": "https://github.com/TheRainbowPhoenix/MiscPythonExtra/blob/master/render_mandelbrot.py",
118+
"download": "https://raw.githubusercontent.com/TheRainbowPhoenix/MiscPythonExtra/master/render_mandelbrot.py",
119+
"image": "images/Mandelbrot/cover.png",
120+
"tags": [
121+
"Graphics",
122+
"Math",
123+
"Demo"
124+
]
125+
},
126+
{
127+
"name": "Raytracer",
128+
"description": "A simple raytracer implemented in Python, demonstrating 3D rendering capabilities.",
129+
"author": "Phoebe",
130+
"releaseDate": "2026-02-08",
131+
"installation": "https://github.com/TheRainbowPhoenix/MiscPythonExtra/blob/master/render_raytracer.py",
132+
"download": "https://raw.githubusercontent.com/TheRainbowPhoenix/MiscPythonExtra/master/render_raytracer.py",
133+
"image": "images/Raytracer/cover.png",
134+
"tags": [
135+
"Graphics",
136+
"Math",
137+
"Demo"
138+
]
139+
},
140+
{
141+
"name": "PocketNN",
142+
"description": "A simple neural network that learns to solve the XOR problem visually. It uses a pre-calculated Float Lookup Table (LUT) for the Sigmoid function and unrolled loops for the forward/backward propagation to maximize speed on the SH4 CPU.",
143+
"author": "Phoebe",
144+
"releaseDate": "2026-02-08",
145+
"installation": "https://github.com/TheRainbowPhoenix/MiscPythonExtra/blob/master/neuro.py",
146+
"download": "https://raw.githubusercontent.com/TheRainbowPhoenix/MiscPythonExtra/master/neuro.py",
147+
"image": "images/PocketNN/cover.png",
148+
"tags": [
149+
"Math",
150+
"Demo",
151+
"AI",
152+
"Education"
153+
]
111154
}
112155
]

0 commit comments

Comments
 (0)