Skip to content
View rohnsha0's full-sized avatar

Highlights

  • Pro
Block or Report

Block or report rohnsha0

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
rohnsha0/README.md
import datetime

class ReadMe:
    def __init__(self, username):
        self.username = username
        self.name = 'Rohan Shaw'
        self.education = {
            'programming': ['Data Science', 'Machine Learning', 'Deep Learning', 'Android Development', 'Backend']
        }
        self.employment = {
            'developer': ['College Fresher', 'Kolkata, India'],
            'projects': {
                'current': ['MedBuddy AI', 'Computer-Vision based application for disease detection from medical scans'],
                'previous': ['StockSense', 'Real-time stock prediction (Completed in Aug 2023)']
            }
        }

    def github_stats_badge(self):
        return {
            'GitHub stats': f'https://github-readme-stats.vercel.app/api?username={self.username}&show_icons=true&theme=radical'
        }

    def doing(self, year):
        today = datetime.datetime.now().year

        if year == today:
            current_study = self.education['programming']
            return f"""
            Hi there! πŸ‘‹ I'm {self.name}, a college fresher currently diving into {', '.join(current_study)}.
            Currently studying NLP and Computer-Vision.
            """

        elif year > today:
            current_project = self.employment['projects']['current']
            return f"""
            I'm currently working on {current_project[0]}, a {current_project[1]}.
            Looking forward to collaborating on Android Development, Data Science, or Machine Learning projects.
            """

        else:
            return """
            ### Hi there πŸ‘‹
            """

me = ReadMe("rohnsha0")

Pinned Loading

  1. StockSense StockSense Public

    API and training files for StockSense android application

    Jupyter Notebook 1

  2. StockSense-androidApp StockSense-androidApp Public

    StockSense: Open-source Android app leveraging deep learning for accurate stock predictions. Explore technical indicators, fundamental analysis, and join our collaborative community on GitHub. Cont…

    Kotlin 1

  3. SwasthAI SwasthAI Public

    API & other training files for SwasthAI android application

    Jupyter Notebook

  4. SwasthAI-androidApp SwasthAI-androidApp Public

    Your health companion on Android. Detect diseases via X-rays/MRIs, store reports securely, access educational content, join a supportive community, and chat for health info.

    Kotlin