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

Block or report QuothTheRaven42

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
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

    Spotify playlist exporter with Last.fm genre enrichment. Implements HTTP caching, rate limiting, and graceful error handling for multi-API data aggregation.

    Python 2 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