Skip to content
View QuothTheRaven42's full-sized avatar
🤔
Always coding!
🤔
Always coding!
  • Scale AI
  • Seattle, Washington
  • 23:09 (UTC -07:00)

Block or report QuothTheRaven42

Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
QuothTheRaven42/README.md
```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"
)

Activity Graph

Pinned Loading

  1. Markov-Poetry-Generator Markov-Poetry-Generator Public

    Stochastic text generator building an n-gram graph optimized for high branching factor and non-deterministic traversal paths.

    Python 1

  2. Spotify-Playlist-Retrieval Spotify-Playlist-Retrieval Public

    Export/import Spotify playlists or add to existing playlists using JSON. Built with spotipy + Last.fm. Implements HTTP caching and graceful error handling for multi-API data aggregation.

    Python 4 1

  3. MTG-Card-Lookup MTG-Card-Lookup Public

    Scryfall 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

  4. Python-Flashcards Python-Flashcards Public

    CLI flashcard quiz system with CSV-backed persistence, category filtering, randomized question selection, and performance tracking via miss-count aggregation.

    Python

  5. RPG-Creator RPG-Creator Public

    RPG 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

  6. Games-of-Chance Games-of-Chance Public

    First project - Simple command line casino game with four games of chance.

    Python