#Tower of Teamwork Group Icebreaker (AKA Sugar Rush Tower)
##Form groups of 3-5, depending on the team temperment ##Supplies Supplies help make the game, so be creative! ###Supply Ideas (More candy = Better)
- Gum Drops
- Toothpicks
- Paper Clips
- Straws
APP_ENV=local | |
APP_KEY=base64:8zSA/oa9UlXd1Nem/uP/OFgjQFA/93lptumMK67fAAY= | |
APP_DEBUG=true | |
APP_LOG_LEVEL=debug | |
APP_URL=http://localhost | |
DB_CONNECTION=mysql | |
DB_HOST=127.0.0.1 | |
DB_PORT=3306 | |
DB_DATABASE=homestead |
APP_ENV=local | |
APP_KEY=base64:8zSA/oa9UlXd1Nem/uP/OFgjQFA/93lptumMK67fAAY= | |
APP_DEBUG=true | |
APP_LOG_LEVEL=debug | |
APP_URL=http://localhost | |
DB_CONNECTION=mysql | |
DB_HOST=127.0.0.1 | |
DB_PORT=3306 | |
DB_DATABASE=homestead |
<?php | |
/** | |
* Class Car | |
* | |
* @property integer fuelType fuel value | |
*/ | |
class Car { | |
private $data = array(); |
<?xml version="1.0"?> | |
<project name="ENOM PRO!" default="local" basedir="."> | |
<property name="name" value="eNom PRO"/> | |
<!-- Remember to pad the License header version # when the number of digits changes | |
Or, just make the next major version # 3.0.00 | |
--> | |
<property name="version" value="3.0.05"/> | |
<property name="build_temp_dir" value="${project.basedir}/build"/> | |
<property name="build_dir" value="${build_temp_dir}"/> | |
<target name="debug"> |
describe('Person Unit Tests', function (){ | |
var person; | |
beforeEach(function (){ | |
person = require("../models/")["Person"]; | |
}); | |
it('Should run', function (){ | |
expect(true).toBe(true); | |
}); | |
it('Should fetch tables', function (done){ | |
person.create({name: "Bob"}).then(function (){ |
//REQUIRE INQUIRER | |
var inquirer = require('inquirer'); | |
//CONSTRUCTOR FUNCTION FOR CREATING Player OBJECTS | |
function Player(name, position, offense, defense) { | |
this.name = name, | |
this.position = position, | |
this.offense = offense, | |
this.defense = defense, | |
//FLIPS A COIN: IF THE THE VALUE IS EQUAL TO 0 THEN this.offense GOES UP BY ONE. IF THE VALUE IS EQUAL TO 1 |
#Tower of Teamwork Group Icebreaker (AKA Sugar Rush Tower)
##Form groups of 3-5, depending on the team temperment ##Supplies Supplies help make the game, so be creative! ###Supply Ideas (More candy = Better)
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Sign-Up Today!</title> | |
<!-- Bootstrap --> | |
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous"> | |
</head> | |
<body> |
// Initialize Firebase (YOUR OWN APP) | |
// Set Initial Counter | |
var initialValue = 100; | |
var clickCounter = initialValue; | |
// -------------------------------------------------------------- | |
// At the initial load, get a snapshot of the current data. |
// Initialize Firebase (YOUR OWN APP) | |
// Create a variable to reference the database | |
// Use the below Initial Value | |
var initialValue = 100; | |
// Use the below variable clickCounter to keep track of the clicks. |