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": "1", | |
"start_time": "2013-12-30 7:45", | |
"end_time": "2013-12-30 8:21", | |
"activity": "Initial search with radio for sakis" | |
}, | |
{ | |
"id": "2", | |
"start_time": "2013-12-30 8:21", |
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
{ | |
"last_names":[ | |
"Smith", | |
"Johnson", | |
"Williams", | |
"Jones", | |
"Brown", | |
"Davis", | |
"Miller", | |
"Wilson", |
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": "Brett Stiller", | |
"URL": "http://brettstiller.xyz/?cat=6" | |
}, | |
{ | |
"Name": "Catherine Rehwinkel", | |
"URL": "http://www.catherinerehwinkel.com/itp-nyu/" | |
}, | |
{ |
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": "Robyn", | |
"number": "3543" | |
}, | |
{ | |
"name": "Opal", | |
"number": "1123" | |
}, | |
{ |
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
{ | |
"coord": { | |
"lon": -76.61, | |
"lat": 39.29 | |
}, | |
"sys": { | |
"message": 0.0441, | |
"country": "United States of America", | |
"sunrise": 1396953525, | |
"sunset": 1397000248 |
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
var employee = { | |
name: 'Jane', | |
dob: '04-09-80', | |
position: 'Art Director', | |
start_date: '10-14-2011', | |
subordinates: ['Jack','Jill','Edward'], | |
work: function(){ | |
console.log('I make stuff'); | |
}, | |
employee_id: 23452 |
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 lang="en-US"> | |
<head> | |
<meta charset="utf-8"> | |
<meta http-equiv="Content-Type" content="text/html"> | |
<!-- css and js references are just placeholders here. add your own --> | |
<link rel="stylesheet" type="text/css" media="all" href="css/style.css"> | |
<script type="text/javascript" src="js/jquery-1.10.2.min.js"></script> | |
<script type="text/javascript" src="js/myscript.js"></script> | |
<title>HTML5</title> |
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> | |
<title>The colors of weather</title> | |
<?php | |
$temp = 45; | |
$conditions = 'rain'; | |
/* |
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
{ | |
"meta": { | |
"code": 200 | |
}, | |
"response": { | |
"neighborhoods": [], | |
"venues": [{ | |
"id": "4b8aa3e1f964a520e77632e3", | |
"name": "NYU Stern School of | |
Business", |
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
<?php | |
/* | |
Add a new line to a file that contains records of names and phone numbers | |
For example, the file might be called clients.txt and look like this: | |
Chan,Roger,345-9876 | |
Garcia,Victoria,456-1234 | |
Stevens,Julie,678-9872 | |
*/ |