-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
59 lines (49 loc) · 2.07 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
<!DOCTYPE html>
<html lang='en'>
<head>
<title>Interneting is easy -- Evert</title>
</head>
<body>
<!-- Content goes here -->
<h1>My name is Evert.</h1>
<p>Adding some links and <a href='images.html'>images</a>.</p>
<p>This section is about links! There are three kinds of links:</p>
<ul>
<li>Absolute links, like to
<a href='https://developer.mozilla.org/en-US/docs/Web/HTML' target='_blank'>Mozilla
Developer Network</a>, which is a very good resource for web
developers.
</li>
<li>
Relative linusk, like to our <a href='misc/extras.html'>extras page</a>.
</li>
</ul>
<h2>Love for cycling and hpv:</h2>
<p>
My main bike is a velomobile (a faired recumbent bike). I enjoy the efficiency: fantastic to cruise at high speeds powered solely by human power. The rowing bike is a fantastic workout and when feeling funky there always is the unicycle!
</p>
<p>An unordered list of my bikes</p>
<ul>
<li>DF velomobile (by IntercityBike)</li>
<li>Thys 209 rowing bike</li>
<li>Unicycle</li>
<li>Decathlon foldy bike</li>
<li>Thompson gravel race bike</li>
</ul>
<h3>Geeky stuff:</h3>
<p>
Using <em>linux</em> since 2008 as main operating system. I love <strong>open source</strong> and the power of a terminal.
<br/>
Using dvorak keyboard layout on a mechanical keyboard with loud blue switches. Firefox with ublock origin to browse the interenet. I enjoy tinkering with electronics and micro-controllers like the esp8266 in my free time.
</p>
<hr/>
<p>An ordered list of <em><strong>linux distributions</strong></em> I used throughout time</p>
<ol>
<li>Suse</li>
<li>Gentoo</li>
<li>Debian</li>
<li>Arch linux</li>
<li>(k)Ubuntu</li>
</ol>
</body>
</html>