본문 바로가기

Computer64

Blockchain, NFT, FT with Game Blockchain 에서 가상화폐, 그리고 NFT 까지 바야흐로 가상자산의 시대가 도래하고 있습니다. 이 시점에서 간단하게나마 현재 가상자산 현 주소와 blockchain 은 무엇이고, 그리고 NFT 가 무엇인지에 대해 요약을 해봅니다. 오늘날의 블록체인과 가상화폐 블록체인? 권위 있는 중앙 조직·기관·단체 등이 없이, 자유롭고 평등한 참여자들에 의해 자율적으로 유지되고 운영됩니다. 기존의 서버-클라이언트 구조에서는 모든 정보가 중앙에 있는 서버로 집중되기 때문에 중앙을 차지한 사람이 의사결정권한을 가지는 구조입니다. 하지만 블록체인은 중앙이 없는 피투피(P2P) 방식으로 운영되기 때문에, 권위를 가진 중앙이 존재하지 않는다. 블록체인에서 의사결정 방식은 네트워크에 참여한 모든 사람들의 과반수 이상의 동.. 2021. 11. 21.
Effective Kotlin - Properties should represent state, not behavior 코틀린의 속성은 자바의 필드와 비슷해 보입니다. 그렇지만, 서로 다른 컨셉을 갖고 있습니다. //Kotlinproperty var name:String?=null //Javafield String name=null; 같은 방식으로 사용할지라도, 코틀린의 속성은 좀 더 많은 것을 할 수 있다. property 선언에 대한 전체 구문 var [: ] [= ] [] [] Custom Get, Set ( var ) var name: String? = null get() = field?.toUpperCase() set(value) { if(!value.isNullOrBlank()) { field = value } Custom Get ( val ) val fullName: String? get() = "$name .. 2021. 8. 19.
The Cap Theorem What is the CAP theorem? Before talk about CAP theroem. we need to know about distributed system. and why. As you know in the mobile era, the amount of request and data has increased exponentially. In accordance with this situation, in the database environment, there are also requirements that can be easily extended and data must be delivered quickly. A distributed system environment was devised.. 2021. 3. 25.
Webflux exchange 와 retrieve 의 차이 Under what circumstances? I was using webflux with spring boot version 2.x.x When i was using Webclient in my codes. I was usually using exchange() after request. cause, api what i used. when failed. it response 200 HTTP Status with error body. At that time i had a big mistake. that I thought exchange() and retrieve() is same. If you think like that. you are wrong. they are different. then what .. 2021. 3. 25.
반응형