class README:
def __init__(self):
self.name = "cutiips"
self.role = "fullstack developer"
self.main_stack = [
"Python",
"Java",
"Docker",
"Git",
]
self.current_focus = [
"building useful tools & automations",
"improving code quality and architecture",
"learning new backend technologies",
]
self.values = [
"clean code",
"simplicity",
"automation first",
]
def links(self):
return {
"website": "https://curty.link",
}
def __str__(self) -> str:
lines = [
f"name: {self.name}",
f"role: {self.role}",
"",
"main_stack:",
*[f" - {tech}" for tech in self.main_stack],
"",
"current_focus:",
*[f" - {item}" for item in self.current_focus],
"",
"values:",
*[f" - {value}" for value in self.values],
]
return "\n".join(lines)
if __name__ == "__main__":
me = README()
print(me)
print("\nlinks:")
for name, url in me.links().items():
print(f" - {name}: {url}")
print("\nthanks for passing by 👋")
Highlights
- Pro
Pinned Loading
-
doctorfill-dev/DoctorFill-Python
doctorfill-dev/DoctorFill-Python PublicApplication desktop (macOS / Windows) de remplissage intelligent de formulaires PDF médicaux (XFA). Elle utilise un pipeline RAG (Retrieval-Augmented Generation) couplé à un LLM (Infomaniak AI ou L…
Python
-
-
Medipy
Medipy PublicProject in Data Science - construction of knowledge graph with NLP
Jupyter Notebook
-
-
TETP_AnomalyHunter
TETP_AnomalyHunter PublicThis POC is a playful anomaly detection tool that sniffs network logs, hunts suspicious patterns using Isolation Forest, and reports them back to Elasticsearch.
Python
-
TETP_ZeekHunter
TETP_ZeekHunter PublicThis POC is a lightweight anomaly detection pipeline designed for network environments using Zeek logs. It preprocesses network connections, trains a Random Forest classifier, and detects suspiciou…
Python 1
If the problem persists, check the GitHub status page or contact support.



