목록전체 글 (12)
신나는 개발...
https://hanjungv.github.io/2017-11-07-1_CS_SSL/(CS) TLS/SSL Handshake란보통 인하대를 나오고 권장우 교수님의 네트워크 과목을 들었다면 TCP의 3-way handshake, 4-way handshake에 대해 많이 들었을 것이다. 하지만 SSL Handshake에 대해 들어본 적은 없을 것이다.(보안쪽에서 나�hanjungv.github.io SSL 인증서는 클라이언트와 서버간의 통신을 제3자가 보증해주는 전자화된 문서다. 클라이언트가 서버에 접속한 직후에 서버는 클라이언트에게 이 인증서 정보를 전달한다. 클라이언트는 이 인증서 정보가 신뢰할 수 있는 것인지를 검증 한 후에 다음 절차를 수행하게 된다. SSL과 SSL 디지털 인증서를 이용했을 때의 이..
https://en.m.wikipedia.org/wiki/HTTP_tunnelHTTP tunnel - WikipediaThe most common form of HTTP tunneling is the standardized HTTP CONNECT method.[1][2] In this mechanism, the client asks an HTTP proxy server to forward the TCP connection to the desired destination. The server then proceeds to make the connection on behalen.m.wikipedia.orgthe client asks an HTTP proxy server to forward the TCP co..
https://marmelab.com/blog/2018/09/26/functional-programming-3-functor-redone.html [ Functional Programming in JavaScript, Part 3: Introduction to Functors and Monads `Functors` and `Monads` may sound frightening, they are powerful concepts that can help developers on a day-to-day basis. marmelab.com ](https://marmelab.com/blog/2018/09/26/functional-programming-3-functor-redone.html) Exchanging T..
https://medium.com/javascript-scene/master-the-javascript-interview-what-is-functional-programming-7f218c68b3a0 Master the JavaScript Interview: What is Functional Programming? “Master the JavaScript Interview” is a series of posts designed to prepare candidates for common questions they are likely to encounter… medium.com “Master the JavaScript Interview” is a series of posts designed to prepar..
https://marmelab.com/blog/2018/04/18/functional-programming-2-monoid.html Functional Programming in JavaScript, Part 2: The Monoid What do number addition, string concatenation, array concatenation, and function composition have in common? They are all monoids, and they have very interesting properties. marmelab.com What is the similarity between number addition, string concatenation, array conc..
https://marmelab.com/blog/2018/03/14/functional-programming-1-unit-of-code.html Functional Programming in JavaScript, Part 1: The Unit This gentle introduction to functional programming explains pure functions, currying, and composition. Easy peasy! marmelab.com A monad is just a monoid in the category(타입) of endofunctors. 아무것도 안하는 인자를 넘겼을 때 자기 자신이 튀어나온다면 monad array.map(a => a) FP Why Bother Wi..