-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
36 lines (36 loc) · 1.59 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<script src="Runes.js"></script>
<script src="Gematria.js"></script>
<script src="LiberPrimus.js"></script>
<script src="primes.js"></script>
<script src="words.js"></script>
<script src="app.js"></script>
<link rel="stylesheet" href="app.css" />
</head>
<body>
<h3>GP PrimeView</h3>
<textarea id="in" style="min-width:800px;min-height:200px">this is an example of the gp primeview program.
the program can detect primes like this.
It can also detect emirps like patienceisavirtue and palindromic primes like R</textarea><br>
<small class="text-muted">Hover over a word below to see the GP-Sum and the type of prime it is.</small>
<table id="out"></table>
<hr>
Complete the sum with the following words:
<div id="completions"></div>
<hr>
<div>Word Total: <span id="sum"></span> <small class="text-muted">(Sum up each word GPSum)</small></div>
<div>Letter Total: <span id="suml"></span> <small class="text-muted">(Treat the text as one long word - this may differ due to combining runes like "th")</small></div>
<div>Parable Number: <span id="sump"></span> <small class="text-muted">(word sum total of each line, multiplied)</small></div>
<small class="text-muted">(max detected prime is 9,007,199,254,740,881. Primes over 1,299,709 may take longer to check.)</small>
<hr style="margin-bottom:3em">
Key:
<span class="word">Non-prime GPSum</span>
<span class="word prime">Prime GPSum</span>
<span class="word palindromic">Palindromic Prime GPSum</span>
<span class="word emirp">Emirp GPSum</span>
<span class="word reversed_prime">Reversed Prime GPSum</span>
</body>
</html>