Skip to content

Instantly share code, notes, and snippets.

View chasestarr's full-sized avatar
🎒
""

Chase Starr chasestarr

🎒
""
View GitHub Profile
{ action: 'deleted',
installation:
{ id: 1843,
account:
{ login: 'chasestarr',
id: 5317799,
avatar_url: 'https://avatars.githubusercontent.com/u/5317799?v=3',
gravatar_id: '',
{
"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",
"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",
class Geo {
PVector location, speed, acceleration;
Geo[] theArray;
Geo(PVector loc, PVector spd, Geo[] myArray) {
location = loc;
speed = spd;
theArray = myArray;
}
///////////// Main Tab:
Mover m;
Attractor a;
void setup() {
size(400, 400);
background(0);
m = new Mover(100, 100);
a = new Attractor(200, 200);
}
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){
@chasestarr
chasestarr / cheatSheet.html
Created January 13, 2015 17:40
online artists cheat sheet
<!--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 -->