Skip to content

Instantly share code, notes, and snippets.

View aksh555's full-sized avatar

Akshara Prabhakar aksh555

View GitHub Profile

P Akshara | @aksh555 | CHAOSS | GSoC Work Product

Project Abstract

Augur is a Flask based prototyping web stack for CHAOSS metrics. It provides structured data mined from various sources like git repositories, mailing lists and issue trackers using a plugin architecture incorporating other open-source metrics projects like Facade and FOSSology. Augur enables users to keep track of the activities happening across the repositories they care about and compare their performance. The main goals of this project are to detect anomalies in various metrics with focus on text messages, discussion comments (on the basis of sentiment and novelty) and developer activity in the open-source community and notify the community managers at the earliest; providing API endpoints for the required metrics.

@aksh555
aksh555 / week1.cpp
Created October 8, 2019 02:37
IEEE-codebuddy
bool large(string x,string y)
{
return (x+y) > (y+x);
}
string Solution::largestNumber(const vector<int> &A) {
int i,z(0);
int n = A.size();
vector<string>X;