diff options
author | William Carroll <wpcarro@gmail.com> | 2020-01-15T14·18+0000 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2020-01-15T14·21+0000 |
commit | d480b6f08b8a6b32c58e5bbdf2f193432c50fb97 (patch) | |
tree | 6ef4fd119d2742110d1315bb4683b493001a640d |
Initialize repo
Adding a README and a basic .gitignore to initialize this mono-repo. I'm quite excited about this undertaking!
-rw-r--r-- | .gitignore | 6 | ||||
-rw-r--r-- | README.md | 9 |
2 files changed, 15 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 000000000000..51eb9644acd7 --- /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 000000000000..e7a01960b87c --- /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. |