Skip to content
View rsehmbi's full-sized avatar
πŸ‘¨β€πŸ’»
Stay hungry, Stay Foolish
πŸ‘¨β€πŸ’»
Stay hungry, Stay Foolish
Block or Report

Block or report rsehmbi

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
rsehmbi/README.md
class SoftwareDeveloper(GithubUser):

    def __init__(self):
        self.name = "Raman Sehmbi"
        self.role = "Software Developer"
        self.languages_spoken = ["pa_IN", "en_CA"]

    def get_current_work_experience(self):
        return "Currently working on safeguarding AI!"

    def get_previous_work_experience(self):
        return [
            "Imagia Canexia Health",
            "ThoughtFarmer",
        ]

    def get_skills(self):
        return {
            "languages": ["Python", "Javascript"],
            "other": ["Kotlin", "Java", "C#", "C++"],
            "frontend": ["Angular", "React"],
            "backend": ["Django", "Flask", "FASTAPI"],
            "databases: ["mongo", "MySql", "sqlite" , "postgres"],
        }

    def favQuotes(self):
        return [
            "It's called VS Code because its you VS your code always!",
            "Strive to be uncommon amongst uncommon people",
        ]    
    
    def saying_hello(self):
        print("Hello there πŸ‘‹")
    

i_am = SoftwareDeveloper()
i_am.saying_hello()

Visits Badge

Certifications:

Pinned

  1. greenfoodtracker greenfoodtracker Public

    Android app for Vancouver residents aiming to reduce their carbon footprint. It includes a carbon calculator, carbon pledge, and a restaurant guide for monitoring carbon emissions.

    Java 2 1

  2. Reversi Reversi Public

    Implemented two Reversi-playing AI agents: one using Monte Carlo Tree Search and the other utilizing Weighted Search to determine the more successful algorithm.

    Java 2

  3. WineAnalysis WineAnalysis Public

    Analyzed Physio chemical and Geographical data-sets to predict the quality of wines. Utilized customer reviews to draw inference on quality of wines.

    Python 2

  4. social--gaming social--gaming Public

    Gaming platform that allows users to play multiplayer games concurrently in C++.

    C++ 2

  5. budget-wise-app budget-wise-app Public

    React expense management app featuring data visualization, with Google Auth for user login and ElephantSQL for the database. Deployed on Google Cloud Platform for expense tracking.

    TypeScript 1

  6. my-runs my-runs Public

    Android application incorporating Google Maps integration and activity recognition using decision tree classifier to track workouts.

    Kotlin