-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapplets.html
More file actions
94 lines (84 loc) · 2.58 KB
/
applets.html
File metadata and controls
94 lines (84 loc) · 2.58 KB
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
<!DOCTYPE HTML>
<!--
Theory by TEMPLATED
templated.co @templatedco
Released for free under the Creative Commons Attribution 3.0 license (templated.co/license)
-->
<html>
<head>
<title>Applets - Boris Mesits</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="assets/css/main.css" />
</head>
<body>
<section id="banner" style="background-image: url('images/terrain.PNG');">
<header id="header">
<div class="inner">
<a href="index.html#projects" class="logo">Back to Random Stuff</a>
<nav id="nav">
</div>
<script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script>
<script id="MathJax-script" async
src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js">
</script>
</header>
<h1>Applets</h1>
<p style="color:white">
Applets I've made you can run in your browser. They are written in Python and made possible by <a style="color:white" href=https://pyscript.net/>PyScript</a>.
</p>
</section>
<!-- One -->
<section id="one" class="wrapper">
<div class="inner">
<div class="flex flex-2">
<article>
<header>
<h3>Browser Terrain Generator</h3>
</header>
<p>
This terrain generator uses a precursor of PyScript, basically pure <a href='https://github.com/iodide-project/pyodide'>
Pyodide</a>, and so is incredibly slow.
</p>
<footer>
<a href="terrain_gen.html" class="button special">Make Terrain</a>
</footer>
</article>
</div>
</div>
</section>
<!-- One -->
<section id="one" class="wrapper">
<div class="inner">
<div class="flex flex-2">
<article>
<header>
<h3>Ising Model</h3>
</header>
<p>
Run a discrete model of magnetism in your browser. Also functions as a browser CPU test.
</p>
<footer>
<a href="ising_model.html" class="button special">Ising Model Applet</a>
</footer>
</article>
</div>
</div>
</section>
<!-- Footer -->
<footer id="footer">
<div class="inner">
<div class="flex">
<div class="copyright">
© Boris Mesits. Design: <a href="https://templated.co">TEMPLATED</a>. Images: <a href="https://unsplash.com">Unsplash</a>.
</div>
</div>
</div>
</footer>
<!-- Scripts -->
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/skel.min.js"></script>
<script src="assets/js/util.js"></script>
<script src="assets/js/main.js"></script>
</body>
</html>