aoctl

command module
v0.0.14 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Feb 26, 2024 License: MIT Imports: 1 Imported by: 0

README

Advent of Code CLI

Go Reference codecov

This is a personal project for myself to learn more about writing CLI tools in GoLang. The idea behind this project is to help me solve the Advent of Code since I have noticed some patterns while solving them.

Disclaimer: This is yet another CLI that solves a common problem and there are probably n solutions out there. My motivation is not only to provide a CLI but to learn how to write, develop, release, and test them.

I hope you enjoy it and feel free to help me understand the best practices of writing CLI tools or GoLang packages by writing an issue or using the CONTRIBUTING.md to contribute. PRs are welcome.

Advent Of Code Series

Advent of Code is a website made by Eric Wastl. I recommend watching Advent of Code: Behind the Scenes.

The Why

Advent of Code application only cares about your solution, but there is no way to link your code and the problem at hand. The main idea of this tool is to give you a link between the application of adventofcode.com and your working space.

Alternatives

I found Advent Of Code Go and it inspired me to build my own tool and learn more GoLang.

AoC CLI Documentation

Pre-requisite

You need your session ID from the Advent of Code website. I opened an issue for this: Session ID is a manual process issue.

Puzzles

The Advent of Code puzzles have two parts. Each part has a single string input and a single output.

By that, we have to create an interface that allows us to run each solution against the input and submit the solution to the server of Advent of Code.

Commands

Init

Initialize the aoc project in your local machine.

aoc init <path> 
Version

Print current version of the cli

aoc version
Options
--path -p  Path to initialize the project
Puzzle

Get The puzzle information with the option to save it locally in the repository.

aoc puzzles [OPTIONS]
Options
-s --session (required) Advent of Code Session. You can get this in the Cookies of the website. 
-d --day (required) Day of the puzzle you want to get.
-y --year (required) Year of the puzzle you want to get.
--sync (optional) To save the puzzle locally at `<year>/<day>/puzzle.md
test

Locally test your answers. This relies that each <year>/<day> solution has its own tests.

not yet implemented

aoc test [OPTIONS]
submit

Submit your answer to the Advent of Code.

not yet implemented

aoc submit [OPTIONS]
Options
-s --session (required) Advent of Code Session. You can get this in the Cookies of the website. 
-d --day (required) Day of the puzzle you want to get.
-y --year (required) Year of the puzzle you want to get.

Documentation

The Go Gopher

There is no documentation for this package.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL