-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata24682.txt
5941 lines (5500 loc) · 174 KB
/
data24682.txt
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
Docid: 1
URL: http://www.ics.uci.edu/~kay/
Domain: 'uci.edu'
Sub-domain: 'www.ics'
Path: '/~kay/'
Parent page: null
Anchor text: null
Text length: 2388
Html length: 8622
Number of outgoing links: 28
http://www.ics.uci.edu/~kay/,28
-----
Docid: 2
URL: http://www.ics.uci.edu/~kay/courses/31/w15.html
Domain: 'uci.edu'
Sub-domain: 'www.ics'
Path: '/~kay/courses/31/w15.html'
Parent page: http://www.ics.uci.edu/~kay/
Anchor text: ICS 31 (Introduction to Programming)
Text length: 16279
Html length: 29988
Number of outgoing links: 28
http://www.ics.uci.edu/~kay/courses/31/w15.html,28
-----
Docid: 17
URL: http://www.ics.uci.edu/~kay/courses/31/hw/
Domain: 'uci.edu'
Sub-domain: 'www.ics'
Path: '/~kay/courses/31/hw/'
Parent page: http://www.ics.uci.edu/~kay/courses/31/w15.html
Anchor text: Assignments
Text length: 5112
Html length: 8765
Number of outgoing links: 10
http://www.ics.uci.edu/~kay/courses/31/hw/,10
-----
Docid: 3
URL: http://www.ics.uci.edu/~kay/courses/i141/w15.html
Domain: 'uci.edu'
Sub-domain: 'www.ics'
Path: '/~kay/courses/i141/w15.html'
Parent page: http://www.ics.uci.edu/~kay/
Anchor text: Informatics 141 / CS 121 (Information Retrieval)
Text length: 9570
Html length: 18580
Number of outgoing links: 20
http://www.ics.uci.edu/~kay/courses/i141/w15.html,20
-----
Docid: 18
URL: http://www.ics.uci.edu/~kay/courses/31/quiz/
Domain: 'uci.edu'
Sub-domain: 'www.ics'
Path: '/~kay/courses/31/quiz/'
Parent page: http://www.ics.uci.edu/~kay/courses/31/w15.html
Anchor text: Quizzes
Text length: 5082
Html length: 11711
Number of outgoing links: 25
http://www.ics.uci.edu/~kay/courses/31/quiz/,25
-----
Docid: 21
URL: http://www.ics.uci.edu/~kay/courses/31/hw/lab1.html
Domain: 'uci.edu'
Sub-domain: 'www.ics'
Path: '/~kay/courses/31/hw/lab1.html'
Parent page: http://www.ics.uci.edu/~kay/courses/31/hw/
Anchor text: Lab Assignment 1
Text length: 18423
Html length: 27537
Number of outgoing links: 13
http://www.ics.uci.edu/~kay/courses/31/hw/lab1.html,13
-----
Docid: 19
URL: http://www.ics.uci.edu/~kay/courses/31/refs.html
Domain: 'uci.edu'
Sub-domain: 'www.ics'
Path: '/~kay/courses/31/refs.html'
Parent page: http://www.ics.uci.edu/~kay/courses/31/w15.html
Anchor text: Resources
Text length: 5846
Html length: 11249
Number of outgoing links: 48
http://www.ics.uci.edu/~kay/courses/31/refs.html,48
-----
Docid: 4
URL: http://www.ics.uci.edu/~kay/courses/i141/w15enrollment.html
Domain: 'uci.edu'
Sub-domain: 'www.ics'
Path: '/~kay/courses/i141/w15enrollment.html'
Parent page: http://www.ics.uci.edu/~kay/
Anchor text: enrollment information
Text length: 5275
Html length: 6334
Number of outgoing links: 2
http://www.ics.uci.edu/~kay/courses/i141/w15enrollment.html,2
-----
Docid: 28
URL: http://www.ics.uci.edu/~kay/courses/i141/hw/index.html
Domain: 'uci.edu'
Sub-domain: 'www.ics'
Path: '/~kay/courses/i141/hw/index.html'
Parent page: http://www.ics.uci.edu/~kay/courses/i141/w15.html
Anchor text: Assignments
Text length: 1130
Html length: 3228
Number of outgoing links: 7
http://www.ics.uci.edu/~kay/courses/i141/hw/index.html,7
-----
Docid: 5
URL: http://www.ics.uci.edu/~kay/labtutors/193.w15.html
Domain: 'uci.edu'
Sub-domain: 'www.ics'
Path: '/~kay/labtutors/193.w15.html'
Parent page: http://www.ics.uci.edu/~kay/
Anchor text: ICS 193 (Tutoring in ICS)
Text length: 7025
Html length: 8823
Number of outgoing links: 9
http://www.ics.uci.edu/~kay/labtutors/193.w15.html,9
-----
Docid: 20
URL: http://www.ics.uci.edu/~kay/courses/31/collab.html
Domain: 'uci.edu'
Sub-domain: 'www.ics'
Path: '/~kay/courses/31/collab.html'
Parent page: http://www.ics.uci.edu/~kay/courses/31/w15.html
Anchor text: http://www.ics.uci.edu/~kay/courses/31/collab.html
Text length: 4818
Html length: 6475
Number of outgoing links: 3
http://www.ics.uci.edu/~kay/courses/31/collab.html,3
-----
Docid: 31
URL: http://www.ics.uci.edu/~kay/courses/31/
Domain: 'uci.edu'
Sub-domain: 'www.ics'
Path: '/~kay/courses/31/'
Parent page: http://www.ics.uci.edu/~kay/courses/31/refs.html
Anchor text: Course Reference
Text length: 16279
Html length: 29988
Number of outgoing links: 28
http://www.ics.uci.edu/~kay/courses/31/,28
-----
Docid: 22
URL: http://www.ics.uci.edu/~kay/courses/31/hw/lab2.html
Domain: 'uci.edu'
Sub-domain: 'www.ics'
Path: '/~kay/courses/31/hw/lab2.html'
Parent page: http://www.ics.uci.edu/~kay/courses/31/hw/
Anchor text: Lab Assignment 2
Text length: 22772
Html length: 32533
Number of outgoing links: 9
http://www.ics.uci.edu/~kay/courses/31/hw/lab2.html,9
-----
Docid: 32
URL: http://www.ics.uci.edu/~kay/courses/31/string-formatting.html
Domain: 'uci.edu'
Sub-domain: 'www.ics'
Path: '/~kay/courses/31/string-formatting.html'
Parent page: http://www.ics.uci.edu/~kay/courses/31/refs.html
Anchor text: string formatting
Text length: 13028
Html length: 16481
Number of outgoing links: 2
http://www.ics.uci.edu/~kay/courses/31/string-formatting.html,2
-----
Docid: 6
URL: http://www.ics.uci.edu/~kay/courses/31/f14.html
Domain: 'uci.edu'
Sub-domain: 'www.ics'
Path: '/~kay/courses/31/f14.html'
Parent page: http://www.ics.uci.edu/~kay/
Anchor text: ICS 31 (Introduction to Programming)
Text length: 17300
Html length: 33587
Number of outgoing links: 27
http://www.ics.uci.edu/~kay/courses/31/f14.html,27
-----
Docid: 37
URL: http://www.ics.uci.edu/~kay/labtutor.html
Domain: 'uci.edu'
Sub-domain: 'www.ics'
Path: '/~kay/labtutor.html'
Parent page: http://www.ics.uci.edu/~kay/labtutors/193.w15.html
Anchor text: Lab Tutor Guide
Text length: 10628
Html length: 13615
Number of outgoing links: 1
http://www.ics.uci.edu/~kay/labtutor.html,1
-----
Docid: 29
URL: http://www.ics.uci.edu/~kay/courses/i141/refs.html
Domain: 'uci.edu'
Sub-domain: 'www.ics'
Path: '/~kay/courses/i141/refs.html'
Parent page: http://www.ics.uci.edu/~kay/courses/i141/w15.html
Anchor text: Resources
Text length: 720
Html length: 2352
Number of outgoing links: 8
http://www.ics.uci.edu/~kay/courses/i141/refs.html,8
-----
Docid: 33
URL: http://www.ics.uci.edu/~kay/courses/i141/hw/asst1.html
Domain: 'uci.edu'
Sub-domain: 'www.ics'
Path: '/~kay/courses/i141/hw/asst1.html'
Parent page: http://www.ics.uci.edu/~kay/courses/i141/hw/index.html
Anchor text: Quantifying big data.
Text length: 2617
Html length: 4075
Number of outgoing links: 2
http://www.ics.uci.edu/~kay/courses/i141/hw/asst1.html,2
-----
Docid: 30
URL: http://www.ics.uci.edu/~kay/courses/i141/collab.html
Domain: 'uci.edu'
Sub-domain: 'www.ics'
Path: '/~kay/courses/i141/collab.html'
Parent page: http://www.ics.uci.edu/~kay/courses/i141/w15.html
Anchor text: course collaboration guidelines
Text length: 2576
Html length: 4117
Number of outgoing links: 3
http://www.ics.uci.edu/~kay/courses/i141/collab.html,3
-----
Docid: 7
URL: http://www.ics.uci.edu/~kay/labtutors/193.f14.html
Domain: 'uci.edu'
Sub-domain: 'www.ics'
Path: '/~kay/labtutors/193.f14.html'
Parent page: http://www.ics.uci.edu/~kay/
Anchor text: ICS 193 (Tutoring in ICS)
Text length: 6475
Html length: 8266
Number of outgoing links: 9
http://www.ics.uci.edu/~kay/labtutors/193.f14.html,9
-----
Docid: 38
URL: http://www.ics.uci.edu/~kay/courses/31/f12.html
Domain: 'uci.edu'
Sub-domain: 'www.ics'
Path: '/~kay/courses/31/f12.html'
Parent page: http://www.ics.uci.edu/~kay/courses/31/f14.html
Anchor text: http://www.ics.uci.edu/~kay/courses/31
Text length: 15649
Html length: 28606
Number of outgoing links: 25
http://www.ics.uci.edu/~kay/courses/31/f12.html,25
-----
Docid: 23
URL: http://www.ics.uci.edu/~kay/courses/31/hw/lab3.html
Domain: 'uci.edu'
Sub-domain: 'www.ics'
Path: '/~kay/courses/31/hw/lab3.html'
Parent page: http://www.ics.uci.edu/~kay/courses/31/hw/
Anchor text: Lab Assignment 3
Text length: 19498
Html length: 25621
Number of outgoing links: 10
http://www.ics.uci.edu/~kay/courses/31/hw/lab3.html,10
-----
Docid: 8
URL: http://www.ics.uci.edu/~kay/courses/398a/f14.html
Domain: 'uci.edu'
Sub-domain: 'www.ics'
Path: '/~kay/courses/398a/f14.html'
Parent page: http://www.ics.uci.edu/~kay/
Anchor text: ICS 398A (Teaching Assistant Seminar)
Text length: 4778
Html length: 8621
Number of outgoing links: 14
http://www.ics.uci.edu/~kay/courses/398a/f14.html,14
-----
Docid: 34
URL: http://www.ics.uci.edu/~kay/courses/i141/hw/asst2.html
Domain: 'uci.edu'
Sub-domain: 'www.ics'
Path: '/~kay/courses/i141/hw/asst2.html'
Parent page: http://www.ics.uci.edu/~kay/courses/i141/hw/index.html
Anchor text: Text processing functions.
Text length: 4157
Html length: 6064
Number of outgoing links: 3
http://www.ics.uci.edu/~kay/courses/i141/hw/asst2.html,3
-----
Docid: 9
URL: http://www.ics.uci.edu/~kay/courses/previous.html
Domain: 'uci.edu'
Sub-domain: 'www.ics'
Path: '/~kay/courses/previous.html'
Parent page: http://www.ics.uci.edu/~kay/
Anchor text: Previous quarters' courses
Text length: 11417
Html length: 24254
Number of outgoing links: 157
http://www.ics.uci.edu/~kay/courses/previous.html,157
-----
Docid: 39
URL: http://www.ics.uci.edu/~kay/checker.html
Domain: 'uci.edu'
Sub-domain: 'www.ics'
Path: '/~kay/checker.html'
Parent page: http://www.ics.uci.edu/~kay/courses/398a/f14.html
Anchor text: http://www.ics.uci.edu/~kay/checker.html
Text length: 4794
Html length: 6287
Number of outgoing links: 6
http://www.ics.uci.edu/~kay/checker.html,6
-----
Docid: 24
URL: http://www.ics.uci.edu/~kay/courses/31/hw/lab4.html
Domain: 'uci.edu'
Sub-domain: 'www.ics'
Path: '/~kay/courses/31/hw/lab4.html'
Parent page: http://www.ics.uci.edu/~kay/courses/31/hw/
Anchor text: Lab Assignment 4
Text length: 16901
Html length: 24185
Number of outgoing links: 7
http://www.ics.uci.edu/~kay/courses/31/hw/lab4.html,7
-----
Docid: 128
URL: http://www.ics.uci.edu/~kay/turnitin.html
Domain: 'uci.edu'
Sub-domain: 'www.ics'
Path: '/~kay/turnitin.html'
Parent page: http://www.ics.uci.edu/~kay/checker.html
Anchor text: Turnitin.com in ICS
Text length: 7167
Html length: 9717
Number of outgoing links: 4
http://www.ics.uci.edu/~kay/turnitin.html,4
-----
Docid: 10
URL: http://www.ics.uci.edu/~kay/labtutors/
Domain: 'uci.edu'
Sub-domain: 'www.ics'
Path: '/~kay/labtutors/'
Parent page: http://www.ics.uci.edu/~kay/
Anchor text: ICS Lab Tutor
Text length: 7025
Html length: 8823
Number of outgoing links: 9
http://www.ics.uci.edu/~kay/labtutors/,9
-----
Docid: 90
URL: http://www.ics.uci.edu/~kay/courses/h21/f08.html
Domain: 'uci.edu'
Sub-domain: 'www.ics'
Path: '/~kay/courses/h21/f08.html'
Parent page: http://www.ics.uci.edu/~kay/courses/previous.html
Anchor text: ICS H21 (Introduction to Computer Science IHonors)
Text length: 11824
Html length: 23655
Number of outgoing links: 22
http://www.ics.uci.edu/~kay/courses/h21/f08.html,22
-----
Docid: 40
URL: http://www.ics.uci.edu/~kay/courses/10/su14.html
Domain: 'uci.edu'
Sub-domain: 'www.ics'
Path: '/~kay/courses/10/su14.html'
Parent page: http://www.ics.uci.edu/~kay/courses/previous.html
Anchor text: ICS 10 (How Computers Work)
Text length: 10405
Html length: 19224
Number of outgoing links: 19
http://www.ics.uci.edu/~kay/courses/10/su14.html,19
-----
Docid: 35
URL: http://www.ics.uci.edu/~kay/courses/i141/hw/asst3.html
Domain: 'uci.edu'
Sub-domain: 'www.ics'
Path: '/~kay/courses/i141/hw/asst3.html'
Parent page: http://www.ics.uci.edu/~kay/courses/i141/hw/index.html
Anchor text: Crawling.
Text length: 5753
Html length: 7199
Number of outgoing links: 6
http://www.ics.uci.edu/~kay/courses/i141/hw/asst3.html,6
-----
Docid: 41
URL: http://www.ics.uci.edu/~kay/courses/131/su14.html
Domain: 'uci.edu'
Sub-domain: 'www.ics'
Path: '/~kay/courses/131/su14.html'
Parent page: http://www.ics.uci.edu/~kay/courses/previous.html
Anchor text: Informatics 131 (Human-Computer Interaction)
Text length: 10254
Html length: 16569
Number of outgoing links: 21
http://www.ics.uci.edu/~kay/courses/131/su14.html,21
-----
Docid: 91
URL: http://www.ics.uci.edu/~kay/courses/398a/f08.html
Domain: 'uci.edu'
Sub-domain: 'www.ics'
Path: '/~kay/courses/398a/f08.html'
Parent page: http://www.ics.uci.edu/~kay/courses/previous.html
Anchor text: ICS 398A (Teaching Assistant Seminar)
Text length: 3872
Html length: 8746
Number of outgoing links: 10
http://www.ics.uci.edu/~kay/courses/398a/f08.html,10
-----
Docid: 131
URL: http://www.ics.uci.edu/~kay/courses/h21/hw/
Domain: 'uci.edu'
Sub-domain: 'www.ics'
Path: '/~kay/courses/h21/hw/'
Parent page: http://www.ics.uci.edu/~kay/courses/h21/f08.html
Anchor text: Assignments
Text length: 4510
Html length: 8749
Number of outgoing links: 33
http://www.ics.uci.edu/~kay/courses/h21/hw/,33
-----
Docid: 11
URL: http://www.ics.uci.edu/~kay/teachingics.html
Domain: 'uci.edu'
Sub-domain: 'www.ics'
Path: '/~kay/teachingics.html'
Parent page: http://www.ics.uci.edu/~kay/
Anchor text: teaching in ICS
Text length: 1732
Html length: 3688
Number of outgoing links: 9
http://www.ics.uci.edu/~kay/teachingics.html,9
-----
Docid: 130
URL: http://www.ics.uci.edu/~kay/turnitin.com_guidelines_files/plagiarism-don_t_do_it_.html
Domain: 'uci.edu'
Sub-domain: 'www.ics'
Path: '/~kay/turnitin.com_guidelines_files/plagiarism-don_t_do_it_.html'
Parent page: http://www.ics.uci.edu/~kay/turnitin.html
Anchor text: enhanced sample
Text length: 1895
Html length: 2773
Number of outgoing links: 0
http://www.ics.uci.edu/~kay/turnitin.com_guidelines_files/plagiarism-don_t_do_it_.html,0
-----
Docid: 25
URL: http://www.ics.uci.edu/~kay/courses/31/hw/lab5.html
Domain: 'uci.edu'
Sub-domain: 'www.ics'
Path: '/~kay/courses/31/hw/lab5.html'
Parent page: http://www.ics.uci.edu/~kay/courses/31/hw/
Anchor text: Lab Assignment 5
Text length: 20142
Html length: 25322
Number of outgoing links: 6
http://www.ics.uci.edu/~kay/courses/31/hw/lab5.html,6
-----
Docid: 129
URL: http://www.ics.uci.edu/~kay/python/restaurants.py
Domain: 'uci.edu'
Sub-domain: 'www.ics'
Path: '/~kay/python/restaurants.py'
Parent page: http://www.ics.uci.edu/~kay/courses/31/hw/lab4.html
Anchor text: http://www.ics.uci.edu/~kay/python/restaurants.py
-----
Docid: 163
URL: http://www.ics.uci.edu/~kay/teaching_in_ics_files/commstrategies.html
Domain: 'uci.edu'
Sub-domain: 'www.ics'
Path: '/~kay/teaching_in_ics_files/commstrategies.html'
Parent page: http://www.ics.uci.edu/~kay/teachingics.html
Anchor text: strategies for effective communication
Text length: 1981
Html length: 3218
Number of outgoing links: 0
http://www.ics.uci.edu/~kay/teaching_in_ics_files/commstrategies.html,0
-----
Docid: 12
URL: http://www.ics.uci.edu/~kay/college.html
Domain: 'uci.edu'
Sub-domain: 'www.ics'
Path: '/~kay/college.html'
Parent page: http://www.ics.uci.edu/~kay/
Anchor text: different from high school
Text length: 8986
Html length: 11487
Number of outgoing links: 2
http://www.ics.uci.edu/~kay/college.html,2
-----
Docid: 132
URL: http://www.ics.uci.edu/~kay/courses/i41/refs.html
Domain: 'uci.edu'
Sub-domain: 'www.ics'
Path: '/~kay/courses/i41/refs.html'
Parent page: http://www.ics.uci.edu/~kay/courses/h21/f08.html
Anchor text: Additional references
Text length: 5579
Html length: 11795
Number of outgoing links: 46
http://www.ics.uci.edu/~kay/courses/i41/refs.html,46
-----
Docid: 92
URL: http://www.ics.uci.edu/~kay/courses/131/su08.html
Domain: 'uci.edu'
Sub-domain: 'www.ics'
Path: '/~kay/courses/131/su08.html'
Parent page: http://www.ics.uci.edu/~kay/courses/previous.html
Anchor text: Informatics 131 (Human-Computer Interaction)
Text length: 8831
Html length: 17343
Number of outgoing links: 23
http://www.ics.uci.edu/~kay/courses/131/su08.html,23
-----
Docid: 42
URL: http://www.ics.uci.edu/~kay/courses/10/s14.html
Domain: 'uci.edu'
Sub-domain: 'www.ics'
Path: '/~kay/courses/10/s14.html'
Parent page: http://www.ics.uci.edu/~kay/courses/previous.html
Anchor text: ICS 10 (How Computers Work)
Text length: 10605
Html length: 19257
Number of outgoing links: 19
http://www.ics.uci.edu/~kay/courses/10/s14.html,19
-----
Docid: 36
URL: http://www.ics.uci.edu/~kay/courses/i141/hw/asst4.html
Domain: 'uci.edu'
Sub-domain: 'www.ics'
Path: '/~kay/courses/i141/hw/asst4.html'
Parent page: http://www.ics.uci.edu/~kay/courses/i141/hw/index.html
Anchor text: Text analysis
Text length: 6104
Html length: 7759
Number of outgoing links: 5
http://www.ics.uci.edu/~kay/courses/i141/hw/asst4.html,5
-----
Docid: 93
URL: http://www.ics.uci.edu/~kay/courses/269/s08.html
Domain: 'uci.edu'
Sub-domain: 'www.ics'
Path: '/~kay/courses/269/s08.html'
Parent page: http://www.ics.uci.edu/~kay/courses/previous.html
Anchor text: Informatics 269 (Computer Law)
Text length: 2086
Html length: 7056
Number of outgoing links: 4
http://www.ics.uci.edu/~kay/courses/269/s08.html,4
-----
Docid: 13
URL: http://www.ics.uci.edu/~kay/college-advice/
Domain: 'uci.edu'
Sub-domain: 'www.ics'
Path: '/~kay/college-advice/'
Parent page: http://www.ics.uci.edu/~kay/
Anchor text: additional tips
Text length: 10421
Html length: 60792
Number of outgoing links: 68
http://www.ics.uci.edu/~kay/college-advice/,68
-----
Docid: 164
URL: http://www.ics.uci.edu/~kay/taguide.html
Domain: 'uci.edu'
Sub-domain: 'www.ics'
Path: '/~kay/taguide.html'
Parent page: http://www.ics.uci.edu/~kay/teachingics.html
Anchor text: ICS 31/32/33 Guide
Text length: 32277
Html length: 38982
Number of outgoing links: 4
http://www.ics.uci.edu/~kay/taguide.html,4
-----
Docid: 166
URL: http://www.ics.uci.edu/~kay/python/RP0.py
Domain: 'uci.edu'
Sub-domain: 'www.ics'
Path: '/~kay/python/RP0.py'
Parent page: http://www.ics.uci.edu/~kay/courses/31/hw/lab5.html
Anchor text: first version of the restaurants program
-----
Docid: 26
URL: http://www.ics.uci.edu/~kay/courses/31/pair.html
Domain: 'uci.edu'
Sub-domain: 'www.ics'
Path: '/~kay/courses/31/pair.html'
Parent page: http://www.ics.uci.edu/~kay/courses/31/hw/
Anchor text: specific guidelines
Text length: 7235
Html length: 9662
Number of outgoing links: 5
http://www.ics.uci.edu/~kay/courses/31/pair.html,5
-----
Docid: 165
URL: http://www.ics.uci.edu/~kay/ask.html
Domain: 'uci.edu'
Sub-domain: 'www.ics'
Path: '/~kay/ask.html'
Parent page: http://www.ics.uci.edu/~kay/teachingics.html
Anchor text: What to Ask the Instructor
Text length: 9125
Html length: 14636
Number of outgoing links: 19
http://www.ics.uci.edu/~kay/ask.html,19
-----
Docid: 14
URL: http://www.ics.uci.edu/~kay/choosing.courses.html
Domain: 'uci.edu'
Sub-domain: 'www.ics'
Path: '/~kay/choosing.courses.html'
Parent page: http://www.ics.uci.edu/~kay/
Anchor text: Thinking about choosing courses?
Text length: 1581
Html length: 1951
Number of outgoing links: 1
http://www.ics.uci.edu/~kay/choosing.courses.html,1
-----
Docid: 134
URL: http://www.ics.uci.edu/~kay/courses/h21/hw/index.html
Domain: 'uci.edu'
Sub-domain: 'www.ics'
Path: '/~kay/courses/h21/hw/index.html'
Parent page: http://www.ics.uci.edu/~kay/courses/h21/f08.html
Anchor text: Weekly homeworks and lab assignments
Text length: 4510
Html length: 8749
Number of outgoing links: 33
http://www.ics.uci.edu/~kay/courses/h21/hw/index.html,33
-----
Docid: 94
URL: http://www.ics.uci.edu/~kay/courses/398b/s08.html
Domain: 'uci.edu'
Sub-domain: 'www.ics'
Path: '/~kay/courses/398b/s08.html'
Parent page: http://www.ics.uci.edu/~kay/courses/previous.html
Anchor text: ICS 398B (Advanced TA Seminar)
Text length: 2554
Html length: 7767
Number of outgoing links: 6
http://www.ics.uci.edu/~kay/courses/398b/s08.html,6
-----
Docid: 167
URL: http://www.ics.uci.edu/~kay/scheme/finger.html
Domain: 'uci.edu'
Sub-domain: 'www.ics'
Path: '/~kay/scheme/finger.html'
Parent page: http://www.ics.uci.edu/~kay/courses/i41/refs.html
Anchor text: Scheme Finger Exercises
Text length: 5034
Html length: 14632
Number of outgoing links: 2
http://www.ics.uci.edu/~kay/scheme/finger.html,2
-----
Docid: 43
URL: http://www.ics.uci.edu/~kay/labtutors/193.s14.html
Domain: 'uci.edu'
Sub-domain: 'www.ics'
Path: '/~kay/labtutors/193.s14.html'
Parent page: http://www.ics.uci.edu/~kay/courses/previous.html
Anchor text: ICS 193 (Tutoring in ICS)
Text length: 6440
Html length: 8231
Number of outgoing links: 9
http://www.ics.uci.edu/~kay/labtutors/193.s14.html,9
-----
Docid: 95
URL: http://www.ics.uci.edu/~kay/courses/i42/w08.html
Domain: 'uci.edu'
Sub-domain: 'www.ics'
Path: '/~kay/courses/i42/w08.html'
Parent page: http://www.ics.uci.edu/~kay/courses/previous.html
Anchor text: Informatics 42 (Informatics Core Course II)
Text length: 11873
Html length: 23516
Number of outgoing links: 23
http://www.ics.uci.edu/~kay/courses/i42/w08.html,23
-----
Docid: 172
URL: http://www.ics.uci.edu/~kay/courses/i41/hw/evalcomments.html
Domain: 'uci.edu'
Sub-domain: 'www.ics'
Path: '/~kay/courses/i41/hw/evalcomments.html'
Parent page: http://www.ics.uci.edu/~kay/courses/31/pair.html
Anchor text: partner evaluation comments
Text length: 9153
Html length: 12646
Number of outgoing links: 0
http://www.ics.uci.edu/~kay/courses/i41/hw/evalcomments.html,0
-----
Docid: 15
URL: http://www.ics.uci.edu/~kay/recommendations.html
Domain: 'uci.edu'
Sub-domain: 'www.ics'
Path: '/~kay/recommendations.html'
Parent page: http://www.ics.uci.edu/~kay/
Anchor text: Need a letter of recommendation?
Text length: 2480
Html length: 2799
Number of outgoing links: 1
http://www.ics.uci.edu/~kay/recommendations.html,1
-----
Docid: 135
URL: http://www.ics.uci.edu/~kay/courses/10/hw/index.html
Domain: 'uci.edu'
Sub-domain: 'www.ics'
Path: '/~kay/courses/10/hw/index.html'
Parent page: http://www.ics.uci.edu/~kay/courses/10/su14.html
Anchor text: Assignments
Text length: 8470
Html length: 11115
Number of outgoing links: 20
http://www.ics.uci.edu/~kay/courses/10/hw/index.html,20
-----
Docid: 169
URL: http://www.ics.uci.edu/~kay/courses/269/s08readings.html
Domain: 'uci.edu'
Sub-domain: 'www.ics'
Path: '/~kay/courses/269/s08readings.html'
Parent page: http://www.ics.uci.edu/~kay/courses/269/s08.html
Anchor text: Readings:
Text length: 10996
Html length: 21339
Number of outgoing links: 62
http://www.ics.uci.edu/~kay/courses/269/s08readings.html,62
-----
Docid: 27
URL: http://www.ics.uci.edu/~kay/courses/31/design-recipe.html
Domain: 'uci.edu'
Sub-domain: 'www.ics'
Path: '/~kay/courses/31/design-recipe.html'
Parent page: http://www.ics.uci.edu/~kay/courses/31/hw/
Anchor text: design recipe
Text length: 4568
Html length: 6195
Number of outgoing links: 3
http://www.ics.uci.edu/~kay/courses/31/design-recipe.html,3
-----
Docid: 170
URL: http://www.ics.uci.edu/~kay/courses/269/
Domain: 'uci.edu'
Sub-domain: 'www.ics'
Path: '/~kay/courses/269/'
Parent page: http://www.ics.uci.edu/~kay/courses/269/s08.html
Anchor text: http://www.ics.uci.edu/~kay/courses/269/
Text length: 2581
Html length: 6737
Number of outgoing links: 6
http://www.ics.uci.edu/~kay/courses/269/,6
-----
Docid: 136
URL: http://www.ics.uci.edu/~kay/courses/10/refs.html
Domain: 'uci.edu'
Sub-domain: 'www.ics'
Path: '/~kay/courses/10/refs.html'
Parent page: http://www.ics.uci.edu/~kay/courses/10/su14.html
Anchor text: Resources
Text length: 2167
Html length: 4361
Number of outgoing links: 20
http://www.ics.uci.edu/~kay/courses/10/refs.html,20
-----
Docid: 180
URL: http://www.ics.uci.edu/~kay/courses/10/hw/hw1.html
Domain: 'uci.edu'
Sub-domain: 'www.ics'
Path: '/~kay/courses/10/hw/hw1.html'
Parent page: http://www.ics.uci.edu/~kay/courses/10/hw/index.html
Anchor text: First Homework
Text length: 9006
Html length: 11445
Number of outgoing links: 15
http://www.ics.uci.edu/~kay/courses/10/hw/hw1.html,15
-----
Docid: 16
URL: http://www.ics.uci.edu/~kay/pubs/index.html
Domain: 'uci.edu'
Sub-domain: 'www.ics'
Path: '/~kay/pubs/index.html'
Parent page: http://www.ics.uci.edu/~kay/
Anchor text: Publications, presentations, conferences, workshops
Text length: 8894
Html length: 14830
Number of outgoing links: 35
http://www.ics.uci.edu/~kay/pubs/index.html,35
-----
Docid: 96
URL: http://www.ics.uci.edu/~kay/courses/398a/w08.html
Domain: 'uci.edu'
Sub-domain: 'www.ics'
Path: '/~kay/courses/398a/w08.html'
Parent page: http://www.ics.uci.edu/~kay/courses/previous.html
Anchor text: ICS 398A (Teaching Assistant Seminar)
Text length: 4186
Html length: 8564
Number of outgoing links: 10
http://www.ics.uci.edu/~kay/courses/398a/w08.html,10
-----
Docid: 173
URL: http://www.ics.uci.edu/~kay/courses/i42/hw/
Domain: 'uci.edu'
Sub-domain: 'www.ics'
Path: '/~kay/courses/i42/hw/'
Parent page: http://www.ics.uci.edu/~kay/courses/i42/w08.html
Anchor text: Assignments
Text length: 4652
Html length: 8300
Number of outgoing links: 20
http://www.ics.uci.edu/~kay/courses/i42/hw/,20
-----
Docid: 44
URL: http://www.ics.uci.edu/~kay/courses/31/w14.html
Domain: 'uci.edu'
Sub-domain: 'www.ics'
Path: '/~kay/courses/31/w14.html'
Parent page: http://www.ics.uci.edu/~kay/courses/previous.html
Anchor text: ICS 31 (Introduction to Programming)
Text length: 15986
Html length: 29841
Number of outgoing links: 26
http://www.ics.uci.edu/~kay/courses/31/w14.html,26
-----
Docid: 174
URL: http://www.ics.uci.edu/~kay/courses/i42/wildride/
Domain: 'uci.edu'
Sub-domain: 'www.ics'
Path: '/~kay/courses/i42/wildride/'
Parent page: http://www.ics.uci.edu/~kay/courses/i42/w08.html
Anchor text: Simulator
Text length: 745
Html length: 3269
Number of outgoing links: 7
http://www.ics.uci.edu/~kay/courses/i42/wildride/,7
-----
Docid: 97
URL: http://www.ics.uci.edu/~kay/courses/i41/f07.html
Domain: 'uci.edu'
Sub-domain: 'www.ics'
Path: '/~kay/courses/i41/f07.html'
Parent page: http://www.ics.uci.edu/~kay/courses/previous.html
Anchor text: Informatics 41 (Informatics Core Course I)
Text length: 14098
Html length: 26766
Number of outgoing links: 27
http://www.ics.uci.edu/~kay/courses/i41/f07.html,27
-----
Docid: 191
URL: http://www.ics.uci.edu/~kay/pubs/managing-large-courses.html
Domain: 'uci.edu'
Sub-domain: 'www.ics'
Path: '/~kay/pubs/managing-large-courses.html'
Parent page: http://www.ics.uci.edu/~kay/pubs/index.html
Anchor text: Large Introductory Computer Science Classes:
Text length: 15807
Html length: 21027
Number of outgoing links: 27
http://www.ics.uci.edu/~kay/pubs/managing-large-courses.html,27
-----
Docid: 181
URL: http://www.ics.uci.edu/~kay/courses/10/hw/hw2.html
Domain: 'uci.edu'
Sub-domain: 'www.ics'
Path: '/~kay/courses/10/hw/hw2.html'
Parent page: http://www.ics.uci.edu/~kay/courses/10/hw/index.html
Anchor text: Second Homework
Text length: 6591
Html length: 8761
Number of outgoing links: 11
http://www.ics.uci.edu/~kay/courses/10/hw/hw2.html,11
-----
Docid: 137
URL: http://www.ics.uci.edu/~kay/courses/10/
Domain: 'uci.edu'
Sub-domain: 'www.ics'
Path: '/~kay/courses/10/'
Parent page: http://www.ics.uci.edu/~kay/courses/10/su14.html
Anchor text: http://www.ics.uci.edu/~kay/courses/10/
Text length: 10405
Html length: 19224
Number of outgoing links: 19
http://www.ics.uci.edu/~kay/courses/10/,19
-----
Docid: 171
URL: http://www.ics.uci.edu/~kay/courses/h21/
Domain: 'uci.edu'
Sub-domain: 'www.ics'
Path: '/~kay/courses/h21/'
Parent page: http://www.ics.uci.edu/~kay/courses/h21/f08.html
Anchor text: http://www.ics.uci.edu/~kay/courses/h21
Text length: 12106
Html length: 24518
Number of outgoing links: 21
http://www.ics.uci.edu/~kay/courses/h21/,21
-----
Docid: 188
URL: http://www.ics.uci.edu/~kay/courses/269/s12readings.html
Domain: 'uci.edu'
Sub-domain: 'www.ics'
Path: '/~kay/courses/269/s12readings.html'
Parent page: http://www.ics.uci.edu/~kay/courses/269/
Anchor text: Readings:
Text length: 10814
Html length: 24314
Number of outgoing links: 62
http://www.ics.uci.edu/~kay/courses/269/s12readings.html,62
-----
Docid: 223
URL: http://www.ics.uci.edu/~kay/courses/i41/hw/
Domain: 'uci.edu'
Sub-domain: 'www.ics'
Path: '/~kay/courses/i41/hw/'
Parent page: http://www.ics.uci.edu/~kay/courses/i41/f07.html
Anchor text: Assignments
Text length: 5022
Html length: 8825
Number of outgoing links: 25
http://www.ics.uci.edu/~kay/courses/i41/hw/,25
-----
Docid: 138
URL: http://www.ics.uci.edu/~kay/courses/131/hw/index.html
Domain: 'uci.edu'
Sub-domain: 'www.ics'
Path: '/~kay/courses/131/hw/index.html'
Parent page: http://www.ics.uci.edu/~kay/courses/131/su14.html
Anchor text: Assignments
Text length: 8553
Html length: 12395