본문 바로가기

카테고리 없음

2020-11-15 12시 개발자 글 모음 | "AWS 입문자를 위한 강의 업데이트 " 외 8개 이야기

Running Opens Source Virtualization with QEMU by 손지민

  • Get the Fedora Workstation ISO image by visiting the Fedora homepage and clicking the Download Now button under Fedora Workstation
  • This will download the QCOW2 image; save the file in the same directory where you put your Fedora Workstation ISO image
  • The qemu-img command will allow you to resize the downloaded QCOW2 image to any size you want to allocate


React + Material UI에서 Modal 사용시 발생하는 Failed prop type Warning 해결하기 by 김현지

  • 더 찾아보면 함수형 컴포넌트에서는 사용할 수 없거나 복잡한 방법을 사용해야 한다는 내용들이 나오는데
  • // 모달을 사용할 함수형 컴포넌트 return( <> { setOpen(false); }} aria-labelledby="simple-modal-title" aria-describedby="simple-modal-description"> // 모달 안에 들어갈 컴포넌트를 한번 감싸준다
  • ); // 감싼 컴포넌트에 React


[React, Material UI] Warning: MaxListenersExceededWarning by 김현지

  • 리스트 테이블의 컬럼 수가 10개 이상일 때
  • colResizing 이벤트를 막을 수 있는 XGrid컴포넌트를 사용해도 되지만
  • 따라서 컬럼이 10개 이상이 되면 워닝이 발생함


Easy way to create your Documentation site with Docsify and GitHub Pages by 손지민 about Git

  • I’ll show you one option for doing so: combining the Docsify documentation generator with GitHub Pages
  • GitHub Pages’ HTML file support means you can use other site-generation tools
  • If you cloned my GitHub repo and changed into the DocsifyDemo directory


[일요독후감] #43<그럼에도나는아파트를사기로했다> by 유동환

  • - 2006년 마이너스 통장 3000만원으로 서울 면목동 다가구 주택에서 신혼살림 시작
  • - 신혼집을 시작으로 14년간 총 12번이나 이사 (이때는 어려움을 극복한 시기)
  • - 저도 이 책을 통해 필요한 정보를 얻었습니다


[OS Chapter 8] Memory Management by 최승호

  • relocation register(=base register) 와 limit register relocation register(=base register) - 접근할 수 있는 물리적 메모리 주소의 최소값 limit register - 논리적 주소의 범위
  • outer-page table은 다 존재하지만 page table을 사용하지 않으면 내부 페이지로 향하는 포인터를 NULL값으로 만든다
  • invalid 는 해당 주소의 frame에 유효한 내용이 없음을 뜻함 주소 부분을 사용하지 않거나 해당 페이지가 메모리에 올라와 있지 않고 swap area에 있는 경우


Learn how TLS, SSL, and CA work by 손지민

  • what is the website doing to secure your transaction so that you can trust it?
  • WARNING: If you do not see a certificate sign on a website — or if you see a sign that indicates that the website is not secure — please do not log in or do any activity that requires your private data
  • but developers and website administrators need a simpler way to test websites before they’re deployed to production; this is where self-signed certificates come in


Learn how to build Continuous Integration/Continuous Deployment (CI/CD) Pipeline with Jenkins by 손지민

  • A Jenkins pipeline is the way to execute a Jenkins job sequentially in a defined way by codifying it and structuring it inside multiple blocks that can include multiple steps containing tasks
  • This is necessary to leverage the Java Web Archive (WAR) version of Jenkins that is used in this tutorial (although you can use any other distribution)
  • This is necessary to leverage the Java Web Archive (WAR) version of Jenkins that is used in this tutorial (although you can use any other distribution)


AWS 입문자를 위한 강의 업데이트 DynamoDB - 3,4부 by 김성민 about AWS