class README:
def __init__(self):
self.name = "cutiips"
self.role = "devops"
self.main_stack = [
"YAML",
"Python",
"Docker",
"Git",
]
self.current_focus = [
"building useful tools & automations",
"learning new nerdy things",
]
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],
"",
]
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 👋")
Pinned Loading
-
-
-
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
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.



