Skip to content
View cutiips's full-sized avatar

Highlights

  • Pro

Organizations

@heg-web @CityMobiS

Block or report cutiips

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. Markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
cutiips/README.md
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 πŸ‘‹")

Pinned Loading

  1. APICalypseNow APICalypseNow Public

    A Python script to interact with Eden AI API

    Python

  2. TicketOrTreat TicketOrTreat Public

    Live dashboard that simulates API calls from Petzi

    HTML

  3. Medipy Medipy Public

    Project in Data Science - construction of knowledge graph with NLP

    Jupyter Notebook

  4. FireStork FireStork Public

    This project exports Firestore data into JSON files.

    Python

  5. 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

  6. vulnerability-scanner-python vulnerability-scanner-python Public

    Quickly analyze vulnerabilities (SQL injection and XSS) using a Python script

    Python