-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
57 lines (56 loc) · 4.63 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<link rel="stylesheet" type="text/css" href="interjector.css"/>
<title>The Interjector</title>
</head>
<body id="interjector">
<header>
<h1>The Interjector</h1>
</header>
<main>
<h2>Fields</h2>
<form action="#">
<div class="line">
It is in fact
<input type="text" value="GNU" id="ijtr-fill-gnu"/> <label for="ijtr-fill-gnu">("G")</label> / <input type="text" value="Linux" id="ijtr-fill-linux"/> <label for="ijtr-fill-linux">("L")</label>
</div>
<div class="line">
<label for="ijtr-fill-osys">"L" is not</label>
(<input type="radio" name="option-a-an" id="ijtr-option-a"/><label for="ijtr-option-a">a</label> <input type="radio" name="option-a-an" id="ijtr-option-an" checked="checked"/><label for="ijtr-option-an">an</label>)
<input type="text" value="operating system" id="ijtr-fill-osys"/>
unto itself
</div>
<div class="line">
<label for="ijtr-fill-components">But rather...made useful by the</label>
<input type="text" value="GNU corelibs, shell utilities and vital system components" id="ijtr-fill-components" class="long"/>
</div>
<div class="line">
<label for="ijtr-fill-os">Comprising a full</label>
<input type="text" id="ijtr-fill-os" value="OS"/>
<label for="ijtr-fill-posix">as defined by</label>
<input type="text" id="ijtr-fill-posix" value="POSIX"/>
</div>
<div class="line">
<label for="ijtr-fill-project">"G" is developed by the</label>
<input type="text" id="ijtr-fill-project" value="GNU Project"/>
</div>
<div class="line">
<label for="ijtr-fill-kernel">"L" is the</label>
<input type="text" value="kernel" id="ijtr-fill-kernel"/>,
<label for="ijtr-fill-kernel-role">which is</label>
<input type="text" value="the program in the system that allocates the machine's resources to the other programs that you run" id="ijtr-fill-kernel-role" class="long"/>
</div>
</form>
<h2>Copypasta</h2>
<p>I'd just like to interject for a moment. What you're referring to as <mark class="tied-linux">Linux</mark>, is in fact, <mark class="tied-gnu">GNU</mark>/<mark class="tied-linux">Linux</mark>, or as I've recently taken to calling it, <mark class="tied-gnu">GNU</mark> plus <mark class="tied-linux">Linux</mark>. <mark class="tied-linux">Linux</mark> is not <mark class="tied-a-an">an</mark> <mark class="tied-osys">operating system</mark> unto itself, but rather another free component of a fully functioning <mark class="tied-gnu">GNU</mark> system made useful by the <mark class="tied-components">GNU corelibs, shell utilities and vital system components</mark> comprising a full <mark class="tied-os">OS</mark> as defined by <mark class="tied-posix">POSIX</mark>. Many computer users run a modified version of the <mark class="tied-gnu">GNU</mark> system every day, without realizing it. Through a peculiar turn of events, the version of <mark class="tied-gnu">GNU</mark> which is widely used today is often called "<mark class="tied-linux">Linux</mark>", and many of its users are not aware that it is basically the <mark class="tied-gnu">GNU</mark> system, developed by the <mark class="tied-project">GNU Project</mark>. There really is a <mark class="tied-linux">Linux</mark>, and these people are using it, but it is just a part of the system they use. <mark class="tied-linux">Linux</mark> is the <mark class="tied-kernel">kernel</mark>: <mark class="tied-kernel-role">the program in the system that allocates the machine's resources to the other programs that you run</mark>. The <mark class="tied-kernel">kernel</mark> is an essential part of <mark class="tied-a-an">an</mark> <mark class="tied-osys">operating system</mark>, but useless by itself; it can only function in the context of a complete <mark class="tied-osys">operating system</mark>. <mark class="tied-linux">Linux</mark> is normally used in combination with the <mark class="tied-gnu">GNU</mark> <mark class="tied-osys">operating system</mark>: the whole system is basically <mark class="tied-gnu">GNU</mark> with <mark class="tied-linux">Linux</mark> added, or <mark class="tied-gnu">GNU</mark>/<mark class="tied-linux">Linux</mark>. All the so-called "<mark class="tied-linux">Linux</mark>" distributions are really distributions of <mark class="tied-gnu">GNU</mark>/<mark class="tied-linux">Linux</mark>.</p>
</main>
<footer>
<h2>Note</h2>
<p>Source code is available on <a href="https://github.com/jack126guy/interjector">GitHub</a>.</p>
</footer>
<script type="application/javascript" src="interjector.js"></script>
</body>
</html>