from datetime import datetime
from typing import List, Dict, Any
class SeniorReadMe:
def __init__(self, username: str = "Tedyst"):
self.username = username
self.name = "Stoica Tedy"
self.location = "Iași, Romania"
self.education = {
"high_school": "Costache Negruzzi National College",
"bachelor": "B.Sc. in CS @ Alexandru Ioan Cuza University",
"master": "M.Sc. in Software Engineering @ Alexandru Ioan Cuza University",
"status": "Graduated (Survived the Dissertation phase)",
}
self.employment = {
"organization": "Tremend Software Consulting / Publicis Sapient",
"role": "Senior Associate Technology L1",
"upgraded_from": "Junior Python Developer (2022)",
"since": datetime.strptime("2022-07-04", "%Y-%m-%d"),
}
self.tech_stack = {
"backend": ["Python", "Django", "Gevent", "Celery", "Go"],
"data_and_brokers": ["TimescaleDB (14B+ rows)", "PostgreSQL", "Redis", "RabbitMQ"],
"infra_and_cloud": ["Docker", "Kubernetes", "K3s", "Helm", "OpenTelemetry", "Grafana"],
"low_level_tinkering": ["C (SAML22/32, ATWINC1500)", "Arch Linux (btw)"],
"frontend_when_forced": ["Svelte", "SvelteKit"],
}
self.homelab_and_side_quests = {
"storage_pool": "TrueNAS SCALE + ZFS on tedyst.ro",
"smart_home": "Home Assistant + ESPHome",
}
def current_status(self) -> str:
tasks = [
"Rewriting heavy Python worker pools in Go for that sweet CPU headroom",
"Compressing TimescaleDB hypertables without triggering an OOM incident",
"Tweaking Tailscale mesh routes and UniFi APs at 2 AM",
]
return " | ".join(tasks)
def handle_production_incident(self, issue: str = "OOM") -> str:
if issue == "OOM":
return "Profile memory leaks, debug Gevent greenlets, optimize query plans, and write a solid post-mortem."
return "Add more Prometheus alerts, spin up a Go worker."
me = SeniorReadMe()
print(f"Status: {me.current_status()}")
Attending University
Senior Associate Technology L1 @ Tremend Software Consulting S.R.L./Publicis Sapient
-
Tremend Software Consulting
- Romania
-
00:28
(UTC +03:00) - tedyst.ro
- https://orcid.org/0009-0003-1374-0542
Highlights
Pinned Loading
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.




