Skip to content
View lewislovelock's full-sized avatar
๐Ÿ‘พ
savage mode
๐Ÿ‘พ
savage mode
Block or Report

Block or report lewislovelock

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
lewislovelock/README.md

Hi there ๐Ÿ‘‹

#!/usr/bin/python
# -*- coding: utf-8 -*-

from typing import List

class Profile:

    def __init__(self, name: str, role: str, languages: List[str], hobbies: List[str], skills: List[str], learning: List[str]):
        self.name = name
        self.role = role
        self.languages = languages
        self.hobbies = hobbies
        self.skills = skills
        self.learning = self.skills + learning 

    def say_hi(self):
        print(f"๐Ÿ‘‹ Hi there, my name is {self.name} and I am a {self.role}.")
        print(f"๐Ÿ’ฌ I speak {', '.join(self.languages)} and my hobbies include {', '.join(self.hobbies)}.")
        print(f"๐Ÿง‘๐Ÿปโ€๐Ÿ’ป Skills {', '.join(self.skills)}.")
        print(f"๐Ÿ“š Currently learning: {', '.join(self.learning)} ๐Ÿคฉ.")
        print("๐Ÿ˜„ Thanks for dropping by, hope we will build something that makes the world better ๐Ÿš€.")

me = Profile(
    name="Lewis Liu",
    role="Software Engineer",
    languages=["Chinese", "English"],
    hobbies=["Coding๐Ÿง‘โ€๐Ÿ’ป", "Hip-hop๐ŸŽต", "Basketball๐Ÿ€"],
    skills=["Python", "React", "Machine Learning", "Linux"],
    learning=["Rust", "Golang", "Penetration Testing"]
)

me.say_hi()

Pinned

  1. jotion jotion Public

    a notion clone project

    TypeScript

  2. refine-crm-dashboard refine-crm-dashboard Public

    A Real-Time CRM Dashboard developed by using Refine, Ant Design, and GraphQL.

    TypeScript

  3. nanopore_variant_calling nanopore_variant_calling Public

    A pipeline for Nanopore variant calling

    Shell

  4. BioinfoAgent BioinfoAgent Public

    Multiple agents collaborating to perform bioinformatics analyses.

    Python