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
| function remindify() { | |
| var ss = SpreadsheetApp.openById('my-google-sheet-id'); | |
| var sheet = ss.getSheets()[0]; | |
| var cols = sheet.getMaxColumns(); | |
| var rows = sheet.getMaxRows(); | |
| var range = sheet.getRange(1,1, rows, cols); | |
| var values = range.getValues(); | |
| var to = '[email protected]'; | |
| var now = new Date(); | |
| var A_DAY_MS = 43200000; |
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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>title</title> | |
| <script> | |
| window.orgMapJustice = {}; | |
| if (navigator.userAgent.match(/MSIE/)) { | |
| window.orgMapJustice.isIE = true; | |
| } |
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
| {"feeds": [ | |
| "https://cms.marketplace.org/rss/collections/itunes_video/512", | |
| "https://www.npr.org/rss/podcast.php?id=510308", | |
| "http://www.tv.rsims2.com/rsims2feed.xml" | |
| ]} |
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
| class btree: | |
| def __init__(self, h): | |
| self.height = h | |
| self.node_count = btree.calc_node_count(h) | |
| self.head = None | |
| self.index = 1 | |
| self.found = [] | |
| @staticmethod | |
| def get_midpoints(x, y): |
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
| import math | |
| import multiprocess as mp | |
| class btree: | |
| def __init__(self, height): | |
| self.hieght = height | |
| self.node_values = btree.calc_node_values(height) | |
| self.index = 1 | |
| self.head = None | |
| self.build() |
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
| <!doctype html> | |
| <html> | |
| <head> | |
| <link href="https://rawgit.com/orangemantis/9211f856fdcfabb27ae7908b6390cbda/raw/styles.css" rel="stylesheet" media="screen"/> | |
| </head> | |
| <body> | |
| <h1>Hello World</h1> | |
| <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> | |
| <script src="https://rawgit.com/orangemantis/9211f856fdcfabb27ae7908b6390cbda/raw/index.js"></script> | |
| </body> |
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
| (function(w, d, $) { | |
| var jax = function() { | |
| } | |
| jax.prototype.getTimeStamp = function(d) { //format 03/25/2017 | |
| var dateString = ''; | |
| date = d.split('/'); | |
| var month = parseInt(date[0]) - 1; | |
| var dt = parseInt(date[1]); |
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
| (function() { | |
| var chart = function(config) { | |
| this.svg = null; | |
| this.g = null; | |
| this.colors = config.colors || ['crimson', 'coral', 'yellow', 'seagreen', 'skyblue', 'violet', 'mediumorchid']; | |
| this.height = config.height || 300; | |
| this.width = config.width || 400; | |
| this.marginTop = config.marginTop || 50; | |
| this.marginBottom = config.marginBottom || 50; | |
| this.marginLeft = config.marginLeft || 50; |
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 | data_loud_talking | data_loutering | data_horseplay | |
|---|---|---|---|---|
| 03-17-2017 | 42 | 65 | 79 | |
| 03-18-2017 | 39 | 13 | 103 | |
| 03-19-2017 | 78 | 2 | -5 | |
| 03-20-2017 | 12 | 96 | 22 | |
| 03-21-2017 | 5 | 11 | 7 | |
| 03-22-2017 | 99 | 5 | 7 | |
| 03-23-2017 | 10 | 70 | 9 | |
| 03-24-2017 | 33 | 51 | 40 | |
| 03-25-2017 | 32 | 22 | 62 |
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
| import $ from 'jquery'; | |
| class fiore { | |
| constructor(apkiKey, url) { | |
| this.apiKey = apiKey; | |
| this.url = url; | |
| this.schoolName = ''; | |
| this.school = null; | |
| } |