An open API service indexing awesome lists of open source software.

https://github.com/konloch/gematria

Java library / CLI tool for calculating the Gematria value of strings.
https://github.com/konloch/gematria

gematria java java-8 java-library

Last synced: 14 days ago
JSON representation

Java library / CLI tool for calculating the Gematria value of strings.

Awesome Lists containing this project

README

          

# Gematria
A Java library / CLI tool for calculating the Gematria value of strings.

![A screenshot of Gematria](.github/screenshot.png "Screenshot")

## 💡 Requirements
+ Java Runtime 1.8 **or higher**

## ⚙️ How To Add As Library
[Download the latest release](https://github.com/Konloch/Gematria/releases).

## 📚 Links
* [More Information On Gematria](https://en.wikipedia.org/wiki/Gematria)
* [Website](https://konloch.com/Gematria/)
* [Discord Server](https://discord.gg/aexsYpfMEf)
* [Download Releases](https://github.com/Konloch/Gematria/releases)

## 💻 Encoding Methods
+ Hebrew
+ English
+ Simple

## 💻 How To Use (CLI)
**Select the Gematria encoding methods you wish to use, then calculate the hash with the following:**
```
java -jar gematria.jar hebrew Hello World
java -jar gematria.jar english Hello World
java -jar gematria.jar simple Hello World
```

## 💻 How To Use (API)
**Select the Gematria encoding methods you wish to use, then calculate the hash with the following:**
```java
long hash = Gematria.HEBREW.encode("Hello World");
hash = Gematria.ENGLISH.encode("Hello World");
hash = Gematria.SIMPLE.encode("Hello World");
```