
5 Nov
2013
5 Nov
'13
12:35 a.m.
* Simon Hengel
Or maybe just integrating GitHub stars is the way to go? If this leads to more stars for Haskell projects on GitHub, this would also help to promote Haskell in the large open source community!
That's a great idea! The github url can be derived by checking the homepage url and the source repository location for the right pattern. (At least one of these should point to github.) Then we just need to send a GET request at http://api.github.com/repos/:owner/:repo/stargazers and parse the JSON response. To avoid the delay while loading the page, I guess it's better to do this asynchronously on the client side. Anyone cares to write this piece of javascript? Roman