Publish to my blog (weekly)

Building a semantic graph in Neo4j – Jesús Barrasa A DatatypeProperty describes an attribute in Neo4j A Class defines a category which in Neo4j exists as a node label each of the individual key-value pairs in both nodes or relationships an ObjectProperty describes a relationship in Neo4j DatatypeProperties  (describing neo4j attributes) ObjectProperties  (describing relationships) And Now for Something Completely Different: Using OWL with...

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 ...