Publish to my blog (weekly)

온톨로지 - 위키백과, 우리 모두의 백과사전 어떤 관심 분야를 개념화하기 위해 명시적으로 정형화한 명세서 공유된 개념의 정형화된 명세 인스턴스 클래스 관계 속성 이름을 실질적인 형태 같은 표현의 개체가 어떠한 경우에는 클래스가 되었다가 다른 경우에는 인스턴스가 될 수 있다. 성질, 성향 hasSize ...

Publish to my blog (weekly)

What is Ethereum? — Ethereum Homestead 0.1 documentation asset-registries, voting, governance, and the internet of things Posted from Diigo . The rest of my favorite links are here .

Publish to my blog (weekly)

How do Artificial Neural Networks learn? - CodeProject recap State again as a summary; recapitulate.요약하다noun재생타이어, 요점의 반복verb재생시키다, 타이어를 재생시키다, ...의 요점을 되풀이하다 reminiscent Tending to remind one of something.연상시키는adjective옛날을 회상하는, 추억에 잠기는, 생각나게 하는noun추억을 말하는 사람 Posted from Diigo . The rest of my favorite links are here .

Publish to my blog (weekly)

reactjs - how to use setProps in react.js - Stack Overflow You're not supposed to do that. Posted from Diigo . The rest of my favorite links are here .

Publish to my blog (weekly)

How to write highly readable React code — 10 coding style tips ponder 숙고하다verb숙고하다, 생각하다 Posted from Diigo . The rest of my favorite links are here .

Publish to my blog (weekly)

ScalaBodyParsers - 2.6.x tags: scala object function parameter synthetic sugar def action = Action { request : Request[AnyContent] => ...}*** 위의 문법을 이해하기 위한 예제scala> object Action { | def apply(request: (String) => Unit) { | request("I am an Action") | } | }defined object Actionscala> def action = Action {request: String => println(request + " then is called by outside")}action: Unitscala> actionI am an Action then is called by outside Kotlin DSL: From Theory to Practice - DZone Java ...

Publish to my blog (weekly)

스칼라 강좌 (25) - 부분 함수 (Partial function) 그 예외 항목이 먼지 알려주는 함수가 isDefinedAt 입니다. PartialFunction 은 아래와 같이 만들며 자동으로 isDefinedAt 이 만들어지는게 특징입니다. [Int, Int] 는 인자로 Int 리턴값으로 Int 를 말합니다. Partial Functions, Scala Partial Function 을 이해하는 쉬운 방법은, 일반 Function 을 Total Function 으로 이해하면 된다. 즉, 일반 Function 이 주어진 인자에 대해 모든 값을 취한다면, Partial Function 은 주어진 타입에 대해서 특정 값만 취할 수 있다. Scala School 의 원문을 첨부하면 A function works for every argument of the defined type. In other words, a function defined as (Int) =>...