Skip to content
View jorgoose's full-sized avatar

Block or report jorgoose

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

Hi there πŸ‘‹

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


# πŸ‘‡ Full skillset down below in the README, or on my personal website
from logan_profile import full_skillset


class SoftwareEngineer:
    def __init__(self, name, title, years_experience, hobbies):
        self.name = name
        self.title = title
        self.years_experience = years_experience
        self.hobbies = hobbies
        self.skills = full_skillset.preview(top_n=5)

    def introduce(self):
        print(f"πŸ‘‹ Hey, I'm {self.name} β€” a {self.title} with {self.years_experience}+ years of experience.")
        print("In my free time, I enjoy:")
        for hobby in self.hobbies:
            print(f"  β€’ {hobby}")
        print("\nSome of my go-to tech:")
        for skill in self.skills:
            print(f"  β†’ {skill}")

    def __str__(self):
        return f"{self.name} ({self.title}) β€” {self.years_experience}+ yrs experience"


if __name__ == "__main__":
    logan = SoftwareEngineer(
        name="Logan Jorgensen",
        title="Software Engineer",
        years_experience=1,
        hobbies=["Weightlifting", "Cooking", "Hiking", "Side projects", "Live music"]
    )

    logan.introduce()
$ python logan_profile.py
Logan Jorgensen (Software Engineer) β€” 1+ yrs experience
πŸ‘‹ Hey, I'm Logan Jorgensen β€” a Software Engineer with 1+ years of experience.
In my free time, I enjoy:
  β€’ Weightlifting
  β€’ Cooking
  β€’ Hiking
  β€’ Side projects
  β€’ Live music

Some of my go-to tech:
  β†’ Python
  β†’ Go
  β†’ FastAPI
  β†’ React
  β†’ GCP

Project Stats

Top Langs

🧰 Things I've Used

🧠 Languages πŸ“¦ Frameworks and Tools 🧠 ML / AI πŸ“± Mobile πŸ—„ Databases ☁️ Cloud

Python Go TypeScript JavaScript Dart PHP Java R

React Svelte Next.js FastAPI Vue.js TailwindCSS Express.js Laravel Spring

PyTorch TensorFlow OpenCV

Flutter Android Studio

PostgreSQL Supabase Neo4J SQLite

AWS Google Cloud

πŸ”Ž Currently Exploring

Rust CUDA GraphQL Apache Spark NLP

What I've been listening to

Spotify recently played

Pinned Loading

  1. frogstagram Public

    A frog-centric social media application

    JavaScript 1

  2. dungeon_ai Public

    An application to generate a dungeon-style story game using AI

    Python 3

  3. pokemon-classification Public

    A TensorFlow image classifier to identify images of different Pokemon

    Jupyter Notebook

  4. complexity-stock-backtesting Public

    Testing the historical performance of company's stocks based on the inherent complexity of their 10-K report filed with the SEC.

    Python 1

  5. FinCord Public

    Forked from zjakwani/FinCord

    Helping the discord community with financial literacy.

    Python

  6. insuriquest Public

    Making insurance education fun through dynamic story experiences.

    TypeScript 1