An open API service indexing awesome lists of open source software.

https://github.com/adjust/analytics-software-engineer-assignment


https://github.com/adjust/analytics-software-engineer-assignment

Last synced: about 1 year ago
JSON representation

Awesome Lists containing this project

README

          

# Test assignment for Analytics Software Engineer position

This repo contains Github event data for 1 hour.

Please write a CLI application that outputs:

- Top 10 active users sorted by amount of PRs created and commits pushed
- Top 10 repositories sorted by amount of commits pushed
- Top 10 repositories sorted by amount of watch events

The CLI interface definition is up to you.

This assignment must be written in Golang.
Please don't use any type of database or data processing engines (such as Apache Spark), this data should be processed by your application.

What we want to see in your solution:

Your code should be:
- Readable
- Testable
- Maintainable
- Extensible
- Modifiable
- Performant

Please be prepared to answer questions on how you achieved those goals and which trade offs you made.

Please also keep an eye on:

- Tests
- Structured, meaningful commits
- a Readme on how to run the solution