fix: repair invalid JSON in projects_registry.json so launcher loads projects#1324
Merged
steam-bell-92 merged 1 commit intoJun 22, 2026
Merged
Conversation
…projects
The separator between the "Sudoku Game" and "Fourier Series Visualizer"
entries was missing (the closing "}," and opening "{"), making the file
invalid JSON. main.py and search_projects.py caught the parse error and
fell back to PROJECTS = [], so the interactive launcher showed an empty
menu. Restoring the separator makes the registry parse to 43 entries,
all with valid paths.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
|
@Ashvin-KS is attempting to deploy a commit to the Anuj's projects Team on Vercel. A member of the Team first needs to authorize it. |
Contributor
|
🎉 Thank you for your contribution! Your Pull Request has been merged successfully. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
📝 Description
projects_registry.jsonwas invalid JSON. The separator between the "Sudoku Game" and"Fourier Series Visualizer" entries was missing — the
},that closes the first object andthe
{that opens the next — which fused two entries into one malformed object (a mergeartifact).
Because the file failed to parse, both
main.pyandsearch_projects.pyfell into theirexceptbranch and setPROJECTS = [], so the interactive launcher showed an empty menuwith no projects to browse, search, or run.
This PR restores the missing separator. It touches only those 2 lines — no data or formatting
elsewhere is changed.
Verified locally:
python -c "import json; json.load(open('projects_registry.json', encoding='utf-8'))"now exits 0.pathvalue resolves to an existing file.python main.pynow lists all categories/projects instead of an empty menu.🔗 Linked Issue
Closes #1322
📋 Contribution Checklist