Skip to content
View kellyegoodman's full-sized avatar
  • Austin, TX
Block or Report

Block or report kellyegoodman

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

Hello πŸ‘‹

I'm Kelly, a software developer that mostly works on application software in C++. Occasionally I like to experiment in areas completely different from my usual work, such as mobile app development and backend web development. I use my github mainly for hosting these hobby projects.

  • 🌱 I’m currently trying to learn Go and how to develop backend applications.

  • ✨ One project I am particularly proud of is called WhatToWear. It is an android app that can help you answer the question: What should I wear today? πŸ‘šπŸ‘”.

Languages

C++ Python Go Java

Pinned

  1. WhatToWear WhatToWear Public

    πŸ‘” πŸ‘— β˜€οΈ β˜” Android app where you upload pictures of your clothes and the app will recommend outfits based on the day's weather. Avoid daily decision fatigue and have this app tell you what to wear!

    Java 4

  2. golang-jwt-project golang-jwt-project Public

    Simple go server that performs user authentication using JWT, gin-gonic 🍸, and MongoDB πŸƒ. Monolithic app πŸ—Ώ

    Go 1

  3. C++ Fizzbuzz Implementation C++ Fizzbuzz Implementation
    1
    #include <iostream>
    2
    #include <map>
    3
    #include <string>
    4
    
                  
    5
    /* FizzBuzz prints numbers 1 through n but replaces numbers which are multiples of 3 with "Fizz",
  4. Dynamic Programming - Memoization Ex... Dynamic Programming - Memoization Example using the GridTraveler problem
    1
    #include <iostream>
    2
    #include <unordered_map>
    3
    #include <vector>
    4
    
                  
    5
    /* --------------------------------------------------------------------------------------- */