#!/usr/bin/env python3
# ββ github.com/samkamau81 ββββββββββββββββββββββββββββββββββββββββββββββββββ
# This README renders as code but tells you who I am and what I'm building.
from dataclasses import dataclass
@dataclass
class Dev:
name: str = "Samwel Waweru"
location: str = "Nairobi, Kenya"
focus: tuple = ("Cloud Technology", "Ruby on Rails",
"AI/ML Integration and Research", "Software Development", "Business Development")
toolbox: tuple = ("Python", "C/C++", "Ruby on Rails", "TypeScript",
"Raspian", "Linux", "AWS")
motto: str = "Always learning. Always building."
me = Dev()
print(f"Hi, I'm {me.name} β I build intelligent business systems.")
print(f"Focus : {', '.join(me.focus)}")
print(f"Toolbox : {', '.join(me.toolbox)}")
print(f"{me.motto}")