-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
4170 lines (3127 loc) · 112 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
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
<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta name="GENERATOR" content="Mozilla/4.75 [en] (Win95; U) [Netscape]">
<title>York Campus Folklore</title>
</head>
<body bgcolor="#FFFFFF" link="#555555" vlink="#000000" alink="#000000">
<h1>
<a href="index.html"><img SRC="folklore-icon.gif" ALT="" align=BOTTOM width="31" height="33"></a>York
Campus Folklore</h1>
<hr><img SRC="greendot14.gif" ALT="*" width="14" height="14" ><font size=+1><a href="index.html">Folklore
Index Page</a></font>
<hr>
<h2>My version of Kipper(Now folklore)</h2>
<blockquote>Welcome to the University of York Folklore pages, or at least the version retrieved from kipper.york.ac.uk by Gareth ('Jez') Simkins in 2001, and given to me, Benedict Ibbs, to host.
<p> These pages will, hopefully, provide the backbone for a campus history database which I am currently in the process of developing. ETA for the new version is likely to be end of Summer term 2002, dependent on my time, a smooth, leagal transfer of copyrighted materials, and further submissions. Included in the re-write will be a submissions form, full search facilities and cross-referencing, and a more modern look and feel.
<p> Update 14/4/2002: Robert Gipson, a plant engineer with Yorkshire water, got in touch with me to point ount the inaccuracies in the item about Siwards Tower. Page has been updated. Thanks Robert!
</blockquote>
<h2>
Disclaimer</h2>
<blockquote>All web pages on kipper.york.ac.uk are unofficial and are in
no way endorsed by the University of York. Opinions and information on
the folklore pages is not provided by the University, but by the contributors
and editors.
<p>Extreme effort has been made to ensure that information on these pages
is correct and legal, however no responsibility is accepted by the authors
or the University for death or injury or loss of any kind resulting directly
or indirectly from accesses to these pages.
<p>All comments regarding these pages should be addressed to
<a href="mailto:[email protected]">[email protected]</a>
in the first instance.</blockquote>
<h2>
Contents</h2>
<h3>
<a href="#key">Key to Listed Legends</a></h3>
<h3>
<a href="#buildings">Buildings</a></h3>
<ul>
<li>
<b><a href="#genbuild">General</a></b></li>
<li>
<b><a href="#subuild">Student Union Building</a></b></li>
<li>
<b><a href="#centralhall">Central Hall</a></b></li>
<li>
<b><a href="#library">Library</a></b></li>
<li>
<b><a href="#chemwatertower">Chemistry Watertower</a></b></li>
<li>
<b><a href="#wateronhill">Water Tower on Hill</a></b></li>
<li>
<b><a href="#biolclock">Biology Clock Tower</a></b></li>
<li>
<b><a href="#newbio">New Biology Building</a></b></li>
<li>
<b><a href="#physicsbuild">Physics</a></b></li>
<li>
<b><a href="#compscibuild">Computer Science</a></b></li>
<li>
<b><a href="#jackdanials">Sir Jack Lyons</a></b></li>
<li>
<b><a href="#bleachfield">Bleachfield</a></b></li>
<li>
<b><a href="#km">Kings' Manor</a></b></li>
</ul>
<h3>
<a href="#landscape">Landscape Features</a></h3>
<ul>
<li>
<b><a href="#lake">The Lake</a></b></li>
<li>
<b><a href="#bridges">The Bridges</a></b></li>
<li>
<b><a href="#siward">Siward's Howe</a></b></li>
<li>
<b><a href="#hesgard">Heslington Hall Gardens</a></b></li>
<li>
<b><a href="#sculp">Sculptures</a></b></li>
<li>
<b><a href="#covered">Covered and Uncovered Walkways</a></b></li>
<li>
<b><a href="#signs">Signs</a></b></li>
<li>
<b><a href="#uniroadunderpass">University Road Underpass</a></b></li>
<li>
<b><a href="#quiet">The Quiet Place</a></b></li>
<li>
<b><a href="#landmisc">Miscellaneous</a></b></li>
</ul>
<h3>
<a href="#depts">Departments and People</a></h3>
<ul>
<li>
<b><a href="#teaching">General Teaching</a></b></li>
<li>
<b><a href="#physics">Physics</a></b></li>
<li>
<b><a href="#compsci">Computer Science</a></b></li>
<li>
<b><a href="#compserv">Computing Services</a></b></li>
<li>
<b><a href="#biology">Biology</a></b></li>
<li>
<b><a href="#electronics">Electronics</a></b></li>
<li>
<b><a href="#chemistry">Chemistry</a></b></li>
<li>
<b><a href="#english">English</a></b></li>
<li>
<b><a href="#maths">Maths</a></b></li>
<li>
<b><a href="#psyc">Psychology</a></b></li>
<li>
<b><a href="#history">History</a></b></li>
</ul>
<h3>
<a href="#colleges">Colleges Etc</a></h3>
<ul>
<li>
<b><a href="#colgen">General</a></b></li>
<li>
<b><a href="#derwent">Derwent</a></b></li>
<li>
<b><a href="#langwith">Langwith</a></b></li>
<li>
<b><a href="#alcuin">Alcuin</a></b></li>
<li>
<b><a href="#c4">College 4</a></b></li>
<li>
<b><a href="#vanbrugh">Vanbrugh</a></b></li>
<li>
<b><a href="#goodricke">Goodricke</a></b></li>
<li>
<b><a href="#wentworth">Wentworth</a></b></li>
<li>
<b><a href="#james">James</a></b></li>
<li>
<b><a href="#halifax">Halifax</a></b></li>
</ul>
<h3>
<a href="#wildlife">Wildlife</a></h3>
<h3>
<a href="#students">Students</a></h3>
<ul>
<li>
<b><a href="#su">Student Union</a></b></li>
<li>
<b><a href="#socs">Student Societies</a></b></li>
<li>
<b><a href="#media">Campus Media</a></b></li>
<li>
<b><a href="#studmisc">Misc</a></b></li>
</ul>
<h3>
<a href="#porters">Porters</a></h3>
<h3>
<a href="#misc">Misc</a></h3>
<h3>
<a href="#links">Links to more York Folklore</a></h3>
<h2>
<a NAME="key"></a>Key to Listed Legends</h2>
Each item of campus folklore is placed into one of the following categories:
<dl compact>
<dt>
<b>T.</b></dt>
<dd>
true, beyond reasonable doubt</dd>
<dt>
<b>Tb.</b></dt>
<dd>
believed true, but not conclusively proven</dd>
<dt>
<b>F.</b></dt>
<dd>
complete falsehood</dd>
<dt>
<b>Fb.</b></dt>
<dd>
believed false, but not conclusively disproven</dd>
<dt>
<b>U.</b></dt>
<dd>
unanswered and may be unanswerable</dd>
</dl>
Folklore for which we have additional information have a ``<b>*</b>'' in
addition to the category.
<h2>
<a NAME="buildings"></a>Buildings</h2>
<h3>
<a NAME="genbuild"></a>General</h3>
<dl compact>
<dt>
<b>Fb.</b></dt>
<dd>
The horrible grey buildings used to be a lovely white. (And only started
to go grey in the 70's.)</dd>
<dt>
<b>Tb.</b></dt>
<dd>
The horrible grey buildings used to be a lovely grey.</dd>
<dt>
<b><a href="buildings.html">F. *</a></b></dt>
<dd>
The concrete panels were designed with a life expectancy of 30 years. (This
was in 1963 or so).</dd>
<dt>
<b>U.</b></dt>
<dd>
The University holds a large stockpile of spare concrete panels just in
case. There are sufficient to build another block or so.</dd>
<dt>
<b>Fb.</b></dt>
<dd>
In the sixties when the campus was planned, there was a lot of student
political activity - occupying buildings and the like. The lack of large
central facilities at York was meant to stop this happening, Rowntree's
were keen that `their' University would be a quiet place.</dd>
</dl>
<h3>
<a NAME="subuild"></a>Student Union Building</h3>
<dl compact>
<dt>
<b>T.</b></dt>
<dd>
The SU building was converted from a pair of squash courts.</dd>
<dt>
<b>Tb.</b></dt>
<dd>
Due to the inquoracy of UGMs, the SU building wasn't named for more than
a year after completion. One of the proposed names for the SU building
was "Clean Pancake Building". This was supposed to capture the mood of
the students at the time (1994). Students were apathetic and without direction.
"Clean Pancake" is meaningless and was part of a computer generated phrase.
This meaningless captures the apathy of the students.</dd>
<dt>
<b>T.</b></dt>
<dd>
The SU building used to be called the ``Vaseline Building'', named after
the well-known petroleum jelly product. This was voted through a UGM by
members of the Athletics Union. The AU subsequently won £6,000 from
the makers of Vaseline, for ``most original advertising of the year''.
(<b>T.</b> The following year, the AU won the same competition, run by
Halifax, by floating a raft with a big `X' on it down the Ouse, on the
day of the Halifax conversion into a bank. One of the exec. even changed
his name by deed poll from `Antony Gareth Elliott' to `Antony Halifax BUSA
Elliott'.)</dd>
<dt>
<b>T.</b></dt>
<dd>
Is now (1997) called the ``Daw Suu'' Building. Named after a Burmese pro-democracy
activist.</dd>
<dt>
<b>U.</b></dt>
<dd>
The SU building is also referred to as the ``Student Centre'', since it
meant that the signs with abbreviations for Squash Court need not be changed.</dd>
</dl>
<h3>
<a NAME="centralhall"></a>Central Hall</h3>
<dl compact>
<dt>
<b>T.</b></dt>
<dd>
No dancing allowed.</dd>
<dt>
<b>Fb.</b></dt>
<dd>
Will topple into lake anyway.</dd>
<dt>
<b>F.</b></dt>
<dd>
Top bit is designed to lift up.</dd>
<dt>
<b>F.</b></dt>
<dd>
It is in fact a flying saucer that cannot take off because it is stuck
in all that duck shit.</dd>
<dt>
<b>F.</b></dt>
<dd>
Last band to play were the <a href="b-rats.html">Boomtown Rats</a>. The
audience jumping up and down caused structural damage.</dd>
<dt>
<b>T.</b></dt>
<dd>
They did however damage the orchestra pit cover.</dd>
<dt>
<b><a href="b-rats.html">Tb. *</a></b></dt>
<dd>
The Boomtown Rats was an all-seated gig and fire regulations for a seated
gig then prevented dancing, which St. Bob was told. He got people to dance,
and the SU were sued by the University for allowing him to break the regulations.
The SU then sued St. Bob.</dd>
<dt>
<b>Fb.</b></dt>
<dd>
The acoustic tiles on the ceiling are on upside down and therefore absorb
sound rather than reflecting it back in.</dd>
<dt>
<b>Tb.</b></dt>
<dd>
The acoustics were found to be so bad after the place was built, that a
special active speaker system had to be designed and installed. All the
funny tubes hanging from the ceiling are microphones for the system.</dd>
<dt>
<b>Fb.</b></dt>
<dd>
The active speaker system was so far ahead of its time, it is totally crap
and is never used.</dd>
<dt>
<b>T.</b></dt>
<dd>
When the projector was first used (by National Film Theatre), some of the
roof beams blocked the screen.</dd>
</dl>
<h3>
<a NAME="library"></a>Library</h3>
<dl compact>
<dt>
<b>T.</b></dt>
<dd>
Before the current building, the library was in Heslington Hall.</dd>
<dt>
<b>F.</b></dt>
<dd>
Built without regard for weight of books.</dd>
<dt>
<b>Fb.</b></dt>
<dd>
Sliding down the hill into the road - look out for the mystery markers
in the pavement outside.</dd>
<dt>
<b>Tb.</b></dt>
<dd>
The cellar under the library used to be a rifle range.</dd>
<dt>
<b>T.</b></dt>
<dd>
Books for the Vanbrugh Rotten Book sale have been kept under the library.</dd>
<dt>
<b>F.</b></dt>
<dd>
Plans for underground car park abandoned at some stage due to weight of
books necessitating stronger foundations. (<b>T.</b> It was found to cost
less to build the library on the hillside.)</dd>
<dt>
<b>Fb.</b></dt>
<dd>
The extension was built onto the back of the library to stop it falling
down the hill.</dd>
<dt>
<b>U.</b></dt>
<dd>
Two students were caught having sex in the microfilm room. (This story
appeared in the campus press apparently, we'll try and track down more).</dd>
<dt>
<b>Tb.</b></dt>
<dd>
Due to the acoustics of the library, even if you fart quietly, it can be
heard clearly.</dd>
<dt>
<b>T.</b></dt>
<dd>
The library snack bar used to be inside the building.</dd>
<dt>
<b>Tb.</b></dt>
<dd>
The snack bar was closed by the then VC because staff and students were
meeting there. (This was during some student unrest). There was such a
fuss they had to build a new one outside - you can see the paving slabs
continue from the outside to the inside.)</dd>
</dl>
<h3>
<a NAME="chemwatertower"></a>Chemistry Water Tower (aka the mushroom)</h3>
<dl compact>
<dt>
<b>Fb.</b></dt>
<dd>
Built without regard for weight of water. Some evidence for this is in
its shape - it looks like there should have been a tall cylinder added
on top of the mushroom of the same diameter at the top bit.</dd>
<dt>
<b>Tb.</b></dt>
<dd>
Is slowly sinking into the ground. (The pipe at the bottom has to be reattatched
every few years.)</dd>
<dt>
<b>Tb.</b></dt>
<dd>
Prof. Heavens has been to the top.</dd>
<dt>
<b>U.</b></dt>
<dd>
A RAG stunt once involved breakfast on top.</dd>
<dt>
<b>T.</b></dt>
<dd>
The <a href="http://www.york.ac.uk/~socs3/">Caving Club</a> have been up
there, and have some great pictures to prove it.</dd>
<dt>
<b>Fb.</b></dt>
<dd>
Not built high enough, therefore providing insufficient pressure.</dd>
<dt>
<b>U.</b></dt>
<dd>
It is believed that the architect designed this to symbolise the use of
psychedelic mushrooms during the 60s.</dd>
<dt>
<b><a href="watertower.html">Tb. *</a></b></dt>
<dd>
The mushroom can and does hold water and is actually used by the Dept as
a primary source of water.</dd>
<dt>
<b>U.</b></dt>
<dd>
When the mushroom was first floodlit York police were inundated with UFO
sightings.</dd>
<dt>
<b>Tb.</b></dt>
<dd>
Standing underneath it can help cure a hangover.</dd>
<dt>
<b>Tb.</b></dt>
<dd>
Standing underneath and looking up reminds you of scenes from <i>Independence
Day</i>. (It helps if you're drunk.)</dd>
</dl>
<h3>
<a NAME="wateronhill"></a>The Water Tower On The Hill</h3>
(the thing that looks like a castle)
<dl compact>
<dt>
<b>F.</b></dt>
<dd>
This is the secret headquarters of the SU/Admin/KGB/etc.</dd>
<dt>
<b>Tb.</b></dt>
<dd>
The aerials on top of the water tower are believed to be mobile telephone
antennae rather than anything suspicious.</dd>
<dt>
<dt>
<b><a href="siwardtower.html">T. *</a></b></dt>
<dd>
Holds one million gallons of water, now empty.</dd>
<dt>
<b>Tb.</b></dt>
<dd>
The auxiliary supply tank contains 10 million gallons and is actually beneath
the all weather hockey pitch behind Alcuin.</dd>
<dt>
<b>F.</b></dt>
<dd>
It is used to stabilise lake water level.</dd>
</dl>
<h3>
<a NAME="biolclock"></a>Biology Clock Tower</h3>
<dl compact>
<dt>
<b>U.</b></dt>
<dd>
It only has one face because that's all they could afford.</dd>
<dt>
<b>Fb.</b></dt>
<dd>
It was a choice between a clock tower for Biology and a swimming pool for
campus - the right choice was obvious.</dd>
<dt>
<b>U.</b></dt>
<dd>
The Biology Clock Tower is in fact a chimney.</dd>
<dt>
<b>Tb.</b></dt>
<dd>
The Biology Clock Tower was designed to hold a water tank for the department.
Somebody donated a clock. Then it was found they didn't need a water tower.
But they still had to build it ...</dd>
</dl>
<h3>
<a NAME="newbio"></a>The New Biology Building</h3>
<dl compact>
<dt>
<b>Fb.</b></dt>
<dd>
Most energy-efficient building ever.</dd>
</dl>
<h3>
<a NAME="physicsbuild"></a>Physics</h3>
<dl compact>
<dt>
<b><a href="buildings.html#physics">Tb. *</a></b></dt>
<dd>
The Physics Building cost a million pounds to build.</dd>
<dt>
<b>T.</b></dt>
<dd>
There used to be stepping stones beneath PX001, when the lake went right
up to the side of the building.</dd>
<dt>
<b>T.</b></dt>
<dd>
Colin Johnson inadvertently walked off them while showing prospective undergraduates
round.</dd>
<dt>
<b>T.</b></dt>
<dd>
The stepping stones were filled with land to improve access for the disabled,
at the expense of many a potentially interesting bar-crawl.</dd>
<dt>
<b>F.</b></dt>
<dd>
The sound system inside PX001 was upgraded for minimal cost by FilmSoc
(as they then were) who went round York stealing car stereos. (YSC (as
they now are) don't use them - they belong to admin).</dd>
<dt>
<b>Tb.</b></dt>
<dd>
Many years ago when the roof of the Physics building was leaking, a number
of contractors were contacted for quotes to fix it, and the cheapest was
chosen. They came and worked for a few days and all the leaks stopped.
Several months later, estates needed to do some work in the roofspace,
and discovered lots of dustbins full of water, which the contractor had
put under the holes in the roof, thus ``solving'' the problem.</dd>
<p><br>The final solution involved flooding the roof with tar, having first
covered the rooms below in plastic sheeting to catch drips. This did the
trick, and left behind enough plastic to keep everyone happy for months.</dl>
<h3>
<a NAME="compscibuild"></a>Computer Science Buildings</h3>
<b>The new one</b>
<dl compact>
<dt>
<b>T.</b></dt>
<dd>
If you look closely at the weather mast, you will see some logic gates
cut out of the bottom part.</dd>
<dt>
<b>T.</b></dt>
<dd>
The direction pointers also have Pi/2, Pi, 3Pi/2 and 2Pi instead of W,
S, E, N.</dd>
</dl>
<b>The even newer one</b>
<dl compact>
<dt>
<b>T.</b></dt>
<dd>
Only six car parking spaces for the whole building.</dd>
</dl>
<h3>
<a NAME="psycb"></a>Psychology Buildings</h3>
<dl compact>
<dt>
<b>Fb.</b></dt>
<dd>
The tower on new psychology building houses a sensory deprivation tank
for experiments.</dd>
<dt>
<b>Fb.</b></dt>
<dd>
The various flags which are flown from the top of the building are part
of a psychology experiment to see how many people go and ask about them.</dd>
<dt>
<b>Fb.</b></dt>
<dd>
There are a number of steel loops set into the outside walls of the building
- these were supposed to be for chaining bikes to. Due to a mix up with
the plans, they are at head-height.</dd>
<dt>
<b>Fb.</b></dt>
<dd>
The steel rings are for attaching guy ropes to in the event of bad weather,
since it has been calculated that strong winds could catch the roof and
lift the entire building into the air.</dd>
<dt>
<b>T.</b></dt>
<dd>
There is a pitch-and-putt course round the back.</dd>
<dt>
<b>Tb.</b></dt>
<dd>
The pitch-and-putt course is no longer used due to damage to cars in the
adjacent car park.</dd>
</dl>
<h3>
<a NAME="sport"></a>Sports Centre</h3>
<dl compact>
<dt>
<b>U.</b></dt>
<dd>
The glue used to fix the tiles to the walls in the sports centre showers
was not waterproof with the unsurprising result that they fell off.</dd>
<dt>
<b><a href="buildings.html#sports">T. *</a></b></dt>
<dd>
The original designs included a swimming pool and a grandstand.</dd>
<dt>
<b>T.</b></dt>
<dd>
The new Astroturf pitches were paid for by former student Greg Dyke, now
a TV executive. (He actually contributed £250,000 towards the cost.
Ed).</dd>
</dl>
<h3>
<a NAME="jackdanials"></a>Sir Jack Lyons</h3>
<dl compact>
<dt>
<b>Tb.</b></dt>
<dd>
Sir Jack Lyons had his knighthood removed after the Guinness fraud inquiry
- University declined to remove the building's knighthood on the grounds
that he was still Sir Jack when he donated the money, and when it was built.</dd>
</dl>
<h3>
<a NAME="bleachfield"></a>Bleachfield</h3>
<dl compact>
<dt>
<b>F.</b></dt>
<dd>
Bleachfield is so called because there used to be a bleach factory there.</dd>
<dt>
<b>T.</b></dt>
<dd>
Bleachfield is named after Bleachfield Farm, which previously stood on
the Bleachfield -- Music Department site. The area was so-called because
linen bleaching took place on the site. (University News Sheet, April 1991,
page 8).</dd>
</dl>
<h3>
<a NAME="km"></a>Kings' Manor</h3>
<dl compact>
<dt>
<b><a href="km.html">T. *</a></b></dt>
<dd>
There is an oak panelled phone box in Kings' Manor.</dd>
</dl>
<h2>
<a NAME="landscape"></a>Landscape Features</h2>
<h3>
<a NAME="lake"></a>The Lake</h3>
(See also ``<a href="#wildlife">Wildlife</a>")
<dl compact>
<dt>
<b>Tb.</b></dt>
<dd>
When it was built, it was the largest plastic lined lake in Europe.</dd>
<dt>
<b>U.</b></dt>
<dd>
There was a fire in biology; water used to put it out drained into the
lake along with lots of nasties.</dd>
<dt>
<b>T.</b></dt>
<dd>
Chemistry don't drain anything into it. (And <b>Tb.</b> neither do any
of the other departments. (The water that is pumped into it by Physics
is just rain-water.)</dd>
<dt>
<b>U.</b></dt>
<dd>
There was an outbreak of botulism in the mid to late 80s.</dd>
<dt>
<b>T.</b></dt>
<dd>
It is used to drain the surrounding land - if it wasn't there the surrounding
land would simply be a marsh.</dd>
<dt>
<b>Tb.</b></dt>
<dd>
During a particularly cold spell one winter, the ice was sufficiently thick
for a mini to be driven out onto it and over the fountain -- which wasn't
working at the time.</dd>
<dt>
<b>Fb.</b></dt>
<dd>
The ice was not as thick as expected - the mini fell through the ice and
is still down there somewhere.</dd>
<dt>
<b>U.</b></dt>
<dd>
During a fairly cold spell a few winters ago, someone put a college fridge
out in the middle of the lake one evening and it was nowhere to be seen
next morning.</dd>
<dt>
<b>Tb.</b></dt>
<dd>
The fountain used to be higher before it was cleaned and redesigned.</dd>
<dt>
<b>Tb.</b></dt>
<dd>
The fountain exists to oxygenate the lake water.</dd>
<dt>
<b>U.</b></dt>
<dd>
The fountain moves around from time to time - it floats on a pontoon which
is tethered by it's supply pipe.</dd>
<dt>
<b>Fb.</b></dt>
<dd>
Only life in the lake is under-evolved eels and over-evolved fish.</dd>
<dt>
<b><a href="bales.html">T. *</a></b></dt>
<dd>
Since 1994, after a summer when the lake turned very green, there have
been several bales of hay floating around in the lake each year. These
were said to be intended to improve the quality of the lake water (but
didn't seem to have much effect).</dd>
<dt>
<b><a href="lake.html">T. *</a></b></dt>
<dd>
In 1993, Vision had an article about the state of the lake. One of the
professors of Ecology said that in 60-70 years time, the lake would become
a swamp.</dd>
<dt>
<b><a href="lake2.html">T. *</a></b></dt>
<dd>
The lake has always been a source of complaints about the smell, as seen
in a Nouse article nigh on thirty years ago.</dd>
<dt>
<b>Tb.</b></dt>
<dd>
There is no plant life in the lake because of an over-ambitious project
to poison the weeds in the lake during the 70s.</dd>
<dt>
<b>T.</b></dt>
<dd>
The top pond, next to Derwent dining room, is prone to bad algae growth.
On some occassions, it has been known to flouresce slightly at night. It