GithubHelp home page GithubHelp logo

πŸ€“ About Me

Briefly,

class AboutMe:
    """Introduction of Dustin Baek."""

    def __init__(self):
        self.__company: str = "Deloitte"
        self.__position: str = "Machine Learning Engineer"
        self._workspace: dict[str, str] = {
            "company": self.__company,
            "position": self.__position,
        }
        self.__interested_positions: set[str] = {
            "Software Engineer",
            "Data Engineer",
            "Machine Learning Engineer",
            "Python Developer",
        }
        self._programming: list[str] = ["Python", "SQL", "Bash"]

    def __repr__(self):
        """Show who I am."""
        return f"Hi! I'm Dustin working as {self._workspace.get("position")}" +\
               f"at {self._workspace.get("company")}."

    @property
    def workspace(self) -> list[str, str]:
        """Get workspace details."""
        return self._workspace

    @workspace.setter
    def workspace(self, value: Iterable[bool, str, str]):
        """Update workspace details if conditions met."""
        try:
            career_growth, new_company, new_role = value
        except ValueError as e:
            raise ValueError(
                "To set workspace you need to pass in iterable of three elements."
            ) from e
        else:
            if career_growth and new_role in self.__interested_positions:
                self._workspace["company"] = new_company
                self._workspace["position"] = new_role
            elif career_growth and new_role not in self.__interested_positions:
                raise ValueError(
                    "I want to become better "
                    + " or ".join(s for s in self.__interested_positions)
                )
            else:
                raise ValueError("Sorry maybe not position suitable for me.")

    @property
    def programming(self) -> list[str]:
        """Get current programming skils."""
        return self._programming

    @programming.setter
    def programming(self, language: str):
        """Willing to learn any language!"""
        if isinstance(language, str):
            self._programming.append(language)

    @property
    def education(self) -> str:
        """No setter since it wouldn't change."""
        degree: str = "MEng Information and Computer Engineering"
        where: str = "University of Cambridge"
        when: str = "10.2018 - 06.2022"
        return " | ".join([degree, where, when])

    @property
    def location(self) -> tuple[float, float]:
        """I prefer to work in london for now."""
        return 51.493879, -0.218356

πŸ“ˆ Github Stats

Dustin's GitHub stats

πŸ› οΈ Technologies

Python

Pandas Pytest NumPy

FastAPI

Snowflake Postgres

Git GitLab CI GitHub Actions

Docker

Visual Studio Code Vim

macOS Ubuntu

dustinbaekpersonal's Projects

dustinbaekpersonal doesn’t have any public repositories yet.

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.