-
Notifications
You must be signed in to change notification settings - Fork 20
/
index.html
111 lines (96 loc) · 3.41 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<html>
<head>
<title>Free 15C RPN Scientific Calculator</title>
<link href="style.css" rel="stylesheet" type="text/css">
<style type="text/css">
#calcframe {
float: right;
}
#calc {
border-style: none;
}
kbd {
padding: 2px 4px;
white-space: nowrap;
color: #000;
background: #eee;
border-width: 1px 3px 3px 1px;
border-style: solid;
border-color: #ccc #aaa #888 #bbb;
}
</style>
<script type="text/javascript" src="web/jquery-1.4.2.min.js"></script>
<script type="text/javascript">
//<![CDATA[
$(document).ready(function() {
$("#calc").click(function(e) {
window.open("web/hp15c.html", "HP15C", "width=692,height=447,resizable=yes");
e.preventDefault();
});
});
//]]>
</script>
</head>
<body>
<h1>Free 15C RPN Scientific Calculator</h1>
<div id="navbar"><ul><li><a href="/">Home</a></li><li><a href="about.html">About</a></li><li><a href="links.html">Links</a></li><li><a href="http://github.com/ghewgill/hp15c">Source</a></div>
<p>
This is a simulator for the <a href="http://www.hpmuseum.org/hp15.htm">HP-15C</a> advanced scientific programmable calculator.
</p>
<div id="calcframe"><a href="web/hp15c.html" id="calc"><img src="images/15-small.jpg" width="346" height="224"></a></div>
<h2>Online version</h2>
<noscript>This calculator requires Javascript to be enabled in your browser.</noscript>
<p>Click on the calculator image to open the calculator window.</p>
<ul>
<li><kbd>h</kbd> shows help labels for keyboard use</li>
</ul>
<h2>Download</h2>
<p>
The calculator is also avalable as a downloadable application for various platforms.
The downloadable version is (usually) faster than the web version and supports clipboard copy and paste.
</p>
<div class="platform">
<h3>iOS</h3>
<div class="platbody">
<table><tr><td><a href="https://itunes.apple.com/us/app/free-15c/id583559000?ls=1&mt=8"><img src="Download_on_the_App_Store_Badge_US-UK_135x40.png" width="135" height="40" /></a></td><td>(the app is called "Retro 15C" on the App Store because Apple doesn't allow the word "Free" in the app name)</td></tr></table>
</div>
</div>
<div class="platform">
<h3>Windows</h3>
<div class="platbody">
<li><a href="HP15C-win32-install.exe">Windows EXE Installer (and uninstaller)</a> (5 MB)</li>
<li><a href="HP15C.zip">Windows zip file of executables only (no installer)</a> (6 MB)</li>
</div>
</div>
<div class="platform">
<h3>Mac OS X</h3>
<div class="platbody">
<li><a href="HP15C.dmg">Mac OS X disk image</a> (10 MB)</li>
<li><a href="HP15C.wdgt.zip">Mac OS X dashboard widget</a> (0.5 MB)</li>
</div>
</div>
<div class="platform">
<h3>Java</h3>
<div class="platbody">
<li><a href="HP15C.jar">Java Swing desktop app (JAR)</a> (1 MB)</li>
</div>
</div>
<div class="platform">
<h3>Other</h3>
<div class="platbody">
<p>
For other platforms, you can download the <a href="http://github.com/ghewgill/hp15c">source code</a> and build it yourself.
The Qt version is portable to any platform which supports Qt.
</p>
</div>
</div>
<h2>Disclaimer</h2>
<p>
<small>This calculator application should be considered experimental and its results should not be used for anything important.
In particular, there are situations where the numeric display is known to be totally wrong.</small>
</p>
<p>
<small>This web site and software is not associated with HP or is subsidiaries. HP and the HP logo are trademarks of HP.</small>
</p>
</body>
</html>