2021-02-04-TIL
2021-02-04-TIL skija 타입스크립트 추천 Using streams to manipulate a String in Java Using Java 8 Streams replace Characters in a String if found in a list of Characters How to get HTTP Response Header...
2021-02-04-TIL skija 타입스크립트 추천 Using streams to manipulate a String in Java Using Java 8 Streams replace Characters in a String if found in a list of Characters How to get HTTP Response Header...
2021-02-03-TIL Jekyll Themes https://jekyll-themes.com/jekyll-console/ https://jekyll-themes.com/hacker-blog/ https://jekyll-themes.com/dark-side/ https://jekyll-themes.com/project-negya...
2021-02-02-TIL 버스는 모든곳을 다 들른다는 의미에서 CPU에서의 버스, 네트워크 버스도 동일한 의미를 가진다. 오늘의 톱니바퀴 베이스 : 실 전화기 종이컵 : Entity, Transmitter/Receiver, End-point, Terminal, Node 실 : Medium, Link 왜 ...
2021-02-01-TIL www.disney.com -> get ip address:10.5.3.7 -> http request -> http response https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers https://joone.net/2021/01/02/37-%EC%9...
2021-01-31-TIL find command https://recipes4dev.tistory.com/156 Progress Bar in Java https://masterex.github.io/archive/2011/10/23/java-cli-progress-bar.html
2021-01-29-TIL Java Docker MySQL https://www.linkedin.com/pulse/running-java-application-mysql-linked-docker-deepak-sureshkumar/ https://dzone.com/articles/mysql-in-java-applica...
2021-01-28-TIL docker --version docker pull mysql/mysql-server:5.7 docker images docker run -d -p 3306:3306 -e MYSQL_ROOT_PASSWORD=password --name mysql-5.7 -v /Users/ham/db_data:/var/lib/my...
2021-01-27-TIL DFS/BFS는 각각 어떤 경우에 유용하게 쓰이는가? 케이스 스터디 해놓기 Enum https://woowabros.github.io/tools/2017/07/10/java-enum-uses.html Factory Pattern https://woovictory.github.io/2019/02/07/De...
2021-01-26-TIL 동기적인 표현이 비동기적인 표현보다는 이해가 쉬우므로 코드도 그런식으로 작성한다. 간단한 시나리오를 먼저 구현해보는 것도 좋은 방법이다. 큰 뼈대를 먼저 만들고나서 살을 붙이면서 수정해나간다. 문제를 추상화시키고 축소시켜서 작성한다. lean startup https://www.youtube.com/watch?v=8...
2021-01-25-TIL State Pattern https://victorydntmd.tistory.com/294 비동기, promise 동기와 비동기 요청 시점에서 결과가 바로 나오는가? 바로 나오지 않는가? 동기카페에서는 커피가 나올때까지 마냥 기다려야한다. 비동기는 커피가 나올때까지 기다리지 않는다. 아무거나 할 수 있다. 그...