Posts by Year

2019

reset 과 revert

1 minute read

git commit 을 돌리는 방법 중 reset 과 revert 가 있는데, 이 둘의 차이점을 잘 모르는 상태에서 쓴거 같아서 정리한다.

macOS 단축키

1 minute read

일반 | 키 | 기능 | |:—|:—| | command + c | 복사 | | command + v | 붙여넣기 | | command + z | 실행취소(undo) | | command + shift + z | 실행취소한것 되돌리기 | | command + w | 창 닫기 ...

stash

less than 1 minute read

작업 내역을 임시 저장하는 기능. modified 이면서 commit 은 로그가 남는데 stash 는 로그가 안남는다.

create 와 save(insert)

less than 1 minute read

라라벨에서 데이터를 생성(입력)하는 방법으로 대표적으로 두가지 방법이 있다. create save(insert)

Save the Prisoner!

less than 1 minute read

https://www.hackerrank.com/challenges/save-the-prisoner/problem

Designer PDF Viewer

less than 1 minute read

https://www.hackerrank.com/challenges/designer-pdf-viewer/problem

Mini-Max Sum

less than 1 minute read

https://www.hackerrank.com/challenges/mini-max-sum/problem

Time Conversion

less than 1 minute read

https://www.hackerrank.com/challenges/time-conversion/problem

Extra Long Factorials

less than 1 minute read

https://www.hackerrank.com/challenges/extra-long-factorials/problem

Larry’s Array

less than 1 minute read

https://www.hackerrank.com/challenges/larrys-array/problem

react native 날씨앱

less than 1 minute read

리액트 네이티브로 날씨앱을 만드는 강좌가 있길래 한번 만들어 봤다. 만들기는 쉬운거 같은데 앱이 간단해서 그런거 같기도 하다. 유감이지만 컴퓨터가 맥이 아니라서 내 아이폰에는 앱을 넣을 수가 없었다. (가능하면 할일앱이나 캘린더앱 만들고싶음-_-;)

test

less than 1 minute read

테스트페이지임당

Back to top ↑

2018

Day 29: Bitwise AND

less than 1 minute read

https://www.hackerrank.com/challenges/30-bitwise-and/problem

Day 27: Testing

1 minute read

https://www.hackerrank.com/challenges/30-testing/problem

Day 26: Nested Logic

less than 1 minute read

https://www.hackerrank.com/challenges/30-nested-logic/problem

Day 21: Generics

less than 1 minute read

https://www.hackerrank.com/challenges/30-generics/problem

Day 20: Sorting

less than 1 minute read

https://www.hackerrank.com/challenges/30-sorting/problem

Day 19: Interfaces

less than 1 minute read

https://www.hackerrank.com/challenges/30-interfaces/problem

Day 15: Linked List

less than 1 minute read

https://www.hackerrank.com/challenges/30-linked-list/problem

Day 9: Recursion 3

less than 1 minute read

https://www.hackerrank.com/challenges/30-recursion/problem

Day 7: Arrays

less than 1 minute read

https://www.hackerrank.com/challenges/30-arrays/problem

Day 5: Loops

less than 1 minute read

https://www.hackerrank.com/challenges/30-loops/problem

Day 2: Operators

less than 1 minute read

https://www.hackerrank.com/challenges/30-operators/problem

Day 1: Data Types

less than 1 minute read

https://www.hackerrank.com/challenges/30-data-types/problem

Day 14: Scope

less than 1 minute read

https://www.hackerrank.com/challenges/30-scope/problem

Day 12: Inheritance

less than 1 minute read

https://www.hackerrank.com/challenges/30-inheritance/problem

Day 11: 2D Arrays

less than 1 minute read

https://www.hackerrank.com/challenges/30-binary-numbers/problem

Day 0: Hello, World.

less than 1 minute read

https://www.hackerrank.com/challenges/30-hello-world/problem

PHP 에 관해

less than 1 minute read

요전번에 면접볼때 PHP 에 관해 설명 해달라는 질문을 받았다. 솔직히 PHP를 서버 일 시작하면서 급하게 쓰게 된거라. 그렇게 깊게 알아 볼 생각은 못했었다. 왜 그렇게 다들 욕하는지, 그러면서도 왜그렇게 열심히 쓰고 있는지(심지어 페이스북에서도 열심히 쓰고있다!)

GET/POST​

less than 1 minute read

웹 프로그래밍을 하면서 GET과 POST 참 많이 사용하게 됐다. 근데 GET 과 POST 의 차이점이 뭔지 질문 받았을때 ‘어? 뭐지?’ 라고 생각했다. 면접때 GET관련 질문에서 최종질문이 ‘GET의 뒤쪽에 붙는 데이터의 최대 용량은 몇인가?’ 였으니 그쪽에서 바란 답은 ‘GE...

Back to top ↑