cd website
python3 -m http.server 8000Then open: http://localhost:8000
Or use the launch script:
./launch_website.shwebsite/ β THE WEBSITE (ready to deploy!)
βββ index.html β Main page
βββ styles.css β Styles
βββ app.js β JavaScript
βββ data/ β Data files
βββ README.md β Deployment guide
website_data/ β Parsed JSON data
βββ participation_a.json
βββ participation_b.json
βββ insights_a.json
βββ insights_b.json
ed_posts/ β Raw Ed Discussion data
βββ detailed_posts/ β 558 JSON files
Option 1: Copy directly
scp -r website/ user@eecs182.org:/var/www/html/llm-participation/Option 2: Via git
cp -r website /path/to/eecs182-repo/llm-participation
cd /path/to/eecs182-repo
git add llm-participation/
git commit -m "Add LLM participation website"
git pushThen link from main site to: https://eecs182.org/llm-participation/
- 200 total submissions (110 Type A, 90 Type B)
- 13+ LLMs analyzed (DeepSeek, Gemini, Grok, Mistral, ChatGPT, Claude, etc.)
- Fully searchable by student, LLM, homework, keywords
- Complete attribution with external links
- Overview Dashboard - Stats and navigation
- Insights Summary - LLM behavior analysis
- LLM Comparison - Side-by-side comparison
- Searchable Submissions - All 200 posts with filtering
- Student Credits - Full attribution with links
# 1. Download new Ed posts
python download_ed_final.py
# 2. Parse and analyze
python parse_participation_posts.py
python analyze_insights.py
# 3. Copy to website
cp website_data/*.json website/data/
# 4. Done! Website auto-updateswebsite/README.md- Detailed deployment guidePROJECT_README.md- Complete project documentationSUBMISSION_SUMMARY.md- Extra credit submission details
- β Correct solutions for straightforward problems
- β Helpful explanations
- β Can iterate and improve
β οΈ Hallucinationsβ οΈ Errors on complex problemsβ οΈ Overly verboseβ οΈ Requires prompt engineering
- DeepSeek (24 posts) - Strong reasoning, poor explanation
- Gemini (23 posts) - Good general-purpose, hallucinations
- Mistral (17 posts) - Solid standard problems
- Grok (16 posts) - Learns from feedback, very verbose
- ChatGPT/GPT (19 posts) - Consistent, good iteration
- Check
website/README.mdfor deployment details - See
PROJECT_README.mdfor technical info - Review
SUBMISSION_SUMMARY.mdfor project overview
Everything is ready for:
- β Immediate deployment to eecs182.org
- β Extra credit submission
- β Future maintenance and updates
Total Time: Website works in 30 seconds, deploy in 5 minutes!