├── .gitignore ├── .gitmodules ├── README.md └── art ├── art.cdr ├── comp-rowing-session.ai ├── fonts ├── 3000.TTF ├── ACQUAINT.TTF ├── ADDICT.TTF ├── Acidd.ttf ├── Adresack.ttf ├── POR2.TTF ├── a_d_mono.ttf └── auderpau.ttf └── logo.png /.gitignore: -------------------------------------------------------------------------------- 1 | ### node ee ### 2 | # Logs 3 | logs 4 | *.log 5 | # anther comment 6 | # Runtime data 7 | pids 8 | *.pid 9 | *.seed 10 | 11 | # Directory for instrumented libs generated by jscoverage/JSCover 12 | lib-cov 13 | 14 | # Coverage directory used by tools like istanbul 15 | coverage 16 | 17 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) 18 | .grunt 19 | 20 | # node-waf configuration 21 | .lock-wscript 22 | 23 | # Compiled binary addons (http://nodejs.org/api/addons.html) 24 | build/Release 25 | 26 | # Dependency directory 27 | # https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git 28 | node_modules 29 | 30 | Backup_of_*.cdr 31 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "waterbug-device"] 2 | path = waterbug-device 3 | url = https://github.com/codefoster/waterbug-device.git 4 | [submodule "waterbug-ui"] 5 | path = waterbug-ui 6 | url = http://github.com/codefoster/waterbug-ui 7 | [submodule "waterbug-server"] 8 | path = waterbug-server 9 | url = http://github.com/codefoster/waterbug-server 10 | [submodule "waterbug-presentation"] 11 | path = waterbug-presentation 12 | url = https://github.com/codefoster/waterbug-presentation 13 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # waterbug 2 | An app for helping you win on your WaterRower 3 | 4 | #project status 5 | Waterbug is coming along, but there's still a lot to do. We would love for you to help. Email me at jeremy.foster@microsoft.com if you have any questions. 6 | The bulk of the work is likely to be in the UI - that is the [waterbug-client project](http://github.com/codefoster/waterbug-client). It's written in Angular 2.0. 7 | The server component ([waterbug-server](http://github.com/codefoster/waterbug-server)) is currently very simple and only acts as a socket server passing all messages to all other clients. It's essentially a passthru. 8 | The device component is not well tested yet. Rowing strokes can be simulated in the UI, so there's no need to have actual rowers to work on the project. 9 | -------------------------------------------------------------------------------- /art/art.cdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefoster/waterbug/50064907c605bbdfac4a4da81dbd605893484a3a/art/art.cdr -------------------------------------------------------------------------------- /art/comp-rowing-session.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefoster/waterbug/50064907c605bbdfac4a4da81dbd605893484a3a/art/comp-rowing-session.ai -------------------------------------------------------------------------------- /art/fonts/3000.TTF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefoster/waterbug/50064907c605bbdfac4a4da81dbd605893484a3a/art/fonts/3000.TTF -------------------------------------------------------------------------------- /art/fonts/ACQUAINT.TTF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefoster/waterbug/50064907c605bbdfac4a4da81dbd605893484a3a/art/fonts/ACQUAINT.TTF -------------------------------------------------------------------------------- /art/fonts/ADDICT.TTF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefoster/waterbug/50064907c605bbdfac4a4da81dbd605893484a3a/art/fonts/ADDICT.TTF -------------------------------------------------------------------------------- /art/fonts/Acidd.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefoster/waterbug/50064907c605bbdfac4a4da81dbd605893484a3a/art/fonts/Acidd.ttf -------------------------------------------------------------------------------- /art/fonts/Adresack.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefoster/waterbug/50064907c605bbdfac4a4da81dbd605893484a3a/art/fonts/Adresack.ttf -------------------------------------------------------------------------------- /art/fonts/POR2.TTF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefoster/waterbug/50064907c605bbdfac4a4da81dbd605893484a3a/art/fonts/POR2.TTF -------------------------------------------------------------------------------- /art/fonts/a_d_mono.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefoster/waterbug/50064907c605bbdfac4a4da81dbd605893484a3a/art/fonts/a_d_mono.ttf -------------------------------------------------------------------------------- /art/fonts/auderpau.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefoster/waterbug/50064907c605bbdfac4a4da81dbd605893484a3a/art/fonts/auderpau.ttf -------------------------------------------------------------------------------- /art/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefoster/waterbug/50064907c605bbdfac4a4da81dbd605893484a3a/art/logo.png --------------------------------------------------------------------------------