Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/algebraic-sofia/quack
🦆 | A quake log parser (it's for an interview)
https://github.com/algebraic-sofia/quack
Last synced: 3 months ago
JSON representation
🦆 | A quake log parser (it's for an interview)
- Host: GitHub
- URL: https://github.com/algebraic-sofia/quack
- Owner: the-sofi-uwu
- Archived: true
- Created: 2023-07-29T17:56:12.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-07-31T16:03:03.000Z (over 1 year ago)
- Last Synced: 2024-07-07T01:10:49.314Z (4 months ago)
- Language: Go
- Homepage:
- Size: 8.79 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Quack
A quake log parser to analyze kill score points
## How to Run
Before running Quack, you need to have golang installed on your system. Once you have it set up you
can follow these steps:1. Clone the repository
```
> git clone https://github.com/algebraic-sofia/quack
```2. Navigate to the project and run with a file in the standard input
```
> cd quack
> cat log.txt | go run cmd/quack/main.go
```## Running tests
Quack comes with a set of tests to ensure it's working. To run these tests you simply need to run
the following command:```
> go test -v internal/*
```