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: 29 December 2024 - To: 05 January 2025
Total Time: 7 hrs 55 mins
Python 5 hrs 14 mins ⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡ 66.03 %
TypeScript 32 mins ⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡ 06.75 %
Makefile 6 mins ⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡ 01.31 %
Git Config 4 mins ⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡ 00.97 %
Other 1 min ⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡ 00.22 %