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
| Jepsen | |
| * client w/# of threads running on test machine | |
| * nemesis - orchestration of the faults on the nodes | |
| * operations that.... | |
| onyx-peers.jobs.basic-test | |
| * jobs | |
| * no nemesis | |
| * close |
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
| Onyx code walkthrough 2/14/2016 | |
| with Michael, Gardner, Bridget | |
| * onyx.peer.min-peers-test | |
| - most basic test | |
| - every test needs onyx.api last - loads all defmethods | |
| - min-peers need = # tasks | |
| - put channels in atoms | |
| - so fresh channels every time you reload | |
| - onyx-id - us UUID so there are not collisions in tests |
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
| Onyx release process walkthrough Feb 21, 2016 - Michael Drogalis, Gardner Vickers, Bridget Hillyer | |
| * project.clj in onyx-core repo | |
| * Release onyx-core, want to release all the other plugins so versions match | |
| * catch problematic patches in core before they affect the plugins | |
| * Plugins: include a 4th verison # so they can be released separate from core |
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 'rubygems' | |
| require 'sinatra' | |
| require 'JSON' | |
| post '/bridget-fn' do | |
| request.body.rewind | |
| b = request.body.read | |
| stuff = JSON.parse(b) | |
| stuff["n"] = stuff["n"] + 1 | |
| JSON.generate(stuff) |
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
| #!/usr/bin/env boot | |
| #tailrecursion.boot.core/version "2.5.0" | |
| (set-env! | |
| :project | |
| 'hoplon-reveal-js | |
| :version | |
| "0.2.0-SNAPSHOT" | |
| :dependencies |