Skip to content
View GeoffreySaxena's full-sized avatar
💭
👨‍💻🎮
💭
👨‍💻🎮
  • University Of Petroleum and Energy Studies
  • India
Block or Report

Block or report GeoffreySaxena

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

Hi there 👋

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


class BuddingAnalyst:
    def __init__(self):
        self.name = "Pratik Geoffrey Saxena"
        self.location = "27.2046° N, 77.4977° E"
        self.website = "https://geoffreysaxena.github.io/"
        self.role = "Budding Analyst and Creative Coder"
        self.knowledge_base = [
            "Data Analysis",
            "Machine Learning",
            "Deep Learning",
            "Business Analytics",
        ]
        self.knowledge_base.insert(0, "Data Visualization")

    def say_hi(self):
        print(
            """Greetings humans, thanks for dropping by!

I am {name}, I live in {location}. I am a {role}, off-late I am focusing on {focus} for my personal growth.

I have wide interests, but most of them are {knowledge_base}.

I post about stuff that interests me on: {website}""".format(
                name=self.name,
                location=self.location,
                role=self.role,
                focus=self.knowledge_base[0],
                knowledge_base=", ".join(self.knowledge_base[1:]),
                website=self.website,
            )
        )


me = BuddingAnalyst()
me.say_hi()

Pinned

  1. 450-DSA-Cracker 450-DSA-Cracker Public

    This repo marks my attempt to solve the 450 DSA Cracker Series

    C++

  2. geoffreysaxena.github.io geoffreysaxena.github.io Public

    This Repo hosts the code to my current GitHub Pages Blog Site!

    CSS

  3. Creating-Poems-with-Deep-Learning Creating-Poems-with-Deep-Learning Public

    Jupyter Notebook 5 1

  4. Dog-Breed-Classification-Using-Deep-Learning Dog-Breed-Classification-Using-Deep-Learning Public

    Jupyter Notebook 3

  5. Doodle-Classifier-Quick-Draw Doodle-Classifier-Quick-Draw Public

    Jupyter Notebook 4

  6. Data-Visualization-Resources Data-Visualization-Resources Public

    Data Visualization Codes, Cheatsheets & Books!

    2 1