yngmanie 블로그

github 충돌나서 겪은 어려움

회사 프로젝트를 두명하고 있었는데 잘못된 PR을 develop에서 master로 날려서 revert한 적이 있었다. master - develop - release/{date}으로 branch 관리를 하는데 release/{date} branch에서는 release시기에 맞춰 프로젝트에...

지킬 로컬 서버 돌리면서 겪은 어려움

블로그를 거의… 1년만에 다시 시작했다. 회사에 적응하면 해야지 했던 나의 다짐은 다짐으로만… 무튼 오랜만에 포스팅을 하면서 jekyll 로컬 서버로 돌려보려고 했는데 README.md 파일에 따로 설치하는...

모던 웹 브라우저의 이해

기본 개념 CPU: Central Processing Unit GPU: Graphics Processing Unit 예전에는 그래픽만 처리하는 용도였지만 지금은 아님 Process: 어플리케이션의 실행프로그램 Thread: 프로세스 내부에서 프로그램을 실행할 수...

초보자를 위한 웹팩(Webpack) 소개

해당 포스트는 A beginner’s introduction to Webpack 를 번역하여 작성하였습니다. 잘못된 부분이 있다면 댓글 부탁드립니다. 웹팩(webpack)이란 무엇인가? 웹팩은 자바스크립트 모듈을 컴파일할 수 있는 툴로서 모듈...

알고리즘 - First non-repeating character

문제 Write a function named first_non_repeating_letter that takes a string input, and returns the first character that is not repeated anywhere in the string. For...

알고리즘 - Snail

문제 Given an n x n array, return the array elements arranged from outermost elements to the middle element, traveling clockwise. array = [[1,2,3], [4,5,6],...

알고리즘 - Human readable duration format

문제 Your task in order to complete this Kata is to write a function which formats a duration, given as a number of seconds, in...

알고리즘 - The Hashtag Generator

문제 The marketing team is spending way too much time typing in hashtags. Let’s help them with our own Hashtag Generator! Here’s the deal: It...

알고리즘 - Perimeter of squares in a rectangle

문제 The drawing shows 6 squares the sides of which have a length of 1, 1, 2, 3, 5, 8. It’s easy to see that...

jquery의 on.(handler, fn) 와 handler.(fn) 의 차이점

해당 포스트는 Difference between .on(‘click’) vs .click()를 번역하여 작성하였습니다. 잘못된 부분이 있다면 댓글 부탁드립니다. 두 가지의 차이점은 사용 패턴에 있고 on.(handler, fn)을 사용하는 것을 추천드립니다....