commit 483d31cc369b6a03a1c7a66b828181e0e45ee6a3 Author: Cutieguwu Date: Mon Mar 24 13:21:50 2025 -0400 Initial Commit diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..42d1417 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,11 @@ +# To get started with Dependabot version updates, you'll need to specify which +# package ecosystems to update and where the package manifests are located. +# Please see the documentation for all configuration options: +# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file + +version: 2 +updates: + - package-ecosystem: "cargo" # See documentation for possible values + directory: "/" # Location of package manifests + schedule: + interval: "daily" diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ea8c4bf --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/target diff --git a/Cargo.lock b/Cargo.lock new file mode 100644 index 0000000..f9bbc14 --- /dev/null +++ b/Cargo.lock @@ -0,0 +1,7 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 4 + +[[package]] +name = "miller" +version = "0.1.0" diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..8edf65e --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,6 @@ +[package] +name = "miller" +version = "0.1.0" +edition = "2024" + +[dependencies] diff --git a/README.adoc b/README.adoc new file mode 100644 index 0000000..85365a3 --- /dev/null +++ b/README.adoc @@ -0,0 +1,30 @@ += miller +:toc: + +// Hello people reading the README source :) + +== Prelude + +VERY EARLY ALPHA -- NOT YET FUNCTIONAL + +For my stats course (4U Data Management) I have to interpret a bunch of data generated in class. +In an effort to not spend ages mindlessly using a calculator every summative check-in, I have started this project. + +I figured, that since I already had to digitize every note, that I was required to make by hand, from during the game, that I might as well employ a format of my own. This format, would allow me to use code to interpret the monotonous mathematics for me. Even if I don't fully complete the code, it would ease the burden by completing some of the math for me. + +== Goals + +* [ ] Data Format +* [ ] Mathematics +** [ ] Avg. Terrain Gain +** [ ] Avg. Terrain Loss +** [ ] Avg. Terrain Delta +** [ ] Avg. Offence Plays per quarter +** [ ] Avg. Offence Plays per game +** [ ] Avg. Penalties per game +* [ ] Play Trend Analysis +** [ ] Most Frequent Play +** [ ] Least Frequent Play +** [ ] Most Effective Play (Greatest Terrain Gain given sufficient data) + +== License \ No newline at end of file diff --git a/src/main.rs b/src/main.rs new file mode 100644 index 0000000..e7a11a9 --- /dev/null +++ b/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world!"); +}