합의알고리즘 (Consensus algorithms) - 다수의 참여자들이 통일된 의사 결정을 하기위해 사용하는 알고리즘 - 권위있는 중앙이 존재하지 않기 때문에 통일된 의사결정필요! 들어가기 앞서서... 비잔틴 장군 문제 - 합의 시스템에서 악의적으로 정보를 변경시키는 행위에 대해 전체 시스템이 올바른 합의를 이룰 수 있도록 하는가? - 비잔틴 장군들 --> 어떠한 공격을 한다고 할때 일정 비율 이상 동시에 지역 공격해야지 성공 - 정보전달때 누군가가 악의적으로 정보 변경하지만 대다수의 장군들이 정확한 시간 날짜에 공격성공 - 결국 POW라는 증명 알고리즘을 통해 해결한것! 1. 작업증명(Proof of Work, PoW) - 목표값 이하의 해시를 찾는 과정을 무수히 반복함으로써 해당 작업에 참여했음을..
https://edition.cnn.com/2020/03/16/health/us-coronavirus-monday-updates/index.html Americans face new shutdowns as coronavirus keeps spreading. But some say the bans aren't enough The race to control coronavirus in the US has taken a drastic turn, as the US Centers for Disease Control and Prevention urged the public to cancel or postpone gatherings of 50 people for the next eight weeks. www.cnn...
https://edition.cnn.com/2020/03/12/asia/coronavirus-flu-weather-temperature-intl-hnk/index.html Will warmer weather help fight the coronavirus? Singapore and Australia suggest maybe not As the novel coronavirus began spreading around the world this year, one common refrain from skeptics of the emergency measures being put in place to stop the outbreak was that it was just like the flu -- dangero..
https://edition.cnn.com/2020/03/13/business/bill-gates-microsoft-berkshire-boards/index.html Bill Gates is leaving Microsoft and Berkshire Hathaway's boards Bill Gates is stepping down from the boards of Microsoft and Berkshire Hathaway. www.cnn.com serve on - ~의 역할을 하다 ex) The 68-year-old has served on FaceBook's board since 2018, after his retirement as chairman and CEO chairman and CEO of AME..
https://edition.cnn.com/2020/03/08/investing/stock-dow-futures-coronavirus/index.html Global stocks tumble as oil crashes Stock futures were down again Sunday evening as the novel coronavirus outbreak continues to roil financial markets. www.cnn.com Rattle - 당황하게 하다 ex) Global stocks are collapsing Monday as the novel coronavirus outbreak and an oil crash rattle investors. cf) Rattle on - (~에 대해..
https://edition.cnn.com/style/article/north-korea-womens-beauty-freedom/index.html 'Beauty is freedom': The North Korean millennials wearing makeup to rebel against the state Young North Korean millennials are wearing makeup in a form of rebellion against the state. www.cnn.com have a greater insight into ex) The famine disrupted the schooling system, so many of the Jangmadang generation literal..
https://edition.cnn.com/2020/03/04/business/united-us-flight-cuts-coronavirus/index.html United, JetBlue cutting US flights because of coronavirus United Airlines and JetBlue Airways became the first airlines to cut their US flight schedules on Wednesday, as passenger worry about the coronavirus has caused a sharp drop in demand. www.cnn.com make steep cuts - It means a large reduction ex) While..
설치환경 - 윈도우 터미널 열기 - 윈도우 창에서 Git Bash Here # git 기본 git init => git 시작하기(폴더에서 사용) git add * git commit -m "message" => git commit - 만들기 git log => git log 보기 git log // --> 후 commit 9708a9e87454197d885f9cc402d1e6bd60432137 라는 숫자가 나옴 이때 앞글자 7자리만 따서 git checkout 9708a9e => 원하는 시점으로 돌아가기 git checkout => 최신커밋으로 돌리기 git remote add origin https://~~~ => 원격 github 저장소와 연결하기 git push origin master => git..
Git이란? - 컴퓨터 파일의 변경사항을 추적하고 여러 명의 사용자들 간에 해당 파일들의 작업을 조율하기 위한 분산 버전 관리 시스템 Git 설치 1. 내 컴퓨터에 설치하기 https://git-scm.com/downloads Git - Downloads Downloads Mac OS X Windows Linux/Unix Older releases are available and the Git source repository is on GitHub. GUI Clients Git comes with built-in GUI tools (git-gui, gitk), but there are several third-party tools for users looking for a platform-specific..
1. 캐시(cache) 란? - '숨기는 장소' = 임시 저장소 - 사용 빈도가 높은 데이터를 고속으로 액세스 할 수 있는 위치에 두는 것 - CPU의 1차캐시, 2차캐시, 저장도캐시, OS 페이지 캐시, 데이터베이스 버퍼 캐시 KVS(데이터를 메모리에 캐시하는 것) - 데이터를 잃을 위험이 있어서 캐시 데이터가 손실되어도 괜찮은 경우에 주로 사용 ex) 스트리밍 서비스 등... 2. 캐시의 장단점 (1) 장점 - 데이터에 고속으로 액세스 가능 - 실제 데이터에 대한 액세스 부하 줄일 수 있음 (2) 단점 - 캐시데이터가 손실 될 수 있음