Add games and PDF analysis tools#23048
Open
6868cxm656-dotcom wants to merge 5 commits intoanthropics:mainfrom
Open
Add games and PDF analysis tools#230486868cxm656-dotcom wants to merge 5 commits intoanthropics:mainfrom
6868cxm656-dotcom wants to merge 5 commits intoanthropics:mainfrom
Conversation
Create a fun, playable asteroids-style game for the terminal using Python and curses. Features include: - Ship movement with rotation and thrust physics - Asteroids that split when destroyed - Bullet shooting mechanics - Score tracking and level progression - Clean terminal UI with colors The game is fully playable with arrow keys and space bar controls.
Ignore __pycache__ and other Python-generated files to keep the repository clean.
Create a fully playable HTML5 Canvas version of the asteroids game optimized for iPad and mobile devices. Features include: - Touch-friendly on-screen controls (rotate, thrust, shoot) - Keyboard support for desktop play - Responsive canvas sizing - Particle effects and visual polish - Lives system instead of instant game over - Smooth 60 FPS gameplay - Level progression with increasing difficulty The game works in any modern browser and is perfect for iPad/mobile play.
Analyzes ~150 participant learning reports: extracts text from PDFs, computes TF-IDF keywords, detects themes, scores sentiment and readability, and maps document similarity. Results are visualised in a self-contained HTML dashboard with charts, word cloud, similarity map, and searchable table. https://claude.ai/code/session_01GNUrHm4AWEbgeTrzj1UijP
|
what is the point of the asteroids game? |
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.
Summary
This PR adds two new interactive tools to the repository: a terminal-based Asteroids game and a PDF report analyzer with visualization dashboard.
Key Changes
Games
terminal_asteroids.py): A playable asteroids-style game for the terminal with keyboard controls, collision detection, and scoringasteroids.html): Browser-based version of the game with touch/button controls for mobile compatibility, featuring responsive canvas sizing and particle effectsPDF Report Analyzer
Analyzer (
pdf-report-analyzer/pdf_report_analyzer.py): Lightweight Python tool that processes a directory of PDFs and extracts:Dashboard (
pdf-report-analyzer/report_dashboard.html): Interactive HTML5 visualization with:Documentation
ASTEROIDS_README.md: Game controls and gameplay instructionspdf-report-analyzer/README.md: Quick start guide, usage, and output format documentationConfiguration
.gitignoreto exclude Python cache files and compiled artifactsNotable Implementation Details
https://claude.ai/code/session_01GNUrHm4AWEbgeTrzj1UijP