👨💻 All of my projects are available at github.com/BokyungisaGod
model BokyungisaGod {
github String @default("BokyungisaGod")
email String @default("krr1355@naver.com")
languages String[] @default(["Python", "C#"])
model TechStack {
platform String[]
backend String[]
devops String[]
database String[]
ai_tools String[]
version_control String[]
collaboration String[]
}
techStack TechStack[] @default(
[
TechStack(
platform = ["Unity", "Android Studio", "Eclipse", "VS Code"],
backend = ["FastAPI", "Flask", "Node.js"],
devops = ["Docker", "AWS"],
database = ["PostgreSQL", "MySQL", "Oracle", "SQLite"],
ai_tools = ["Google Colab", "Jupyter", "Tensorflow", "Huggingface", "LangChain"],
version_control = ["Git", "GitHub"],
collaboration = ["Slack", "Discord", "Notion", "Figma"]
)
]
)
}