Code Guide

When a Junior Developer Starts with Code Conventions

When I first joined the company, many things frustrated me. Especially when looking at the code, I wondered why if and for statements were so nested, why the code was so messy, and why the variable names were so weird, etc. As you spend time in the company, you can easily attribute these issues to a lack of skills. However, with more real-world experience, improvisation, dealing with plans that differ from existing designs, and other various reasons, even your own development efforts can result in messy code.

Read more →

May 20, 2024

Let's Learn About Case Style (Camel Case? Pascal Case? Kebab Case?)

Today, I want to share one of the posts I’ve written for work. I have some advice for those starting out in coding, and I plan to gather only those parts and post them with the Code Guide tag! Coding Style There’s no problem if you’re developing alone. Nowadays, almost all languages support UTF-8 encoding, so you can even use Korean in your code. Specifically, for things like variable names, function names, and class names, which developers can name freely, there’s theoretically no issue whether you name them in Chinese or Korean.

Read more →

April 14, 2022