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
{ action: 'deleted', | |
installation: | |
{ id: 1843, | |
account: | |
{ login: 'chasestarr', | |
id: 5317799, | |
avatar_url: 'https://avatars.githubusercontent.com/u/5317799?v=3', | |
gravatar_id: '', |
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
{ | |
"action":"created", | |
"installation":{ | |
"id":1819, | |
"account":{ | |
"login":"chasestarr", | |
"id":5317799, | |
"avatar_url":"https://avatars.githubusercontent.com/u/5317799?v=3", | |
"gravatar_id":"", | |
"url":"https://api.github.com/users/chasestarr", |
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
"issue":{ | |
"url": "https://api.github.com/repos/chasestarr/ideas/issues/6", | |
"repository_url": "https://api.github.com/repos/chasestarr/ideas", | |
"labels_url": "https://api.github.com/repos/chasestarr/ideas/issues/6/labels{/name}", | |
"comments_url":"https://api.github.com/repos/chasestarr/ideas/issues/6/comments", | |
"events_url":"https://api.github.com/repos/chasestarr/ideas/issues/6/events", | |
"html_url":"https://github.com/chasestarr/ideas/issues/6", | |
"id":183302671, | |
"number":6, | |
"title":"gitvid", |
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 Geo { | |
PVector location, speed, acceleration; | |
Geo[] theArray; | |
Geo(PVector loc, PVector spd, Geo[] myArray) { | |
location = loc; | |
speed = spd; | |
theArray = myArray; | |
} | |
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 Tab: | |
Mover m; | |
Attractor a; | |
void setup() { | |
size(400, 400); | |
background(0); | |
m = new Mover(100, 100); | |
a = new Attractor(200, 200); | |
} |
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 searchYelp = function(params, callback){ | |
yelp.search(params, function(e,res){ | |
// console.log(res); | |
if(e) return console.log(e); | |
var center = [res.region.center.latitude, res.region.center.longitude]; | |
//Map api response to format readable by mapbox | |
var businessData = res.businesses.map(function(element){ | |
var coordObj = element.location.coordinate; | |
var output = readDB(element.id, function(tableStatus){ |
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
<!--This is a comment :-) | |
Anything in this tag will not be read by the computer --> | |
<!-- Remember to include the html tag! it contains the rest of your code --> | |
<html> | |
<!-- info in the head will not show to the user, but it is read by the computer --> | |
<head> | |
<!-- This is the title for your website --> |
NewerOlder