These are the Kickstarter Engineering and Data role definitions for both teams.
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
| var p1 = { | |
| x: 20, | |
| y: 20 | |
| }; | |
| var p2 = { | |
| x: 40, | |
| y: 40 | |
| }; |
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
| angular.module('myApp', ['ionic', 'myApp.services', 'myApp.controllers']) | |
| .run(function(DB) { | |
| DB.init(); | |
| }); |
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
| [ { | |
| "Date" : "2016-07-30", | |
| "Data" : { | |
| "Moves" : [ | |
| { "ID" : 13, "Key" : "Power", "Old Value" : 15, "New Value" : 25 }, | |
| { "ID" : 14, "Key" : "Power", "Old Value" : 70, "New Value" : 120 }, | |
| { "ID" : 18, "Key" : "Power", "Old Value" : 25, "New Value" : 30 }, | |
| { "ID" : 20, "Key" : "Power", "Old Value" : 15, "New Value" : 25 }, | |
| { "ID" : 21, "Key" : "Power", "Old Value" : 35, "New Value" : 40 }, | |
| { "ID" : 22, "Key" : "Power", "Old Value" : 55, "New Value" : 80 }, |
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
| # Standalone Django script | |
| # | |
| # Ideal for quickly testing some code. | |
| # | |
| # 1. Place at the root of your project | |
| # 2. Edit the variable PROJECT_NAME | |
| # 3. Run it: python sandbox.py | |
| import os |