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
| { | |
| "name": "JSON", | |
| "weapon": "machete", | |
| "home": "crystal lake", | |
| "likes": "kill kill kill", | |
| "hates": "you" | |
| } |
This file has been truncated, but you can view the full file.
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
| [ | |
| { | |
| "_id": "5780137d86c3e01e6396f8af", | |
| "index": 0, | |
| "guid": "fa5e60f5-e8cc-4697-8056-7c51225292b8", | |
| "isActive": false, | |
| "balance": "$2,003.16", | |
| "picture": "http://placehold.it/32x32", | |
| "age": 26, | |
| "eyeColor": "green", |
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
| // | |
| // main.m | |
| // testcode | |
| // | |
| // Created by Ron Sims II on 6/6/16. | |
| // Copyright © 2016 Ron Sims II. All rights reserved. | |
| // | |
| #import <Foundation/Foundation.h> |
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
| #!/bin/bash | |
| #A list of file names | |
| clear | |
| #Read by line to handle filenames with spaces | |
| OGIFS = $IFS | |
| IFS=$(echo -en "\n\b") | |
| myfiles=$(ls) |
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 shuffle = function(items) { | |
| var newOrder = []; | |
| var usedNumbers = {}; | |
| var i = 0; | |
| while (newOrder.length < items.length) { | |
| i++; | |
| var rando = Math.floor(Math.random() * items.length); | |
| if (!usedNumbers[rando.toString()]) { | |
| usedNumbers[rando.toString()] = 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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet" type="text/css" /> | |
| <meta name="description" content="Flashcards"> | |
| <meta charset="utf-8"> | |
| <meta name="viewport" content="width=device-width"> | |
| <title>Flashcards</title> | |
| <style id="jsbin-css"> | |
| .card-back { |
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 | close | |
|---|---|---|
| 1-May-12 | 58.13 | |
| 30-Apr-12 | 53.98 | |
| 27-Apr-12 | 67.00 | |
| 26-Apr-12 | 89.70 | |
| 25-Apr-12 | 99.00 | |
| 24-Apr-12 | 130.28 | |
| 23-Apr-12 | 166.70 | |
| 20-Apr-12 | 234.98 | |
| 19-Apr-12 | 345.44 |
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; | |
| } |
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
| (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; |