96 lines
2.6 KiB
HTML
96 lines
2.6 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<link rel="shortcut icon" href="/favicon.ico">
|
|
<link rel="icon" type="image/png" href="/favicon.png" sizes="196x196">
|
|
|
|
<title>Rupus Reinefjord</title>
|
|
|
|
<style>
|
|
* {
|
|
box-sizing: border-box;
|
|
overflow-wrap: break-word;
|
|
word-wrap: break-word; /* legacy */
|
|
word-break: break-word; /* for WebKit/Chrome */
|
|
}
|
|
|
|
main {
|
|
max-width: 36rem;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
dd {
|
|
margin-top: .2rem;
|
|
margin-bottom: .7rem;
|
|
}
|
|
|
|
code, .email {
|
|
font-family: monospace, monospace;
|
|
}
|
|
|
|
#gpg-fingerprint {
|
|
font-size: small;
|
|
}
|
|
|
|
footer {
|
|
margin: 2rem 0;
|
|
text-align: center;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<main>
|
|
<h1>Rupus Reinefjord</h1>
|
|
<p>
|
|
I am a programmer currently working for
|
|
<a href="https://46elks.com">46elks</a>. I believe strongly in keeping
|
|
tech and code complexity low. I try to work with the
|
|
<a href="https://en.wikipedia.org/wiki/You_aren%27t_gonna_need_it">YAGNI</a>
|
|
principle in mind.
|
|
</p>
|
|
|
|
<h2>Some links</h2>
|
|
<ul>
|
|
<li>GitHub - <a href="https://github.com/reinefjord">reinefjord</a></li>
|
|
<li>Flickr - <a href="https://www.flickr.com/photos/koltrast_">koltrast_</a></li>
|
|
<li>Instagram - <a href="https://www.instagram.com/rupusreinefjord/">@rupusreinefjord</a></li>
|
|
</ul>
|
|
|
|
<h2>Contact me</h2>
|
|
<ul>
|
|
<li>Email - <a href="mailto:rupus(at)reinefjord(dot)net" class="email encoded" data-encoded="cnVwdXNAcmVpbmVmam9yZC5uZXQK">rupus(at)reinefjord(dot)net</a>
|
|
<li>PGP key -
|
|
<a href="/static/rupusreinefjord_pubkey.asc">
|
|
<code id="gpg-fingerprint">DA6B 0C46 A100 662F FA4A 9B0D E17E 90E2 CE1F D278</code>
|
|
</a>
|
|
</li>
|
|
</ul>
|
|
</main>
|
|
|
|
<footer>❦</footer>
|
|
|
|
<script>
|
|
function emaildecode() {
|
|
var emails = document.getElementsByClassName("encoded");
|
|
for (var i = 0; i < emails.length; i++) {
|
|
var b64 = emails[i].dataset.encoded;
|
|
var decoded = window.atob(b64);
|
|
emails[i].innerHTML = decoded;
|
|
emails[i].href = "mailto:" + decoded;
|
|
}
|
|
}
|
|
function hidenojs() {
|
|
var nojs = document.getElementsByClassName("nojs");
|
|
for (var i = 0; i < nojs.length; i++) {
|
|
nojs[i].style.display = "none";
|
|
}
|
|
}
|
|
emaildecode();
|
|
hidenojs();
|
|
</script>
|
|
</body>
|
|
</html>
|