Skip to content
View FrancoDuPlessis's full-sized avatar
  • Cape Town, South Africa
  • 02:20 (UTC +02:00)

Block or report FrancoDuPlessis

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.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, 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
FrancoDuPlessis/README.md

Hi, 👋 I am Franco du Plessis.

Welcome to my GitHub Repository


class DeveloperProfile:

    def __init__(self):
        self.full_name = "Franco du Plessis"
        self.profession = "QA Tester, Data Integration & Automation Engineer"
        self.education = "Mechanical Engineer turning Developer"
        self.work_experience = (
            "Over 20 years in engineering, just over 2 years in tech industry"
        )
        self.key_skills = [
            "Python",
            "JavaScript",
            "TypeScript",
            "Selenium",
            "HTML",
            "CSS",
        ]
        self.have_experience = [
            "C#",
            "ASP .NET Core",
            "EF Core",
            "React",
            "Visual Basic Script",
            "C++",
        ]
        self.hobbies = (["Music", "Gaming", "Personal Dev Projects"],)

    def say_hi(self):
        print(
            f"Hi there! I'm {self.full_name}, and I currently work as an {self.profession}."
        )


me = DeveloperProfile()
me.say_hi()

Popular repositories Loading

  1. FrancoDuPlessis FrancoDuPlessis Public

    Config files for my GitHub profile.

  2. excel-print-to-pdf-app excel-print-to-pdf-app Public

    A small windows form desktop application which prints all Excel files within a folder to PDF.

    Visual Basic .NET