This repository has been archived by the owner on Jan 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
iicalc.html
56 lines (56 loc) · 3.23 KB
/
iicalc.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<html>
<head>
<!--Stylesheet-->
<link rel="stylesheet" type="text/css" href="styles.css">
<script src="jquery-1.10.2.js"></script>
<script src="https://widget.battleforthenet.com/widget.js" async></script>
<link rel="apple-touch-icon" sizes="120x120" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/manifest.json">
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5">
<meta name="theme-color" content="#ffffff">
<title>IICalc | TurboWafflz</title>
</head>
<body>
<embed class="banner" src='banner.html'>
<hr>
<div class="logo">
<b><h1 onclick='window.href("https://turbowafflz.github.io")' style="color:red; text-align:center; font-family:monospace;">TurboWafflz</h1></b>
</div>
<hr>
<!--Buttons-->
<div id="buttons">
<a href="nojs.html">No JavaScript?</a>
</div>
<script>
$(function(){
$("#buttons").load("buttons.html");
});
</script>
<hr style="height:5px;">
<br>
<center><h3>ImaginaryInfinity Calculator</h3></center>
ImaginaryInfinity Calculator is designed to have an intuitive CLI resembling that of Texas Instruments calculators. To preform another operation on a result, simply type the operation you wish to preform (eg. "/5" to divide the previous result by 5). The calculator will also run some Python 3 commands for more advanced functions (importing libraries is unfortunately not currently supported). To enable complex number support, simply type "complex on".
<br><br>
<b>To run locally, type: </b><code>python3 main.py</code> into a terminal in the same folder as the script.
<div id="fancyButtons" style="display:none;">
<center><button style='background-color: dodgerblue; color:white; width:300px;' onclick='window.open("https://imaginaryinfinity-calculator.turbowafflz.repl.run/")' >Try it online</button></center>
<center><button style='background-color: green; color:white; width:300px;' onclick='window.open("https://github.com/TurboWafflz/ImaginaryInfinity-Calculator/archive/master.zip")'>Download (requires Python 3)</button></center>
<center><button style='background-color: blue; color:white; width:300px;' onclick='window.open("https://github.com/TurboWafflz/ImaginaryInfinity-Calculator")'>Browse the source code</button></center>
<br><br>
</div>
<noscript>
<a href="https://imaginaryinfinity-calculator.turbowafflz.repl.run/">Try it online</a>
<a href="https://github.com/TurboWafflz/ImaginaryInfinity-Calculator/archive/master.zip">Download</a>
<a href="https://github.com/TurboWafflz/ImaginaryInfinity-Calculator">Browse the source code</a>
</noscript>
<script>
document.getElementById('fancyButtons').style.display='block';
</script>
<footer>
<hr style="height:5px;">
<embed src="copyright.html">
</footer>
</body>
</html>