forked from google/html-quiz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
146 lines (115 loc) · 4.98 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
<?xml version="1.0" encoding="utf-8"?>
<html xmlns="http://www.w3.org/1999/xhtml">
<!--
Quiz script.
Copyright 2013 Google Inc.
Written by Michal Nazarewicz <[email protected]>
This is not a Google product.
Licensed under the terms of of Creative Commons Attribution 3.0
Unported License which can be found at
http://creativecommons.org/licenses/by/3.0/deed.en
or in LICENSE.CC-BY-3 file.
-->
<head>
<title>FOSS Quiz!</title>
<meta http-equiv="content-type" content="application/xhtml+xml; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="quiz.css" />
<script type="text/javascript" src="quiz.js"></script>
<style type="text/css">
#questions {
/* Visible only in print, make sure it's hidden even if CSS
* file is not loaded. */
display: none;
}
</style>
</head>
<body>
<div id="questions">
<h1>FOSS Quiz!</h1>
<h2>People</h2>
<p>What is Linus Torvalds' native language?</p>
<p>Even thought Linus Torvalds is Finnish, his native language is
Swedish.</p>
<p>Who according to Linus Torvalds, “really is about a thousand
gnomes working in [an] under-ground caves in Swansea”?</p>
<p>It's Alan Cox.</p>
<p>What does M in RMS stand for?</p>
<p>RMS refers to Richard Stallman, and M stands for his middle
name which is Matthew.</p>
<p>UFS' magic number is based on the date 1954-01-19. Who was
born on that day to justify the use as a magic number for that
file system?</p>
<p>Marshall Kirk McKusick was born that day.</p>
<p>Who is FSF Associate Member number 1?</p>
<p>Bradley M. Kuhn is the first FSF Associate Member.</p>
<h2>Names, logos and mascots</h2>
<p>What was the original name Linus wanted to use for his
kernel?</p>
<p>Freax, but mirror maintainer where it has been first
distributed decided that Linux is better.</p>
<div>
<p>Which operating system's mascot is a pufferfish named
Puffy.</p>
<div><img src="img/puffy.png" alt="Puffy" /></div>
</div>
<p>Puffy is OpenBSD's mascot.</p>
<div>
<p>Which distribution is the oldest Linux distribution still
being maintained?</p>
<div><img src="img/tux-with-pipe.jpg" alt="Tux smoking a pipe" /></div>
</div>
<p>The oldest still distribution still being maintained is
Slackware.</p>
<p>What are the names of two followup BSD 4.3 released which
were named after popular American holiday destinations?</p>
<p>Two followup BSD 4.3 releases are Tahoe and Reno.</p>
<div>
<p>Who drew in 1984 BSD 4.2 mascot called Beastie and is now
a chief creative officer at Pixar?</p>
<div><img src="img/beastie.png" alt="Beastie" /></div>
</div>
<p>Even though McKussick holds the copyright it's John Alan
Lasseter who drew it.</p>
<h2>Licenses</h2>
<p>Which licenses third version was released on 29 of June 2007?</p>
<p>GNU General Public License.</p>
<p>What is the license Android kernel is released under?</p>
<p>Even though a lot of Android uses more permissive license,
the kernel is based on Linux and thus distributed under the
terms of the GNU General Public License version 2.</p>
<p>Name license which has a politically incorrect name and is
one of the shortest free software licenses whose legal text
consists of only one sentence.</p>
<p>Do What The Fuck you want to Public License.</p>
<p>Which international organisation, whose primary focus is
advance in physics, has released a license used by most projects
in the Open Hardware Repository?</p>
<p>CERN.</p>
<p>What are the differences between plain GNU General Public
License and Affero General Public License?</p>
<p>AGPL includes a clause requiring source code distribution of
software run as a service (eg. web applications).</p>
<h2>Misc</h2>
<p>When did the initial release of Linux happen? Give month and
year.</p>
<p>The initial Linux release happened on September 1991.</p>
<p>Which year Linus Torvalds was born.</p>
<p>Linus Torvalds was born on the year of Moon landing,
1969.</p>
<p>What is the name of a 16-bit microcomputer which was the
first architecture BSD system run on.</p>
<p>PDP-11.</p>
<div>
<p>What's the Linux-based machine which competed in 2011 on
Jeopardy against Brad Rutter and Ken Jennings winning the
first prize of $1 million.</p>
<div><img src="img/watson.jpg" alt="Watson's avatar" /></div>
</div>
<p>It's IBM's Watson.</p>
<p>Lack of access to the source code of the software controlling
which printer convinced Richard Stallman of importance of
people's freedom to study, modify and use software?</p>
<p>Xerox 9700.</p>
</div>
</body>
</html>