amandasaurus / biblecode

Find equidistant letter sequences in texts

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Bible Code finder

In 1997 Michael Drosnin published The Bible Code, a book about bible codes, or equidistant letter sequences. This programme helps you find and search for them.

Installation

Usage

Getting some sample data

This command will download the King James Bible from Project Gutenberg, remove the header & footer, save it in a file kjv.txt. This file (or any plain text file) can be searched.

curl  https://www.gutenberg.org/ebooks/10.txt.utf-8 | sed -n '/^\*\*\* START OF THIS PROJECT GUTENBERG EBOOK/,/^\*\*\* END OF THIS PROJECT GUTENBERG EBOOK/p' 10.txt.utf-8 | sed  -e '1d' -e '$d' > kjv.txt

Looking for a string

cargo run FILENAME_TO_SEARCH.txt STRING_TO_SEARCH_FOR

Copyright

This is currently available under the GNU Affero GPL. If you'd like a different licence, please contact Rory McCann rory@technomancy.org

About

Find equidistant letter sequences in texts

License:GNU Affero General Public License v3.0


Languages

Language:Rust 100.0%