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: 22 December 2024 - To: 29 December 2024
Total Time: 11 hrs 12 mins
Python 5 hrs 49 mins ⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡ 51.93 %
TypeScript 3 hrs 29 mins ⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡ 31.06 %
Docker 31 mins ⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡ 04.65 %
HTML 20 mins ⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡ 03.04 %
Bash 17 mins ⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡ 02.61 %
CSS 3 mins ⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡⚡ 00.53 %