Skip to content
View kf1994's full-sized avatar
πŸ₯±
πŸ₯±
Block or Report

Block or report kf1994

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

Hello there πŸ‘‹

visitors Open Source Love

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


class BackendEngineer:
    def __init__(self):
        self.name = "Khurram Farooq"
        self.role = "Backend Engineer"
        self.location = "33.549907\xc2\xb0 N, 73.006242\xc2\xb0 W"
        self.blog = "https://bytesik.com/"
        self.knowledge_base = [
            "Machine Learning",
            "Data Engineering",
            "Software Engineering",
            "Deep Learning"
        ]

    def say_hi(self):
        print("""Hello my friend, thanks for dropping by!
This is {name}, I live in {location}. I work as a {role} and recently I am focusing on {focus} for my personal growth.
I have wide interests, but most of them are {knowledge_base}.
I write down tips and lecture notes on my personal tech blog, which can be found here: {blog}""".format(
                name=self.name,
                location=self.location,
                role=self.role,
                focus=self.knowledge_base[0],
                knowledge_base=", ".join(self.knowledge_base[1:]),
                blog=self.blog,
            )
        )


me = BackendEngineer()
me.say_hi()

πŸ”§ Technologies & Tools

πŸ’Ό Where i am currently working at/as

Popular repositories Loading

  1. nodejs-boilerplate-with-base-sql-crud nodejs-boilerplate-with-base-sql-crud Public

    JavaScript 1

  2. nodejs-typescript-project-structure nodejs-typescript-project-structure Public

    Nodejs typescript project structure

    TypeScript 1

  3. kf1994 kf1994 Public

  4. nodejs-bulk-image-size-reducer-using-sharp nodejs-bulk-image-size-reducer-using-sharp Public

    Bulk image size reducer using sharp

    TypeScript

  5. nestjs-starter-kit nestjs-starter-kit Public

    TypeScript