Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions assets/json/resume.json
Original file line number Diff line number Diff line change
Expand Up @@ -151,5 +151,7 @@
"projects": [
{
"name": "Open Source Contributions",
"description": "Developed sigmund~, fiddle~, bonk~, centroid~ audio tools for Max/MSP, Pd, and Max for Live.",
"url": "http://
"description": "Developed sigmund~, fiddle~, bonk~, centroid~ audio tools for Max/MSP, Pd, and Max for Live."
}
]
}
15 changes: 15 additions & 0 deletions bin/validate-json.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
#!/bin/bash
# Simple JSON validation script to prevent similar deployment issues

echo "Validating JSON files..."

for file in $(find . -name "*.json" -type f | grep -v node_modules | grep -v vendor | head -10); do
if python3 -c "import json; json.load(open('$file'))" 2>/dev/null; then
echo "✓ $file is valid"
else
echo "✗ $file has JSON syntax errors"
exit 1
fi
done

echo "All JSON files are valid!"