Frontend Framework

뜬금없이 파견된 프로젝트에서 웹 개발 그것도 프론트엔드를 하게 되었다. 입사 이래로 처음이야… 그래서 내게는 생소한 프레임워크가 많아 조금 헛갈려서 정리를 했다. 아직도 조금 헛갈리기는 하지만 익숙해지겠지.

webpack

module bundler

Read More

자주 사용하게 되는 Git 명령어

그냥 내가 자주 사용하는 git 명령어를 좀 정리해보려 한다.

status

1
git status

Read More

오늘의 깨달음

오늘의 깨달음 1. 귀찮은 것은 이해하지만 그렇다고 프로젝트가 전혀 다른 것으로 바뀌었는데 메이븐 로컬 레파지토리를 재탕하지는 말자. 재탕하더라도 서버가 이상하게 별 이유 없이 제대로 안 뜨고 이상한 이유를 뱉는다면 일단 날려보자 요노무자식

오늘의 깨달음 2. 변수명 좀 잘 좀 봐라 이…

Read More

Programming for everybody (Python) - 10.Tuples

10. Tuples

Tuples은 세번째 Collection! List와 Dictionary에 이어서. List랑 비슷함. 순서가 변하지 않고, 0번부터 시작하지.

Read More

Programming for everybody (Python) - 9.Dictionaries

9. Dictionaries

What is a Collection?

Collection은 일종의 짐보따리 같은 것. 안에 아무 거나 넣을 수 있는. 우리는 아무거나 넣어서 그걸 아무데나 들고 다닐 수 있어. 일종의 편리한 짐가방처럼.

Read More

Programming for everybody (Python) - 8.Lists

8. Lists

A List is a kind of Collection

A collection allows us to put many values in a single variable
우리가 많은 values 들을 하나의 편리한 가방 안에 넣을 수 있기 때문에 좋아!

Read More

Programming for everybody (Python) - 7.Files

7. Files

그동안 우리가 한 건 그냥 정말 python이랑 논 거. 그냥 CPUMain Memory사이를 왔다갔다 하면서. 절대 여길 떠나지 않았지! 그래서 이젠 Secondary Memory를 사용해보려고 해! permanent media! 우리는 python을 이용해서 파일을 쓰거나 읽을 수 있지!

Read More

Programming for everybody (Python) - 6.Strings

6. String

String Data Type

A string is a sequence of characters.
A string literal uses quotes 'Hello' or "Hello"
For strings, + means concatenate
When a string contains numbers, it is still a string
We can convert numbers in a string into a number using int()

Read More

Programming for everybody (Python) - 5.Loop

5. Loop

Repeated Steps

while이 if와 다른 점은 condition을 만족하는 한 indent된 구문을 계속해서 다시 실행한다는 것

Read More

Programming for everybody (Python) - 4.Functions

4. Functions

Stored (and reused) Steps

Functions은 저장해놨다가 다시 쓰고 쓰고 그게 기본적인 idea. 계속해서 사용하게 되는 logic을 저장해두었다가 쉽게 반복해서 불러다 쓰는거지.

Read More