Add and update Calculator app

This commit is contained in:
Logic Kenzie 2023-09-25 10:20:56 -05:00
parent 5992b4da0d
commit 91c4417d89
3 changed files with 9 additions and 3 deletions

3
.gitmodules vendored
View file

@ -1,3 +1,6 @@
[submodule "src/pages/speedtest"] [submodule "src/pages/speedtest"]
path = src/pages/speedtest path = src/pages/speedtest
url = https://git.ixvd.net/logically.cc/speedtest url = https://git.ixvd.net/logically.cc/speedtest
[submodule "src/pages/calc"]
path = src/pages/calc
url = https://git.ixvd.net/logically.cc/calc

1
src/pages/calc Submodule

@ -0,0 +1 @@
Subproject commit a568258c25860e5553ecd4626e178c297cfd2f65

View file

@ -1,14 +1,16 @@
--- ---
title: Calculator title: Calculator
category: Utility category: Utility
status: Planned status: Online
source: https://git.ixvd.net/logically.cc/calc source: https://git.ixvd.net/logically.cc/calc
layout: ../../layouts/primary.astro layout: ../../layouts/primary.astro
--- ---
# Calculator # Calculator
```For when the calculator on your phone is too much hassle, so you google "Calculator" and go to the 4th page``` ```For when the calculator on your phone is too much hassle, so you google "Calculator" and go to the 4th page```
## Planned Features ## Features
- Addition, Subtraction, Multiplication, Division - Addition, Subtraction, Multiplication, Division
- Uses text field as well as buttons - Uses text field as well as buttons
- Doesn't use `eval()` but rather uses a parser - Uses "safe eval"
[Open App](/calc)