```python
from dataclasses import dataclass
@dataclass
class Developer:
name: str
location: str
languages: list[str]
currently_learning: list[str]
projects: list[str]
interests: list[str]
goal: str
me = Developer(
name="David",
location="Seattle, WA",
languages=["Python"],
currently_learning=["APIs", "Github Actions", "OOP", "testing"],
recent_projects=["Spotify Playlist Tool", "Markov Chain Poetry Generator"],
interests=["music", "typewriters", "TTRPGs", "anime", "video games", "books", "hiking"],
goal="Junior Python Developer", "Freelance Developer"
)
-
Scale AI
- Seattle, Washington
-
04:11
(UTC -07:00)
Pinned Loading
-
Markov-Poetry-Generator
Markov-Poetry-Generator PublicStochastic text generator building an n-gram graph optimized for high branching factor and non-deterministic traversal paths.
Python 1
-
Spotify-Playlist-Retrieval
Spotify-Playlist-Retrieval PublicSpotify playlist exporter with Last.fm genre enrichment. Implements HTTP caching, rate limiting, and graceful error handling for multi-API data aggregation.
-
MTG-Card-Lookup
MTG-Card-Lookup PublicScryfall API client for Magic: The Gathering card data extraction. Implements fuzzy search, multi-faced card parsing, and graceful error handling with planned JSON/SQLite caching.
Python
-
Python-Flashcards
Python-Flashcards PublicCLI flashcard quiz system with CSV-backed persistence, category filtering, randomized question selection, and performance tracking via miss-count aggregation.
Python
-
RPG-Creator
RPG-Creator PublicRPG system with six character classes and five races, stat bonuses, leveling, combat, inventory, miss chance, hit dice, healing, character sheet export/import, and enemy factories.
Python
-
Games-of-Chance
Games-of-Chance PublicFirst project - Simple command line casino game with four games of chance.
Python
If the problem persists, check the GitHub status page or contact support.
