from typing import List, Literal
from enum import Enum
class Interest(Enum):
MATHEMATICS = "Mathematics"
NEURAL_NETWORKS = "Neural Networks"
WEB_SCRAPING = "Web Scraping"
class Developer:
def __init__(
self,
name: str,
role: str,
interests: List[Interest],
favorite_anime: str,
favorite_character: str
) -> None:
self.name = name
self.role = role
self.interests = interests
self.favorite_anime = favorite_anime
self.favorite_character = favorite_character
self.philosophy = "Building everything from scratch"
def current_focus(self) -> str:
return "Developing neural networks from scratch using pure NumPy"
def programming_style(self) -> Literal["from scratch", "with frameworks"]:
return "from scratch" # Always from scratch 💪
# Example:
me = Developer(
name="Felipe Adeildo",
role="Computer Science Student",
interests=[
Interest.MATHEMATICS,
Interest.NEURAL_NETWORKS,
Interest.WEB_SCRAPING
],
favorite_anime="Hunter x Hunter",
favorite_character="Hisoka 🃏"
)
From: 02 January 2025 - To: 09 January 2025
Total Time: 8 hrs 30 mins
Python 5 hrs 41 mins ⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡ 66.73 %
Prisma 4 mins ⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡ 00.89 %
Git Config 3 mins ⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡ 00.76 %
Makefile 2 mins ⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡ 00.58 %
Docker 1 min ⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡ 00.23 %