Skip to content
View acanna2013's full-sized avatar
🐼
🐼

Block or report acanna2013

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
acanna2013/README.md
class about_me:
  NAME = "Anna Chen"

  def experience():
    if summer_2024 or currently:
      return "software engineering internship @ Amazon One Medical"
    elif winter_2024:
      return "machine learning internship @ Tesla"
    elif summer_2023:
      return "data science internship @ Caterpillar"
    elif winter_2023:
      return "research @ NASA and Purdue"
    elif summer_2022:
      return "data science internship @ Indiana State Government"
    

  def school_info(university: str) -> str:
    if university == "Purdue University":
      majors = ["Computer Science", "Data Science"]
    return "graduating May 2025"

  def what_i_enjoy(input_str):
    interests = ["coding", "building", "leaving an impact"]

    hobbies = ["legos", "KenKen puzzles", "board games"]:
    return interests.extend(hobbies)

  def aspirations():
    job_interests = ["software engineering", "machine learning", "data science", "open to anything"]

    return "please reach out to my email ac.anna2013@gmail.com or linkedin @ chnanna!"

Pinned Loading

  1. recursion_projects recursion_projects Public

    Java

  2. sort_big_o sort_big_o Public

    Project researching sorting methods and big o time complexity.

    Java

  3. sql_practice sql_practice Public

    Practicing the Structured Query Language

    SQL

  4. nodes_lists nodes_lists Public

    Data Structure: Working with nodes and linkedlists.

    Java