Skip to content
View SobieskiCodes's full-sized avatar
👻
👻
  • Fishbone Aquatics
  • USA

Highlights

  • Pro

Block or report SobieskiCodes

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.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
SobieskiCodes/README.md

Header image

Hi there, I'm Justin 👋

from dataclasses import dataclass, field
from typing import List, Dict, Union


def create_field(values: Union[list[str], dict]):
    return field(default_factory=lambda: values)


@dataclass
class Person:
    name: str = 'justin'
    age: int = 32
    email: str = 'jmksobieski@gmail.com'
    discord: str = 'probsdad'
    pronouns: List = create_field(["him", "he"])
    code: List = create_field(["Javascript", "HTML", "React", "Python", "PHP"])
    technologyInterests: List = create_field(["Automation", "APIs", "OSCP", "Kernal Injection"])
    pursuing: str = 'Bachelor of Science in Computer Science'
    currentWork: str = 'Support Engineer'
    goals: Dict = create_field({"collect": "the fish", "youToRunThis": f'mailto:?to='})

    def contact(self):
        response = f"You can contact me by email at, " \
                   f"{self.goals.get('youToRunThis')}{self.email} " \
                   f"or discord at {self.discord}."
        return response


me = Person()
print(me.contact())

Pinned Loading

  1. RDPWrap RDPWrap Public

    RDPwrap + win10 privacy

    PowerShell 396 128

  2. Fishbone-Aquatics/aquarium-autobattler Fishbone-Aquatics/aquarium-autobattler Public

    An underwater auto-battler where fish and aquatic creatures compete for dominance in the reef. Build your perfect aquatic team, upgrade your creatures, and watch them battle automatically against o…

    TypeScript