-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkeyboards.html
66 lines (60 loc) · 1.9 KB
/
keyboards.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8"/>
<title>David Harvey-Macaulay :: Keyboards</title>
<style>
body {
background: #f0f0f0;
color: #2e3436;
font-family: 'DejaVu Sans', sans-serif;
margin: auto;
max-width: 40em;
padding-bottom: 30px;
}
h1 {
text-align: center;
padding: 20px;
}
img {
border: solid 1px #2e3436;
display: block;
margin: auto;
max-width: 40em;
}
img#me {
width: 40%;
margin-bottom: 30px;
}
img#shadow {
margin-bottom: 30px;
}
p {
text-align: justify;
}
</style>
</head>
<body>
<h1>Mechanical keyboards</h1>
<p>I have collected a total of five mechanical keyboards. The Unicomp is my
favourite but I only use it at home due to the noise!</p>
<h2>Home keyboard</h2>
<p><a href="https://www.pckeyboard.com/page/product/UNI041A">Unicomp Classic 101</a> with
buckling spring switches, kindly donated to me by Bryan Law-Smith.</p>
<h2>Work keyboard</h2>
<p>Filco Majestouch-2 TKL with Cherry MX Blue switches and
<a href="https://matt3o.com/dev-tty-keycaps-in-all-their-glory/">/dev/tty</a> keycaps.</p>
<h2>Other keyboards</h2>
<ul>
<li>DAS keyboard with Cherry MX Brown switches, also donated to me by Bryan Law-Smith.</li>
<li>KB Paradise V80TKL Vintage with Cherry MX Clear switches.</li>
<li>Cooler Master Masterkeys S with Cherry MX Green switches.</li>
</ul>
<h2>Layout</h2>
<p>All but the DAS keyboard have the US/ANSI key layout. I prefer this to the UK
layout since the syntax of programming languages seem to be designed with this
layout in mind. Having lived in the US for a year I got used to this layout too.
I map the dollar sign to sterling to get the £ symbol:</p>
<p><code>xmodmap -e 'keysym dollar = sterling'</code></p>
</body>
</html>