Skip to content
View yennanliu's full-sized avatar
🍣
shushi
🍣
shushi

Block or report yennanliu

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

Coding: java python python python

Others: aws gcp docker aws aws

CI/CD: jenkins

/** Heya this is Yen, I code backend for problem solving */

sealed trait Skill {
  def description: String
}

case class BackendDevelopment(name: String) extends Skill {
  def description: String = s"$name involves building backend services with JVM and Python."
}

case class DataEngineering(name: String) extends Skill {
  def description: String = s"$name focuses on big data, streaming, and data platform development."
}

case class SystemArchitecture(name: String) extends Skill {
  def description: String = s"$name includes system design and product ownership."
}

object SkillApp extends App {
  val skills: List[Skill] = List(
    BackendDevelopment("Backend Development"),
    DataEngineering("Data Engineering"),
    SystemArchitecture("System Architecture")
  )

  skills.foreach(s => println(s.description))
}

Pinned Loading

  1. CS_basics CS_basics Public

    My CS learning : algorithm, data structure, and system design | #SE

    Java 127 48

  2. SpringPlayground SpringPlayground Public

    Backend playground with Java Spring boot | #SE

    JavaScript 3 4

  3. cdk-playground cdk-playground Public

    Various cloud infra built with AWS CloudFormation | #SE

    TypeScript 1 1

  4. NYC_Taxi_Pipeline NYC_Taxi_Pipeline Public

    Design/Implement stream/batch architecture on NYC taxi data | #DE

    Scala 25 11

  5. JavaHelloWorld JavaHelloWorld Public

    Java basics project : concept, design pattern, Guice, .... | #SE

    Java 2 1

  6. ai_experiment ai_experiment Public

    AI exp : LLM, tools, MLOps, ... | #SE

    Jupyter Notebook 1 1