Browse Source

Merge branch 'master' of github.com:jrtechs/github-graphs

pull/11/head
Bryce Murphy 5 years ago
parent
commit
94959d059a
2 changed files with 15 additions and 7 deletions
  1. +13
    -4
      public/about.html
  2. +2
    -3
      public/js/profileGen.js

+ 13
- 4
public/about.html View File

@ -46,7 +46,14 @@
</div>
<div id="content-body" class="container">
<p style="padding: 10px;">
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.
</p>
<p style="padding: 10px;">
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.
</p>
</div>
<div id="content-title">
@ -55,6 +62,8 @@
<div id="content-body" class="container">
<p style="padding: 10px;">
This project was completed in 24 hours for participation in <a class="plink" href="https://brickhack.io/">BrickHack V</a> 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.
</p>
</div>
<div id="content-title" style="border-radius: 20px;">
@ -68,7 +77,7 @@
</div>
<div class="card-body">
<p>
did stuff
I did a large chunk of work with the backend pulling data from github and generating the graphs with visJS.
</p>
</div>
<div class="links row text-center">
@ -96,7 +105,7 @@
</div>
<div class="card-body">
<p>
also did stuff
Worked on pulling api data from github to create the mini profile display and some graphs.
</p>
</div>
<div class="links row text-center">
@ -124,7 +133,7 @@
</div>
<div class="card-body">
<p>
kinda did stuff
Worked on the front end design of the website and designed graphic art for this website.
</p>
</div>
<div class="links row text-center">

+ 2
- 3
public/js/profileGen.js View File

@ -45,7 +45,7 @@ function profileGen(username, container)
(user.company != null ? "<li class=\"list-group-item\">Company: "+user.company+"</li>" : "")+
(orgsReturn != [] ? "<li class=\"list-group-item\">"+orgsReturn+"</li>" : "")+ " \
</ul> \
</div>"
</div>";
$("#"+container).html(html);
})
}, () => {
@ -79,8 +79,7 @@ function parseOrgs(name) {
resolve(orgs_final.join(" "));
})
}, (error) => {
console.error("error getting orgs");
reject(error);
resolve([]);
});
})
}

Loading…
Cancel
Save