- jeff this is where you can write a bunch about the project
+ This is an interactive website which allows you to make graphs of the github network.
+ Currently we have three types of graphs-- the most popular of which is our friends graph.
+ The friends graphs helps you visualize clusters of friends/collaborators on GitHub.
+ This can be used to spot clusters within organizations and schools.
+
+
+ This is an open source project, all the source code can be found on github.
+ New collaborators are always welcomed; look at our github repository for contributing guidelines.
@@ -55,6 +62,8 @@
This project was completed in 24 hours for participation in BrickHack V at the Rochester Institute of Technology.
+ We hope that this project will make people more interested in learning about big data analytics.
+ The visual aspect of this website makes learning about topics such as clustering and graph databases more intuitive.
@@ -68,7 +77,7 @@
- did stuff
+ I did a large chunk of work with the backend pulling data from github and generating the graphs with visJS.
@@ -96,7 +105,7 @@
- also did stuff
+ Worked on pulling api data from github to create the mini profile display and some graphs.
@@ -124,7 +133,7 @@
- kinda did stuff
+ Worked on the front end design of the website and designed graphic art for this website.
diff --git a/public/js/profileGen.js b/public/js/profileGen.js
index 85b6f8f..8e6f972 100644
--- a/public/js/profileGen.js
+++ b/public/js/profileGen.js
@@ -45,7 +45,7 @@ function profileGen(username, container)
(user.company != null ? "
Company: "+user.company+"" : "")+
(orgsReturn != [] ? ""+orgsReturn+"" : "")+ " \
\
- "
+
";
$("#"+container).html(html);
})
}, () => {
@@ -79,8 +79,7 @@ function parseOrgs(name) {
resolve(orgs_final.join(" "));
})
}, (error) => {
- console.error("error getting orgs");
- reject(error);
+ resolve([]);
});
})
}
From 2d1a8c17373011ee4a05e9f063f6816e0a3f139f Mon Sep 17 00:00:00 2001
From: Bryce Murphy