https://github.com/encryptex/mathcal
The mathematical calendar, which displays math-days.
https://github.com/encryptex/mathcal
calendar date datetime hacktoberfest math php
Last synced: about 1 month ago
JSON representation
The mathematical calendar, which displays math-days.
- Host: GitHub
- URL: https://github.com/encryptex/mathcal
- Owner: EncryptEx
- Created: 2023-08-12T21:07:35.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2025-07-04T13:47:32.000Z (about 1 year ago)
- Last Synced: 2025-07-04T15:15:38.954Z (about 1 year ago)
- Topics: calendar, date, datetime, hacktoberfest, math, php
- Language: PHP
- Homepage: https://mathcal.jaumelopez.dev
- Size: 133 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# MathCal
The mathematical calendar, which displays math-days.
A Math-day is a day in which its short date format combines itself creating a perfect mathematical condition.
An example is 2/2/04, which results as a math-day because it can be expressed as 2+2=4, 2*2=4, 2²=4...
## Philosophy
Since I was a kid I like to pay attention to the short date format in order to find any mathematical combinations. Now I tried it but using the help of technology
## Arquitecture
This project uses:
- Laravel (MVC)
- Tailwindcss (UI)
## Development deploy
You can set up a [LEMP](https://www.digitalocean.com/community/tutorials/how-to-install-linux-nginx-mysql-php-lemp-stack-ubuntu-18-04) (Linux, Nginx, Myssql, Php) stack (highly recommended, or XAMPP)
Then, with [composer](https://getcomposer.org/), run:
```sh
composer dump-autoload
composer install
```
If you need a quick deploy (not recommended in a long-term development), you can simply run (with php installed):
```sh
php -S localhost:80 -t public/
```
Else, with a correct LEMP/XAMP folder set up, you souhld be ready to go (remember to point website's root folder to the `public` dir of the project, laravel will do the rest).