Coder Social home page Coder Social logo

Nice to meet you, I'm Kevin!

Electrical and Computer Eningeering @ UBC

class GitHubBio:
    def __init__(kevin):
        kevin.name = "Kevin Puthanangadi"
        kevin.location = "Vancouver, BC"
        kevin.internship_experience = [
            {
                "company":  "EPSON",
                "position": "Software Development Intern",
                "duration": "Summer 2023"
            },
            {
                "company":  "ROBOKIDS",
                "position": "Software Engineering Intern",
                "duration": "Summer 2022"
            }
        ]
        kevin.education = [
            {
                "university": "The University of British Columbia",
                "major":      "Electrical and Computer Engineering",
                "graduation": "May 2025"
            }
        ]
        kevin.fields_of_interests = [
            "Software Development",
            "Machine Learning",
            "Automonus Vehicles",
            "Space Exploration",
            "Game Development"
        ]
        kevin.technical_skills = [
            "Python",
            "MATLAB",
            "C/C++",
            "Java",
            "JavaScript",
            "HTML",
            "CSS",
            "Git"
        ]
        kevin.currently_learning = ["Tensorflow"]
        kevin.currently_working_on = ["Personal Website"]
        kevin.goals_2023 = ["Create projects and learn at least 5 new technologies."]
        kevin.hobbies = ["Hackathons", "Video Games", "Movies", "Stocks/Trading"]
        
    def display_bio(kevin):
        bio_dict = kevin.__dict__
        for key, value in bio_dict.items():
            if isinstance(value, list):
                print(key + ":")
                [print(f"- {item}") for item in value]
            elif isinstance(value, dict):
                print(key + ":")
                [print(f"- {k}: {v}") for k, v in value.items()]
            else:
                print(f"{key}: {value}")

if __name__ == '__main__':
    GitHubBio_instance = GitHubBio()
    GitHubBio_instance.display_bio()

Some of My GitHub Stats

kputhanangadi kputhanangadi

Where to Find Me

Youtube Github LinkedIn Email Website Spotify

Kevin Puthanangadi's Projects

kcal icon kcal

A Java-based calorie counter application that allows users to keep track of the calories they consume on a daily basis. The application comes with a number of features that make it easy for users to keep track of their calorie intake and meet their dietary goals.

neuraldrive icon neuraldrive

This project focuses on creating a self-driving car using the PiCar platform through the application of a machine-learning neural network model to sustain autonomous driving capabilities on a mapped track.

spotifygo icon spotifygo

Generates a personalized Spotify playlist depending on the length of your commute.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.