-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtrivia-2020-elce.py
1076 lines (916 loc) · 23.3 KB
/
trivia-2020-elce.py
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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# trivia data for the red-green game, to be imported by rg.cgi
# each question has a key that is the question number
# and value that is a list with the question and answer data
# that is: tdata[qnum][0] = question text
# tdata[qnum][1] = green answer
# tdata[qnum][2] = red answer
# tdata[qnum][3] = both answer
# tdata[qnum][4] = answer code
# tdata[qnum][5] = answer text
# the question text and answer text may include format
# strings to reference images, like so: %(image_url)s
#
# any bare percents need to be escaped '%' -> '%%'
#
# single quotes are escaped. This is not needed inside """ blocks
# by python, but vim doesn't handle it and if not escaped it messes
# up vim's syntax highlighting.
#
#
tdata = {
1: [
"""
[Warmup question] What is the latest official Linux kernel?
<br>
<img src="%(image_url)s/tux.png" height="100">
""",
"v5.9.3",
"v5.10-rc1",
"",
"red",
"""
The latest official kernel available is the latest release candidate
from Linus Torvalds.
<p>
Release candidates aren\'t "released" kernels, but they are official.
Besides - the current release kernel is 5.9.1, not 5.9.4
""",
],
2: [
"""
Microsoft has begun shipping the Linux kernel to many of their
Windows customers.
<p>
<img src="%(image_url)s/mslogo.jpg" height="80">
""",
"True",
"False",
"",
"green",
"""
Microsoft's Windows Subsystem for Linux (WSL) version 2 includes a "real",
Linux kernel, and can be used to run Linux apps on Windows 10.
<p>
Source:
<ul>
<li>https://www.howtogeek.com/424886/windows-10s-linux-kernel-is-now-available/
</ul>
""",
],
3: [
"""
<table><tr><td>
The famous Book of Kells is an "Illuminated Manuscript" created in the
9th century. Where can you view it today?
</td><td>
<img src="%(image_url)s/book-of-kells.jpg" height="150">
</td></tr></table>
""",
"Abbey of Kells",
"Trinity College Library",
"National Museum of Ireland",
"red",
"""
<table><tr><td>
<img src="%(image_url)s/trinity-college-library.jpg" height="100">
</td><td>
The Book of Kells is housed in the Trinity College Library (but not in the "Long Hall", pictured here). The book is famous for its elaborate artwork, and is
considered one of Ireland\'s greatest cultural treasures.
</td></tr></table>
<p>
Source:
<ul>
<li>https://www.tcd.ie/visitors/book-of-kells/
</ul>
""",
],
4: [
"""
There has been work recently to remove what obnoxious code
pattern from the Linux kernel?
""",
"comma separated statements (e.g. <i>a=1,b=2;</i>)",
"variable length arrays (e.g. <i>u8 s[bsize*2];</i>)",
"",
"green",
"""
In August 2020, some coccinelle scripts were written to find examples
of these, and a set of patches produced to try to eliminate these from
the kernel. For the record, VLAs were eliminated in 2018 (making them
old news)
<p>
Sources:
<ul>
<li>https://lore.kernel.org/lkml/alpine.DEB.2.22.394.2008201856110.2524@hadrien/
<li>https://www.phoronix.com/scan.php?page=news_item&px=Linux-Kills-The-VLA
</ul>
""",
],
5: [
"""
<table><tr><td>
What noted science fiction author created the 3 laws of robotics?
</td><td>
<img src="%(image_url)s/robot.jfif" height="150">
</td></tr></table>
""",
"Arthur C. Clark",
"Isaac Asimov",
"John W. Campbell",
"red|both",
"""
Isaac Asimov attributed the Three Laws to John W. Campbell, from a
conversation that took place on 23 December, 1940. But I can\'t in
good conscience exclude Asimov from the answer.
<p>
Source:
<ul>
<li>https://en.wikipedia.org/wiki/Three_Laws_of_Robotics
</ul>
""",
],
6: [
"""
Isaac Asimov wrote which epic science fiction series of novels?
<br>
<img align="center" src="%(image_url)s/asimov.jpeg" height="100">
""",
"Dune",
"Foundation",
"",
"red",
"""
<table><tr><td>
The Foundation series describes the fall of the galactic empire.
Frank Herber wrote Dune. Both series will be available in video form
in 2021!
</td><td>
<img src="%(image_url)s/foundation-book.jpg" height="150">
</td></tr></table>
<p>
Source:
<ul>
<li>https://en.wikipedia.org/wiki/Foundation_(TV_series)
</ul>
<p align="center">
<i>Note: you can <u>read</u> them now!</i>
""",
],
7: [
"""
The 5.8 kernel consists of 69,325 files and 28442673 lines of code.
How many files were in the first release of Linux in 1991?
<p>
<img src="%(image_url)s/linux-1991.jpg" height="100">
""",
"37 files",
"88 files",
"",
"red",
"""
The first release of Linux had 88 files.
<p>
Source:
<ul>
<li>2020 Kernel History Report:
https://www.linuxfoundation.org/wp-content/uploads/2020/08/2020_kernel_history_report_082720.pdf
</ul>
""",
],
8: [
"""
Scientists recently demonstrated a device that harvests usable
electricity from "Brownian current" at room temperature, with no
moving parts and no heat transfer.
<p>
<img src="%(image_url)s/brownian-current.jpeg" height="100">
""",
"True",
"False",
"",
"green",
"""
In a demonstration of "stochastic thermodynamics", the
scientists use one-way diodes and the ripple of Brownian current in
graphene to produce an electrical charge capable of putting a load on
a resistor.
<p>
<img src="%(image_url)s/graphene-electricity-harvester.PNG" height="150">
<p>
Source:
<ul>
<li>https://phys.org/news/2020-10-physicists-circuit-limitless-power-graphene.html
</ul>
<p align="center">
<i>What will those crazy scientists think of next!!</i>
""",
],
9: [
"""
How many emails were sent to the Linux Kernel Mailing List (LKML) in 2019?
<p>
<img src="%(image_url)s/full-mailbox.jpeg" height="100">
""",
"more than 400,000",
"less than 400,000",
"",
"red",
"""
There were "only" about 350,000 emails on LKML for the calendar year 2019.
<p>
Source:
<ul>
<li>2020 Kernel History Report:
https://www.linuxfoundation.org/wp-content/uploads/2020/08/2020_kernel_history_report_082720.pdf
</ul>
<p align="center">
<i>It gives new meaning to the phrase "You've got mail!"</i>
""",
],
10: [
"""
<table><tr><td>
What is the official name of the character that "The
Mandalorian" protects?
</td><td>
<img src="%(image_url)s/baby-yoda.png" height="150">
</td></tr></table>
""",
"Baby Yoda",
"The Child",
"Kuill",
"red",
"""
Although fans named the character "Baby Yoda", the child is never
referred to by that name in the series.
<p>
<img src="%(image_url)s/mandalorian.png" height="150">
<p>
Source:
<ul>
<li>https://www.starwars.com/news/quiz-how-well-do-you-know-the-mandalorian-season-one
</ul>
<p align="center">
<i>Parenting can be difficult - especially when the Empire
is trying to kill you.</i>
""",
],
11: [
"""
In a computing breakthrough, a group of scientists recently
constructed a half-adder computer circuit using only 3 nanowires,
rather than transistors. The circuit uses about 1/10th the power of
one using electrons.
<p>
What is the name of the quantum item that the circuit uses to carry signals?
""",
"Phonon",
"Magnon",
"",
"red",
"""
A magnon is a quasi-particle, and is a quanta of spin-wave. The waves
are formed by distortions in the magnetic order of a solid material on
the quantum level.
<p>
<img src="%(image_url)s/magnon-circuit.jpg" height="150">
<p>
Source:
<ul>
<li>https://techxplore.com/news/2020-10-circuit-pure-magnons.html
</ul>
<p align="center">
<i>Admit it. You thought I made those words up.</i>
""",
],
12: [
"""
<table><tr><td>
What is the closest that Linux has gotten to the planet Mars?
</td><td>
<img src="%(image_url)s/mars.jpg" height="150">
</td></tr></table>
""",
"0 kilometers (on the surface)",
"250 kilometers",
"7.4 million kilometers",
"red",
"""
Cubesats running Linux deployed in low Mars orbit in November of 2018.
A Tesla car (running Linux?) has an orbit that occasionally gets close
to Mars. It recently passed within 8 million kilometers of the
planet.
<table><tr><td>
<img src="%(image_url)s/cubesat-over-mars.jpg" height="100">
</td><td width="20%%">
</td><td>
<img src="%(image_url)s/Roadster_Earth.png" height="100">
</td></tr></table>
<p>
None of the Mars landers have incorporated Linux.
<p>
Sources:
<ul>
<li>http://linuxgizmos.com/cubesats-that-confirmed-mars-insight-landing-feature-embedded-linux-com/
<li>https://www.livescience.com/starman-tesla-mars-approach.html
</ul>
""",
],
13: [
"""
In 2019, there were over 4,200 contributors to the Linux kernel. In
what year did the number of contributors first surpass 1000?
<p>
<img src="%(image_url)s/developer-conference.jpg" height="100">
""",
"2005",
"2010",
"",
"green",
"""
The total number of contributors to the Linux kernel since 1991 is
over 15,000, with about 4000 developer participating in each
individual release
<p>
Source:
<ul>
<li>2020 Kernel History Report:
https://www.linuxfoundation.org/wp-content/uploads/2020/08/2020_kernel_history_report_082720.pdf
</ul>
""",
],
14: [
"""
<table><tr><td>
The movie Tenet incorporates elements from which of these ancient
puzzle devices?
</td><td>
<img src="%(image_url)s/tenet_poster_scaled.jpg" height="200">
</td></tr></table>
""",
"the Sator square",
"the Scriptum cube",
"the Antikythera mechanism",
"green",
"""
<table><tr><td>
All of the words of the Sator square are used in the movie. The
square can be read forwards and backwards, which ties in with the
theme of the movie.
</td><td valign="middle">
<img src="%(image_url)s/Sator_Square.jpg" height="100">
</td></tr></table>
<p align="center">
<i>My understanding is that in Europe you can see movies now.</i>
""",
],
15: [
"""
What language, besides C and assembly, has recently been discussed as
being possibly supported for kernel development?
<table><tr><td>
<img src="%(image_url)s/go-logo.png" height="80">
</td><td width="10%%">
</td><td>
<img src="%(image_url)s/rust-logo.png" height="80">
</td><td width="10%%">
</td><td>
<img src="%(image_url)s/c++-logo.png" height="80">
</td></tr></table>
""",
"Go",
"Rust",
"C++",
"red",
"""
Linus said that kernel developers are looking at having interfaces so
that a driver could be written in Rust. The kernel core would
continue to only allow C and assembly.
<p>
<img src="%(image_url)s/rust-logo.png" height="100">
<p>
Source
<ul>
<li>https://www.theregister.com/2020/06/30/hard_to_find_linux_maintainers_says_torvalds/
<li>https://lwn.net/Articles/829858/
</ul>
<p align="center">
<i>If you answered "C++", may God have mercy on your soul!</i>
""",
],
16: [
"""
The Civil Infrastructure Platform intends to maintain their Super Long
Term Support Linux kernel for how many years?
<p>
<img src="%(image_url)s/cip-logo.png" height="80">
""",
"10 years",
"20 years",
"",
"green",
"""
<table><tr><td>
The CIP project currently plans 10 years of support. However, there is
talk of needing to maintain some kernels deployed in civil
infrastructure for up to 50 years.
</td><td>
<img src="%(image_url)s/10-years.jpeg" height="100">
</td></tr></table>
<p>
Source:
<ul>
<li>https://www.cip-project.org/wp-content/uploads/sites/17/2018/10/CIP_Whitepaper_10.19.18.pdf
<li>Upstream first is our principle - session at ELCE
https://static.sched.com/hosted_files/osseu2020/4e/Oct26_UpstreamFirstIsOurPrincipleTowardSuperLongTermSupport.pdf
</ul>
""",
],
17: [
"""
<table><tr><td>
The original RoboCop used what operating system?
</td><td>
<img src="%(image_url)s/robocop.png" height="120">
</td></tr></table>
""",
"DOS",
"Amiga OS",
"",
"green",
"""
As can be seen in the 1987 movie, the boot sequence includes
command.com, config.sys, and other DOS-related files.
<p>
Source:
<table><tr><td valign="middle">
<ul>
<li>This screenshot:
</ul>
</td><td>
<img src="%(image_url)s/robocop-boot.png" height="200">
</td></tr></table>
<p align="center">
<i>DOS can run in 640K - Can Linux do that?</i>
""",
],
18: [
"""
When is the millionth commit expected to be accepted into the Linux kernel?
<p>
<img src="%(image_url)s/million.jpeg" height="60">
""",
"before March 2021 ",
"after March 2021",
"",
"green",
"""
It already happened, in August of 2020. It was mentioned in Jim Zemlin's
keynote.
<p>
Source:
<ul>
<li> https://www.zdnet.com/article/commit-1-million-the-history-of-the-linux-kernel/
</ul>
""",
],
19: [
"""
In September it was announced that ARM Holdings was set to be acquired
by what company?
<p>
<img src="%(image_url)s/arm-chip.jpeg" height="100">
""",
"SoftBank",
"NVidia",
"",
"red",
"""
NVidia has offered to acquire ARM Holdings <i>from</i> SoftBank
for $40 billion.
<p>
Source:
<ul>
<li>https://arstechnica.com/gadgets/2020/09/nvidia-reportedly-to-acquire-arm-holdings-from-softbank-for-40-billion/
</ul>
<p align="center">
<i>No one has ever offered me $40 billion for anything :-(</i>
""",
],
20: [
"""
After many years of mostly-successful fundraising, in 2020 Wikipedia
broke down and accepted government funding, under strict policy that
it not interfere with editorial decision-making.
<p>
<img src="%(image_url)s/wikipedia-logo.jpeg" height="80">
""",
"True",
"False",
"",
"red",
"""
Wikipedia still does not accept government funding. However, several
companies have matching gifts programs that donate substantial support
to the Wikimedia foundation. Also, they did announce some changes to
their page design coming in the near future (before their 20th
anniversary in 2021).
<p>
Source:
<ul>
<li>https://diff.wikimedia.org/2020/09/23/wikipedia-is-getting-a-new-look-for-the-first-time-in-10-years-heres-why/
</ul>
<p align="center">
<i>Keep the information coming!!</i>
""",
],
21: [
"""
Google has announced a new thing that seems pertinent to our times.
Which is it?
""",
"A new device that will automatically record audio and video and notify your emergency contacts, if you are involved in a traffic stop",
"A service to stay on hold and alert you when a live operator comes on a telephone call",
"",
"red",
"""
Google\'s service is called "Hold for Me". Amazon is releasing a
product called the Ring Dash Cam, which has a "Traffic Stop",
feature as described.
<p>
Sources:
<ul>
<li>https://www.theverge.com/2020/9/25/21454772/amazon-ring-car-cam-traffic-stop-police-accountability
<li>https://techcrunch.com/2020/09/30/a-new-google-assistant-feature-hold-for-me-waits-on-hold-so-you-dont-have-to/
</ul>
<p align="center">
<i>Is it just me, or are people getting lazy?</i>
""",
],
22: [
"""
A glasses-free "holographic" display, which uses eye tracking
and the Unreal game engine to present a 3-dimensional view to the
user, just came on the market.
<p>
<img src="%(image_url)s/hologram-car.png" height="100">
""",
"True",
"False",
"",
"green",
"""
The Sony "Spatial Reality Display" costs $5000, and is targeted at
industrial and commercial designer. It does both parallax and
occlusion based on eye position, and shows different images for each
eye using a lenticular display.
<p>
<img src="%(image_url)s/sonysrd.jpg" height="100">
<p>
Sources:
<ul>
<li>https://www.theverge.com/circuitbreaker/2020/10/15/21518679/sony-spacial-reality-display-hands-on-holographic-elf-sr1
<li>https://www.engadget.com/sony-spatial-reality-display-3d-glasses-free-010029316.html
</ul>
""",
],
23: [
"""
<table><tr><td>
Microsoft has announced plans to allow users to convert their Windows
System for Linux into a standalone product capable of running Windows
applications. This product would still require a Windows license by
the consumer.
</td><td>
<img src="%(image_url)s/windows-system-for-linux.png" height="300">
</td></tr></table>
""",
"True",
"False",
"",
"red",
"""
There have recently been stories that Microsoft would base future
versions of Windows on Linux, but they are currently just speculation.
<p>
Source:
<ul>
<li>https://www.computerworld.com/article/3438856/call-me-crazy-but-windows-11-could-run-on-linux.html
</ul>
<p align="center">
<i>Credulity has its limits.</i>
""",
],
24: [
"""
Which Sith Lord said: "I am altering the deal. Pray I don\'t alter it
any further"?
<table><tr><td>
<img src="%(image_url)s/darth-vader.jpg" height="150">
</td><td width="20%%">
</td><td>
<img src="%(image_url)s/darth-sidious.jpg" height="150">
</td></tr></table>
""",
"Darth Vader",
"Darth Sidious",
"",
"green",
"""
Darth Vader breaks his word to Lando Calrisian about letting Princess
Leia and Wookie stay in cloud city under Lando\'s supervision.
<p>
<img src="%(image_url)s/darth-vader-cloud-city.jpg" height="100">
<p align="center">
<i>Do NOT invite this guy to dinner.</i>
""",
],
25: [
"""
How old is the Yocto Project?
<p>
<img src="%(image_url)s/yocto-project-logo.png" height="100">
""",
"10 years old",
"12 years old",
"",
"green",
"""
The official announcement of the Yocto Project was made at ELC Europe
in Cambridge, UK in October of 2010.
<p>
<img src="%(image_url)s/10-years.jpeg" height="100">
<p>
Source:
<ul>
<li>Tim Bird - I was there
<li>Also, it was announced in this ELCE\'s keynote address on Monday
</ul>
<p align="center">
<i>Happy Birthday Yocto!!!</i>
""",
],
26: [
"""
<table><tr><td valign="middle">
Who has the most code in the linux kernel?
</td><td>
<img src="%(image_url)s/coder.jfif" height="100">
</td></tr></table>
""",
"Linus Torvalds",
"Alex Duecher",
"Hawking Zhang",
"red",
"""
According to cregit for 5.7, it is Alex. Linus said he doesn\'t do
much programming anymore (he\'s more like a manager), and even these
stats for pre-git probably include lots of source from other people.
<p>
<img src="%(image_url)s/authors-cregit.PNG" height="100">
<p>
Source:
<ul>
<li>https://cregit.linuxsources.org/code/5.7/
</ul>
<p align="center">
<i>Linus is such a slacker!</i>
""",
],
27: [
"""
A significant security exploit in the "spectre" family is called what?
<p>
<img src="%(image_url)s/zombie-hand.jfif" height="100">
""",
"Zombieland",
"Zombieload Attack",
"",
"red",
"""
<table><tr><td>
ZombieLand is a movie
</td><td>
<img src="%(image_url)s/zombieland.jpg" height="100">
</td><td>
<font size="+1"> <b>is not</b> </font>
</td><td>
<img src="%(image_url)s/zombieload.jpg" height="100">
</td></tr></table>
""",
],
28: [
"""
One of the interesting features of the Dublin Convention Center is:
<p>
<img src="%(image_url)s/dublin-convention-center.jpg" height="100">
""",
"The facility has breakout rooms can be rotated into the main keynote auditorium",
"The conference center was the first carbon-neutral constructed event center in the world",
"",
"red",
"""
The conference center was built with sustainability in mind and is
very energy efficient. Low-carbon cement was used during its
construction, and carbon offsets were purchased for all unavoidable
carbon use. The conference center in Edinburgh Scotland has rotating
breakout rooms.
<p>
Source:
<ul>
<li> https://www.theccd.ie/news?i=188
</ul>
""",
],
29: [
"""
Can the Linux scheduler can take into account the thermal status of a
processor?
<p>
<img src="%(image_url)s/hot-cpu.jfif" height="100">
""",
"Yes",
"No",
"",
"green",
"""
As of kernel v5.7, there is a new "Thermal Pressure" API and
thermal governors in the kernel, which can help shift processing from
overheated CPUs.
<p>
Source:
<ul>
<li>http://lwn.net/Articles/788380
</ul>
""",
],
30: [
"""
After 13 long years out-of-tree, the PREEMPT_RT patch set is now
poised to be accepted into mainline. The initial kconfig entry has
already been accepted.
<p>
<img src="%(image_url)s/stopwatch.jfif" height="100">
""",
"True",
"False",
"",
"green",
"""
The kconfig entry for PREEMPT_RT was added in the 5.3 kernel. See
kernel/Kconfig.preempt.
<p>
<img src="%(image_url)s/shark-with-laser.jpg" height="150">
<p align="center">
<i>It's about <u>time</u>! See what I did there?</i>
""",
],
31: [
"""
Despite being bitten by a penguin, Linus Torvalds likes penguins.
<p>
<img src="%(image_url)s/penguin-suspects.jpg" height="140">
""",
"True",
"False",
"",
"green",
"""
Linus was bitten by a penguin
in 1993 while in Australia for a
speaking engagement. But he\'s OK with them now.
<p>
Source:
<ul>
<li>https://fossbytes.com/why-is-the-penguin-tux-the-official-mascot-of-linux-because-torvalds-had-penguinitis/
</ul>
""",
],
32: [
"""
What was Linux first called:
<p>
<img src="%(image_url)s/linus.png" height="100">
""",
"Linus\' Unix",
"Freax",
"",
"red",
"""
Yeah. Really.
<p>
Source:
<ul>
<li>https://en.wikipedia.org/wiki/History_of_Linux
</ul>
<p align="center">
<i>And to think, we could have had the "Embedded Freax Conference"</i>
""",
],
33: [
"""
Which of the following quotes did Rusty Russel have in his e-mail
signature?
""",
"\"There are those who do and those who hang on and you don\'t see too many doers quoting their contemporaries.\" -- Larry McVoy",
"\"Anyone who quotes me in their sig is an idiot.\" -- Rusty Russell",
"",
"red|green",
"""
Both answers are acceptable. Rusty has had both of these as his
signatures at different times.
""",
],
34: [
"""
The Linux Foundation has become the home to many open source projects.
How many LF projects are there currently?
<p>
<img src="%(image_url)s/Linux-Foundation_logo.png" height="80">
""",
"about 120",
"about 180",
"",
"red",
"""
It\'s hard to count, since new projects are created regularly.
<p>
There are 177 projects listed here:
https://www.linuxfoundation.org/projects/directory/ and there are some
I\'m aware of that are not listed.
""",
],
35: [
"""
On average, how many patches per hour were contributed to the Linux
5.7 release?
<p>
<img src="%(image_url)s/assembly-line.jfif" height="100">