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
-
-
-
Medipy
Medipy PublicProject in Data Science - construction of knowledge graph with NLP
Jupyter Notebook
-
-
DockNRoll
DockNRoll Public(in progress) DockNRoll is a deployment project that uses Docker Compose to orchestrate a Flask backend, a static frontend, and an Nginx reverse proxy.
HTML
-
vulnerability-scanner-python
vulnerability-scanner-python PublicQuickly analyze vulnerabilities (SQL injection and XSS) using a Python script
Python
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.



