스크랩(12)
-
자바스크립트 핸드북(WTF js)
github.com/denysdovhan/wtfjs/blob/master/README-kr.md denysdovhan/wtfjs 🤪 A list of funny and tricky JavaScript examples. Contribute to denysdovhan/wtfjs development by creating an account on GitHub. github.com
2021.03.31 -
안전한 any type 만들기
안전한 any 타입 만들기 타입스크립트에서 existential type 인코딩하기 overcurried.netlify.app 도저히 스크랩을 안 하고는 못 버티겠다.
2021.03.03 -
ubuntu home server - macbook 연동
everycommit.tistory.com/4 자작 NAS (4) - 내부 파일 공유 환경 구축 1(Ubuntu - Mac AFP) NAS를 구축하려는 가장 큰 목적은 파일 서버로, 저장소 공유 환경을 만드는 것이다. 우선 NAS 저장공간을 로컬폴더처럼 간편하게 사용할 수 있는 '내부 네트워크 환경'을 만들어보자. 집에서 맥북 everycommit.tistory.com 시간날때 해놔야겠다.
2021.02.22 -
Restful API에 대한 정리
REST API와 RESTful API 1. REST란? Representational State Transfe라는 용어의 약자이다. 자원을 URI로 표시하고 해당 자원의 상태를 주고 받는 것을 의미한다. REST의 구성 요소는 자원(Resource): URI 행위(Verb): HTTP METHOD 표현(Representat velog.io 1. REST란? Representational State Transfe라는 용어의 약자이다. 자원을 URI로 표시하고 해당 자원의 상태를 주고 받는 것을 의미한다. REST의 구성 요소는 자원(Resource): URI 행위(Verb): HTTP METHOD 표현(Representations) 로 이루어져 있다. 즉 Rest는 URI를 통해 자원을 표시하고, HTT..
2020.08.10 -
create-react-app 레퍼런스
상대경로 빌드할 일이 있을때 참고해야겠다 Create React App · Set up a modern web app by running one command. `npm run build` creates a `build` directory with a production build of your app. Set up your favorite HTTP server so that a visitor to your site is served `index.html`, and requests to static paths like `/static/js/main..js` are served with the conte create-react-app.dev
2020.07.30 -
react에 super(props)를 써야하는 이유
https://min9nim.github.io/2018/12/super-props/ [React] super(props) 를 써야하는 이유 이 글은 Dan Abramov의 Why Do We Write super(props)? 글을 충분한 의역으로 번역한 것입니다. 번역이 일부 자연스럽지 않은 부분이 있을 수도 있습니다. 정확한 내용은 원문을 참고하기 바랍니다 최근 Hooks min9nim.github.io js언어에선 상속 클래스의 특성상 super()이 생성자에 강제된다. super()만 선언하더라도 작동은 보장된다. (props가 생성자 이후에 자동으로 세팅됨) 다만 생성자 호출 이후에 props가 세팅되기 때문에, 생성자 내부에서 사용되는 this.props는 undefined가 되어버린다. 이 때..
2020.07.23