-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
94 lines (94 loc) · 2.87 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
<html>
<head>
<meta content="width=device-width, initial-scale=1" name="viewport"/>
<link href="assets/css/site.css" media="screen" rel="stylesheet" type="text/css"/>
<link rel="stylesheet" media="screen" href="https://fontlibrary.org/face/metropolis" type="text/css"/>
<link href="../css/rainbow-style.css" rel="stylesheet" type="text/css"/>
<script src="lib/rainbow-custom.min.js"></script>
</head>
<body>
<header>
<a href="https://pseudoramble.com" alt="pseudoramble - home">pseudoramble</a>
</header>
<nav class="index">
<span>
<a href="/about">
About
</a>
</span>
<span>
<a href="https://github.com/pseudoramble">
Projects
</a>
</span>
<span>
<a href="https://blog.pseudoramble.com" id="blog_entry_link">
Blog
</a>
</span>
</nav>
<div class="index-content">
<section class="index-section">
<h6>
Looking to see some code?
</h6>
<ul>
<li>
<a href="https://github.com/pseudoramble/pi-day">Happy Π Day</a> - try and figure out pi yet another way, once a year.
</li>
<li>
<a href="https://github.com/pseudoramble/mockerana">Mockerana</a> - an idea inspired from a job a few years ago. Never used in production, but I like the concept anyway.
</li>
<li>
<a href="https://github.com/pseudoramble/pseudoramble.com?files=1">This site itself</a>!
</li>
</ul>
</section>
<section class="index-section">
<h6>
Looking for a little casual reading?
</h6>
Check out some of these entries I enjoy:
<ul>
<li>
<a href="https://blog.pseudoramble.com/search-trees-part-1-introduction">
Search Trees (Series - Part 1)
</a>
</li>
<li>
<a href="https://blog.pseudoramble.com/goofing-off-with-prime-number-part-1-the-sieve-of-eratosthenes">
Goofing off with Prime Numbers (Series - Part 1)
</a>
</li>
<li>
<a href="https://blog.pseudoramble.com/copy-pasta-madness">
Copy Pasta Madness
</a>
</li>
<li>
<a href="https://blog.pseudoramble.com/a-pseudo-ramble-random-number-generator">
A pseudoramble number generator
</a>
</li>
</ul>
</section>
<section>
<h6>
Interested in getting in touch?
</h6>
Feel free to <a href="mailto:[email protected]">email me</a> or check out my <a href="http://github.com/pseudoramble">Github Projects</a>.
</section>
</div>
<footer>
<a href="mailto:[email protected]">
<img alt="Email Me" class="footer-icon" src="assets/images/email-icon.png"/>
</a>
<a href="http://github.com/pseudoramble">
<img alt="Github" class="footer-icon" src="assets/images/github-icon.png"/>
</a>
<a rel="me" href="https://indieweb.social/web/@pseudoramble">
<img alt="Mastodon" class="footer-icon" src="assets/images/mastodon-icon.png"/>
</a>
</footer>
</body>
</html>