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
{ | |
"Version": "2008-10-17", | |
"Id": "Policy1397632521960", | |
"Statement": [ | |
{ | |
"Sid": "Stmt1397633323327", | |
"Effect": "Allow", | |
"Principal": { | |
"AWS": "*" | |
}, |
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
from flask import Flask, jsonify | |
import threading | |
import time | |
import requests | |
import json | |
app = Flask(__name__) | |
max_num_entries = 25 | |
current_entry = 0 | |
#this array will store the last 25 values of the water meter |
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
# Cassie Tarakajian, [email protected] | |
CXXFLAGS=-pedantic -Wall -Wextra -std=c++11 -Wabi -Weffc++ -Wctor-dtor-privacy -Wold-style-cast -Woverloaded-virtual -Wsign-promo | |
all: battle | |
battle: battle.cc ship.o board.o ocean_board.o target_board.o computer_player.o game_manager.o | |
ship.o: ship.h ship.cc | |
board.o: board.h ship.h board.cc |
NewerOlder