http://www.neo4j.org/develop/linked_data http://neo4j.com/blog/and-now-for-something-completely-different-using-owl-with-neo4j/?_ga=1.82889430.1907739431.1411998329 http://losangelesindustries.tumblr.com/post/41701508265/loading-dbpedia-into-neo4j-with-clojure http://michaelbloggs.blogspot.de/2013/05/importing-ttl-turtle-ontologies-in-neo4j.html http://www.neo4j.org/develop/clojure
This file contains hidden or 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
# Compiled source # | |
################### | |
*.com | |
*.class | |
*.dll | |
*.exe | |
*.o | |
*.so | |
# Packages # |
This file contains hidden or 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
mkdir ~/tmp | |
cd ~/tmp | |
sudo apt-get update | |
# sudo apt-get update & sudo apt-get upgrade | |
# GIT | |
sudo apt-get install git | |
git config --global user.name "Chris Baker" | |
git config --global user.email [email protected] |
- QuickCheck
- Nate Price: Diamond Kata - TDD with only Property-Based Tests
- Alistair Cockburn: Thinking before programming
- Recycling tests in TDD
- Alistair Cockburn: The Design as Knowledge Acquisition Movement
- Alistair Cockburn: Disciplined Learning; How “Learn Early, Learn Often” Takes Us Beyond Risk Reduction
- Leslie Lamport
- The Verification of a Distributed System
- Distributed System Testing
This file contains hidden or 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
wget http://chromedriver.storage.googleapis.com/2.14/chromedriver_linux64.zip | |
unzip chromedriver_linux64.zip | |
sudo cp chromedriver /usr/bin/chromedriver | |
sudo chown root /usr/bin/chromedriver | |
sudo chmod +x /usr/bin/chromedriver | |
sudo chmod 755 /usr/bin/chromedriver |
This file contains hidden or 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
sudo apt-get update | |
# docker | |
curl -sSL https://get.docker.com/ | sh | |
adduser dev | |
visudo | |
su dev | |
usermod -aG docker dev | |
# R |
This file contains hidden or 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
require 'rbconfig' | |
require 'ffi' | |
include RbConfig | |
# Example of a cross-platform ffi embed in Ruby. | |
module Hello | |
extend FFI::Library | |
if CONFIG['host_os'] =~ /linux/i | |
ffi_lib 'target/release/libembed.so' |
Install and run the docker Jupyter Notebook Data Science Stack
$> docker run -d -p 8888:8888 jupyter/datascience-notebook
From Jupyter create a new Terminal.
Start Julia
$> julia -p 4
This file contains hidden or 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
struct ModGuard { | |
val: u32, | |
display: &'static str | |
} | |
fn get_fizzbuzz_guards() -> Vec<ModGuard> { | |
vec![ | |
ModGuard{val: 3, display: "Fizz"}, | |
ModGuard{val: 5, display: "Buzz"}] |