Adding newton and cryptocurrencies to main pipeline

This commit is contained in:
Alex Epstein 2017-07-27 20:49:48 -04:00
parent be3f334856
commit c7cda07954
5 changed files with 24 additions and 2 deletions

View File

@ -69,6 +69,19 @@ crypt -d [encrypted file] [output file] # decrypts files
</div>
## Cryptocurrency
Converts Cryptocurrency based on realtime exchange rates
<div align="center">
<img max-height="500px" max-width="500px" src="https://github.com/alexanderepstein/Bash-Snippets/blob/master/cryptocurrency/cryptocurrency.png?raw=true">
</div>
If you want to bypass to guided input you can pass in 3 arguments and it will run from there
ex.```currency [baseCurrency] [exchangeToCurrency] [amountBeingExchanged]```
so a valid use case would be ```currency BTC USD 12.35```
## Currency
@ -108,6 +121,15 @@ Quick search that grabs relevant information about a movie
</div>
## Newton
Performs numerical calculations all the way up to symbolic math parsing.
<div align="center">
<img max-height="500px" max-width="500px" src="https://github.com/alexanderepstein/Bash-Snippets/blob/master/newton/newton.png?raw=true">
</div>
## Qrify

Binary file not shown.

Before

Width:  |  Height:  |  Size: 44 KiB

After

Width:  |  Height:  |  Size: 43 KiB

View File

@ -1,7 +1,7 @@
#!/usr/bin/env bash
# Author: Alexander Epstein https://github.com/alexanderepstein
currentVersion="1.15.2"
declare -a tools=(currency cryptocurrency stocks weather crypt movies taste short geo cheat ytview cloudup qrify siteciphers todo)
declare -a tools=(currency cryptocurrency stocks weather newton crypt movies taste short geo cheat ytview cloudup qrify siteciphers todo)
declare -a extraLinuxTools=(maps)
declare -a extraDarwinTools
usedGithubInstallMethod="0"

BIN
newton/newton.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 104 KiB

View File

@ -1,6 +1,6 @@
#!/usr/bin/env bash
# Author: Alexander Epstein https://github.com/alexanderepstein
declare -a tools=(currency cryptocurrency stocks weather crypt movies taste short geo cheat ytview cloudup qrify siteciphers todo)
declare -a tools=(currency cryptocurrency stocks weather newton crypt movies taste short geo cheat ytview cloudup qrify siteciphers todo)
all="1"
askUninstall()