This file contains 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 __future__ import print_function | |
import os | |
import argparse | |
import boto3 | |
import time | |
# Requries 'requests' to be bundled into zip. | |
#import requests | |
REGION = None | |
DRYRUN = None |
This file contains 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
Computer Information: | |
Manufacturer: Unknown | |
Model: Unknown | |
Form Factor: Laptop | |
No Touch Input Detected | |
Processor Information: | |
CPU Vendor: GenuineIntel | |
CPU Brand: Intel(R) Core(TM) i3-3217U CPU @ 1.80GHz | |
CPU Family: 0x6 |
This file contains 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
(function() { | |
$(document).ready(function() { | |
// $("#new_water_info").validate(); | |
return $(".table-change-data input[type='number']").change(function() { | |
var root, val; | |
val = $(this).val(); | |
root = $(this).closest("td"); | |
return root.next().text(val - parseInt(root.prev().text())); | |
}); | |
}); |