This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
= Chess Games and Positions in Neo4j!! | |
:neo4j-version: 2.0.0 | |
:author: Wes Freeman | |
:twitter: @wefreema | |
:tags: chess | |
Heya! | |
The goal is to load a bunch of chess games into Neo4j for further analysis. Scores listed are Stockfish's take on a position after a 25 move horizon (but this number can be deepened as the graph is filled out or as more processing is done). Positions can also be loaded as alternative moves (not connected to a game) based on suggestions from Stockfish. The positions are recorded as link:http://en.wikipedia.org/wiki/Forsyth%E2%80%93Edwards_Notation[FEN], a human-readable/compressed chess board state notation. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
= Competitive Intelligence in Cancer Drug Discovery = | |
:neo4j-version: 2.0.0-RC1 | |
:author: Wolfgang Hoeck | |
:twitter: @LiveDataConcept | |
:tags: life science domain:competitive intelligence in cancer drug discovery | |
Using the _Design for Queryability_ modeling approach by http://twitter.com/ianrobinson[Ian Robinson] | |
=== 1. Application/End-User Goals === |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# encoding: UTF-8 | |
require 'rubygems' | |
require 'nokogiri' | |
require 'open-uri' | |
require 'graphviz' | |
target = 'Philosophy' | |
links = {} |