목록Personal DB (106)
Silver Library
1. Be sure to checkout the branch you want to commit and push. And input git status is recommended based on my standard. So you can see what thing to be happened once you make push command to the branch. 2. Suppose your branch is 'alpha'. Then git checkout e.g. git checkout alpha How do you switch between branches in Visual Studio Code with Git? I am trying to workout how branching works in Visu..
개요. Nest.js 와 Java Spring 은 비슷한 점이 있다고는 하지만, Nest.js 쪽은 아직 샘플이 많지 않아서 누군가의 보조 없이 주니어 개발자가 처음부터 진행 하기에는 도전적이라는 의견이 있는 것으로 보입니다. 현재로서 알 수 있는 점은, Nest 나 Spring 둘 다 Typescript 와 함께 작업하는 것은 가능해 보인다는 점 입니다. 일단 nest.js 의 경우, 당장 확실히 보이는 한국어 안내문은 여기에 있습니다. API with NestJS Archives - Marcin Wanago Blog - JavaScript, both frontend and backend JavaScript NestJS TypeScript NestJS is a framework for building ..
Though this is known as not recommended...this still works perfectly IF that is for a personal project. Radical solution:
How to improve this code more efficiently? In other words, how to be accepted in interview? int main(void) { int scores[3]; scores[0] = get_int("Score: "); scores[1] = get_int("Score: "); scores[2] = get_int("Score: "); printf("Average: %f\n", (scores[0] + scores[1] + scores[2] / 3.0); Obviously, get_int can be replaced to something else. To reduce that repetitive one. In this case, the expert s..