Skip to content
View YJI5212's full-sized avatar

Highlights

  • Pro
Block or Report

Block or report YJI5212

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

Work Experience

  • Software Engineer (full-time), Turing Inc.
fun whatDid(accomplishments: List<String>) {
  accomplishments.forEach { accomplishment ->
    println(accomplishment)
  }
}

fun main() {
  val accomplishments = listOf(
    "Developed an IVI(In-Vehicle Infotainment) System with vehicle operation like controlling the air conditioner and rearview monitor functions by customizing AOSP.",
  )
  
  whatDid(accomplishments)
}
  • Software Engineer (intern), Turing Inc.
#include <iostream>
#include <string>
#include <vector>

void what_did(const std::vector<std::string>& accomplishments) {
  for (const auto& accomplishment : accomplishments) {
      std::cout << accomplishment << std::endl;
  }
}

int main() {
  std::vector<std::string> accomplishments = {
      "Enabled operating existing vehicles through software by analyzing communications between in-vehicle computers.",
      "Created a driving data collection platform.",
  };

  what_did(accomplishments);

  return 0;
}
  • R&D (intern), SoftBank Corp.
def what_did(accomplishment: str):
  print(accomplishment)

if __name__ == "__main__":
  what_did("Developed an application of 3D reconstruction by surveying papers on machine learning models for monocular depth estimation and implementing its logic.")

Turing Inc.

42Tokyo

Popular repositories

  1. YJI5212 YJI5212 Public

    GitHub profile

  2. nand2tetris nand2tetris Public

    Hack

  3. evals evals Public

    Forked from openai/evals

    Evals is a framework for evaluating LLMs and LLM systems, and an open-source registry of benchmarks.

    Python