repo: meta stuff

This commit is contained in:
raf 2024-12-01 22:08:12 +03:00
parent 70e7647650
commit ce9cf68fdb
Signed by: NotAShelf
GPG key ID: AF26552424E53993
2 changed files with 45 additions and 0 deletions

10
LICENSE Normal file
View file

@ -0,0 +1,10 @@
MIT License
Copyright (c) 2024 NotAShelf
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

35
README.md Normal file
View file

@ -0,0 +1,35 @@
# Frozendev Challenges
A repository for storing my subpar solutions to daily challenges, if or when I
have the time to tackle them. Expect nothing but bad code, I focus on "works"
before "works well".
## Structure
This repository utilizes Cargo's workspaces feature.
```bash
├── challenges
│ └── december-2024
│ ├── c1
│ ├── c2
│ └── c3
├── lib
│ └── geometry
└── shell.nix
```
- **challenges** is where challenges will go, sorted by month and then by order.
Since challenges are not published on a specific schedule, number is
incremented whenever there is a new challenge.
- **lib** is where shared code, sorted by functionality, may go. If only one
challenge relies on a piece of code, then it may be put inside a `lib` target
or simply in `main.rs`.
- **shell.nix** is for the Nix users. It uses an _unlocked_ `<nixpkgs>`
instance, since I already lock special lookup paths in my system registry.
## License
MIT.