목록전체 글 (246)
without haste but without rest
데이터 엔지니어로서 모바일, 프론트엔드를 위한 데이터 서빙을 담당했었다. 아주 간략히 나누자면 첫 번째로 서비스에 필요한 데이터를 만들기 위한 데이터 파이프라인이 존재한다. 두 번째로 가공한 데이터는 최종적으로 API 형태로 제공한다. 나는 컴퓨터 공학이 아닌 조금 다른 지점에서 개발에 흥미를 느끼고 시작하게 된 케이스였고 그러다보니 펀더먼탈이 되는 것들을 깊게 공부하지 않고 비교적 마이너한 부분부터 파고 들어왔다. 일과 공부를 병행 해나가면서 결국 웹을 정확히 모르고서는 앞으로의 성장에 걸림돌이 될 것 같아서 웹 개발의 전반적인 흐름을 파악해야 겠다는 결론을 내리게 되었다. 아마도 순서는 Web에서의 frontend, backend Role을 이해하고 다시 CS 기초를 리뷰하는 흐름이 될 것 같다. 먼..
https://kapeli.com/cheat_sheets/Oh-My-Zsh_Git.docset/Contents/Resources/Documents/index Oh-My-Zsh Git Cheat Sheet - Kapeli gau git add --update (Also: "git add -u") gbda git branch --no-color --merged | command grep -vE "^(+|*|\s*($(git_main_branch)|development|develop|devel|dev)\s*$)" | command xargs -n 1 git branch -d gbnm gc! gca! gcan! git commit -v -a --no-edit --amend gc kapeli.com
Removing Docker Images | Baeldung Learn several different techniques for removing Docker images. www.baeldung.com docker rmi -f $(docker images -aq)
Running Redash on M1 Mac on Docker Bit of a pain in the ass stephanmeijer.com 도커 컨테이너 이미지를 arm64에서 linux/AMD64으로 애뮬레이트할 때 inotify가 정상적으로 작동하지 않아서 발생하는 에러다.
Difference between WSGI and ASGI ? This is a short story which will give you an idea about what is WSGI and ASGI. medium.com
https://stackoverflow.com/questions/17236796/how-to-remove-old-docker-containers How to remove old Docker containers This question is related to Should I be concerned about excess, non-running, Docker containers?. I'm wondering how to remove old containers. The docker rm 3e552code34a lets you remove a single one... stackoverflow.com
공통적으로 라지한 데이터셋을 나누는 것은 동일하다. Shard: subset을 여러대의 컴퓨터에 분산 처리함 Partition: subset grouping at single db instance Sharding Sharding is the practice of optimizing database systems by separating the rows or columns of a larger database table into multiple smaller tables (shards). hazelcast.com
How do I rename a local Git branch? I don't want to rename a remote branch, as described in Rename master branch for both local and remote Git repositories. How can I rename a local branch which hasn't been pushed to a remote reposit... stackoverflow.com git branch -m