From d480b6f08b8a6b32c58e5bbdf2f193432c50fb97 Mon Sep 17 00:00:00 2001 From: William Carroll Date: Wed, 15 Jan 2020 14:18:54 +0000 Subject: [PATCH] Initialize repo Adding a README and a basic .gitignore to initialize this mono-repo. I'm quite excited about this undertaking! --- .gitignore | 6 ++++++ README.md | 9 +++++++++ 2 files changed, 15 insertions(+) create mode 100644 .gitignore create mode 100644 README.md diff --git a/.gitignore b/.gitignore new file mode 100644 index 000000000..51eb9644a --- /dev/null +++ b/.gitignore @@ -0,0 +1,6 @@ +# Haskell +*.hi +*.o + +# Python +__pycache__ diff --git a/README.md b/README.md new file mode 100644 index 000000000..e7a01960b --- /dev/null +++ b/README.md @@ -0,0 +1,9 @@ +# Mono + +This is my mono-repo. Having a personal mono-repo is a new idea for me, so at +the time of this writing, the state of this repository is fledgling. + +I'm attempting to amass a collection of functions across a variety of languages +while minimizing the costs of sharing the code across a projects. Stay tuned for +more updates as my definition of the mono-repo becomes more clear, my opinions +evolve, and my preferences change.