-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathseminar.json
1804 lines (1790 loc) · 66.1 KB
/
seminar.json
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
{
"series": [
{
"year": "2013-2014",
"entries":[
{
"speaker": "mc schraefel",
"affiliation": "University of Southampton",
"title": "Charting the space of wellbeing design for HCI Research and Evaluation in Four movements",
"date": "November 22, 2013",
"time": "1-2pm",
"location": "32-G449",
"url": "https://calendar.csail.mit.edu/events/117922"
},
{
"speaker": "Wendy Mackay",
"affiliation": "Inria & Université Paris-Sud",
"title": "Co-Adaptive Instruments: Can we reinvent the graphical user interface?",
"date": "December 12, 2013",
"time": "2-3pm",
"location": "32-G449",
"url": "https://calendar.csail.mit.edu/events/118321"
},
{
"speaker": "Megan Monroe",
"affiliation": "University of Maryland",
"title": "Interactive Event Sequence Query and Transformation",
"date": "December 13, 2013",
"time": "1-2pm",
"location": "32-G449",
"url": "https://calendar.csail.mit.edu/events/118884"
},
{
"speaker": "Chris Parnin",
"affiliation": "Georgia Institute of Technology",
"title": "Programmer, Interrupted: Data, Brains, and Tools",
"date": "March 13, 2014",
"time": "11am-12pm",
"location": "32-G449",
"url": "https://calendar.csail.mit.edu/events/122759"
},
{
"speaker": "Brian Bailey",
"affiliation": "University of Illinois at Urbana-Champaign",
"title": "Design Thinking Tools for the Individual, Group and Community",
"date": "April 4, 2014",
"time": "2pm-3pm",
"location": "32-G449",
"url": "https://calendar.csail.mit.edu/events/126967",
"video": "http://www.csail.mit.edu/videoarchive/talks/hci/bailey"
},
{
"speaker": "Marti Hearst",
"affiliation": "UC Berkeley",
"title": "Towards Collaborative Learning at Scale",
"date": "April 11, 2014",
"time": "3pm-4pm",
"location": "32-D463",
"url": "https://calendar.csail.mit.edu/events/127968",
"video": "http://www.csail.mit.edu/videoarchive/talks/hci/hearst"
},
{
"speaker": "Alice Oh",
"affiliation": "KAIST",
"title": "Machine Learning Approaches for Understanding Social Interactions on Twitter",
"date": "May 6, 2014",
"time": "2pm-3pm",
"location": "32-G449",
"url": "https://calendar.csail.mit.edu/events/128867"
}
]
},
{
"year": "2012-2013",
"entries":[
{
"speaker": "Steven Dow",
"affiliation": "Carnegie Mellon University",
"title": "Understanding Iterative Design with Individuals, Groups, and Crowds",
"date": "November 2, 2012",
"time": "1-2pm",
"location": "32-G449",
"url": "http://www.csail.mit.edu/events/eventcalendar/calendar.php?show=event&id=3458",
"video": "http://www.csail.mit.edu/videoarchive/talks/hci/dow"
},
{
"speaker": "Jeff Bigham",
"affiliation": "University of Rochester",
"title": "Crowd Agents: Interactive Crowd-Powered Systems in the Real World",
"date": "November 9, 2012",
"time": "1-2pm",
"location": "32-G882",
"url": "http://www.csail.mit.edu/events/eventcalendar/calendar.php?show=event&id=3459",
"video": "http://www.csail.mit.edu/videoarchive/talks/hci/bigham"
},
{
"speaker": "Chris Harrison",
"affiliation": "Carnegie Mellon University",
"title": "Interacting with Small Devices in Big Ways",
"date": "November 15, 2012",
"time": "3-4pm",
"location": "32-G449",
"url": "http://www.csail.mit.edu/events/eventcalendar/calendar.php?show=event&id=3463",
"video": "http://www.csail.mit.edu/videoarchive/talks/hci/harrison"
},
{
"speaker": "Amy Ogan",
"affiliation": "Carnegie Mellon University",
"title": "Taking Educational Technology Worldwide: Challenging the Assumptions of Personalized Learning",
"date": "November 16, 2012",
"time": "1-2pm",
"location": "32-G449",
"url": "http://www.csail.mit.edu/events/eventcalendar/calendar.php?show=event&id=3460",
"video": "http://www.csail.mit.edu/videoarchive/talks/hci/ogan"
},
{
"speaker": "Mark Guzdial",
"affiliation": "Georgia Tech",
"title": "What We Know About Teaching Computer Science: On-Line or In-Classroom (Answer: Not all that much)",
"date": "November 30, 2012",
"time": "1-2pm",
"location": "32-G449",
"url": "http://www.csail.mit.edu/events/eventcalendar/calendar.php?show=event&id=3461",
"video": "http://www.csail.mit.edu/videoarchive/talks/hci/guzdial"
},
{
"speaker": "Eric Gilbert",
"affiliation": "Georgia Tech",
"title": "Designing social computing systems around relationships",
"date": "December 7, 2012",
"time": "1-2pm",
"location": "32-G449",
"url": "http://www.csail.mit.edu/events/eventcalendar/calendar.php?show=event&id=3462",
"video": "http://www.csail.mit.edu/videoarchive/talks/hci/gilbert"
},
{
"speaker": "Aron Pilhofer",
"affiliation": "The New York Times",
"title": "Goosing the Gray Lady: Data + journalism + graphics at The New York Times",
"date": "December 14, 2012",
"time": "1-2pm",
"location": "32-G449",
"url": "http://www.csail.mit.edu/events/eventcalendar/calendar.php?show=event&id=3479",
"video": "http://www.csail.mit.edu/videoarchive/talks/hci/pilhofer"
},
{
"speaker": "Paul André",
"affiliation": "Carnegie Mellon University",
"title": "Self and Social Awareness: Designing for Communication and Collaboration",
"date": "March 8, 2013",
"time": "11am-12pm",
"location": "32-G882",
"url": "http://www.csail.mit.edu/events/eventcalendar/calendar.php?show=event&id=3626",
"video": "http://www.csail.mit.edu/videoarchive/talks/hci/andre"
},
{
"speaker": "Monica Lam",
"affiliation": "Stanford University",
"title": "How Mobile Disrupts Social As We Know It",
"date": "April 10, 2013",
"time": "4-5pm",
"location": "32-G449",
"url": "http://www.csail.mit.edu/events/eventcalendar/calendar.php?show=event&id=3665",
"video": "http://www.csail.mit.edu/videoarchive/talks/hci/lam"
}
]
},
{
"year": "2011-2012",
"entries":[
{
"speaker": "Michael Terry",
"affiliation": "University of Waterloo",
"title": "Google Knows What You Hate About Your Kindle: Using Search Queries to Infer User Needs and Desires in Consumer Products",
"date": "October 28, 2011",
"time": "1-2pm",
"location": "32-G449",
"url": "http://www.csail.mit.edu/events/eventcalendar/calendar.php?show=event&id=3054",
"video": null
},
{
"speaker": "Rebecca Fiebrink",
"affiliation": "Princeton University",
"title": "Real-time, Interactive Machine Learning for Music Composition and Performance",
"date": "November 4, 2011",
"time": "1-2pm",
"location": "32-G449",
"url": "http://www.csail.mit.edu/events/eventcalendar/calendar.php?show=event&id=3055",
"video": null
},
{
"speaker": "Lada Adamic",
"affiliation": "Univerisity of Michigan",
"title": "To friend and to trust: eliciting truthful and useful ratings online",
"date": "November 18, 2011",
"time": "1-2pm",
"location": "32-G882",
"url": "http://www.csail.mit.edu/events/eventcalendar/calendar.php?show=event&id=3057",
"video": "http://www.csail.mit.edu/videoarchive/talks/hci/adamic"
},
{
"speaker": "Daniel Wigdor",
"affiliation": "University of Toronto",
"title": "Architecting user interfaces for the natural user",
"date": "December 2, 2011",
"time": "1-2pm",
"location": "32-G449",
"url": "http://www.csail.mit.edu/events/eventcalendar/calendar.php?show=event&id=3058",
"video": null
},
{
"speaker": "Desney Tan",
"affiliation": "Microsoft Research",
"title": "The Quest for Always-Available Mobile Interaction",
"date": "December 7, 2011",
"time": "1-2pm",
"location": "32-G882",
"url": "http://www.csail.mit.edu/events/eventcalendar/calendar.php?show=event&id=3104",
"video": "http://www.csail.mit.edu/videoarchive/talks/hci/tan"
},
{
"speaker": "Panos Iperiotis",
"affiliation": "NYU",
"title": "Crowdsourcing: Quality Assurance and Connections with Machine Learning",
"date": "December 9, 2011",
"time": "1-2pm",
"location": "32-G449",
"url": "http://www.csail.mit.edu/events/eventcalendar/calendar.php?show=event&id=3059",
"video": null
},
{
"speaker": "Adrian Kuhn",
"affiliation": "University of British Columbia",
"title": "Software Cartography",
"date": "December 14, 2011",
"time": "2-3pm",
"location": "32-G449",
"url": "http://www.csail.mit.edu/events/eventcalendar/calendar.php?show=event&id=3056",
"video": "http://www.csail.mit.edu/videoarchive/talks/hci/kuhn"
},
{
"speaker": "Tovi Grossman",
"affiliation": "Autodesk Research",
"title": "Understanding and Improving the Learnability of Software Applications",
"date": "March 2, 2012",
"time": "2-3pm",
"location": "32-G449",
"url": "http://www.csail.mit.edu/events/eventcalendar/calendar.php?show=event&id=3211",
"video": "http://www.csail.mit.edu/videoarchive/talks/hci/grossman"
},
{
"speaker": "Remco Chang",
"affiliation": "Tufts University",
"title": "User-Centric Visual Analytics",
"date": "March 16, 2012",
"time": "2-3pm",
"location": "32-G449",
"url": "http://www.csail.mit.edu/events/eventcalendar/calendar.php?show=event&id=3216",
"video": "http://www.csail.mit.edu/videoarchive/talks/hci/chang"
},
{
"speaker": "Aniket Kittur",
"affiliation": "Carnegie Mellon University",
"title": "Crowdsouring, collaboration, and creativity",
"date": "April 6, 2012",
"time": "2-3pm",
"location": "32-G449",
"url": "http://www.csail.mit.edu/events/eventcalendar/calendar.php?show=event&id=3213",
"video": "http://www.csail.mit.edu/videoarchive/talks/hci/kittur2"
},
{
"speaker": "Björn Hartmann",
"affiliation": "University of California, Berkeley",
"title": "Feedback, Monitoring, and Free Snacks: Management Techniques for Crowd Work",
"date": "April 26, 2012",
"time": "11am-12pm",
"location": "32-G449",
"url": "http://www.csail.mit.edu/events/eventcalendar/calendar.php?show=event&id=3262",
"video": "http://www.csail.mit.edu/videoarchive/talks/hci/hartmann"
},
{
"speaker": "Mark Ackerman",
"affiliation": "University of Michigan",
"title": "Configuration <i>w</i>ork and the Escalier System",
"date": "April 27, 2012",
"time": "2-3pm",
"location": "32-G449",
"url": "http://www.csail.mit.edu/events/eventcalendar/calendar.php?show=event&id=3214",
"video": "http://www.csail.mit.edu/videoarchive/talks/hci/ackerman"
},
{
"speaker": "Sep Kamvar",
"affiliation": "MIT",
"title": "Languages for Social Computation",
"date": "May 18, 2012",
"time": "2-3pm",
"location": "32-G449",
"url": "http://www.csail.mit.edu/events/eventcalendar/calendar.php?show=event&id=3215",
"video": null
}
]
},
{
"year": "2010-2011",
"entries":[
{
"speaker": "David Ayman Shamma",
"affiliation": "Yahoo! Research",
"title": "Staying together: Understanding People and Media in Synchronous Connected Systems",
"date": "October 8, 2010",
"time": "1-2pm",
"location": "32-G449",
"url": "http://www.csail.mit.edu/events/eventcalendar/calendar.php?show=event&id=2729",
"video": "http://www.csail.mit.edu/videoarchive/talks/hci/shamma"
},
{
"speaker": "Mira Dontcheva",
"affiliation": "Adobe Research",
"title": "Graphic Design Tasks and the Web",
"date": "October 15, 2010",
"time": "1-2pm",
"location": "32-D463",
"url": "http://www.csail.mit.edu/events/eventcalendar/calendar.php?show=event&id=2746",
"video": "http://www.csail.mit.edu/videoarchive/talks/hci/dontcheva"
},
{
"speaker": "Jennifer 8. Lee",
"affiliation": "Knight News Challenge",
"title": "Innovating the News",
"date": "November 19, 2010",
"time": "1-2pm",
"location": "32-G449",
"url": "http://www.csail.mit.edu/events/eventcalendar/calendar.php?show=event&id=2783",
"video": "http://www.csail.mit.edu/videoarchive/talks/hci/lee"
},
{
"speaker": "mc schraefel",
"affiliation": "University of Southampon",
"title": "Designing away from threat and towards performance: On the Road to Neural HCI",
"date": "February 4, 2011",
"time": "1-2pm",
"location": "32-G449",
"url": "http://www.csail.mit.edu/events/eventcalendar/calendar.php?show=event&id=2827",
"video": null
},
{
"speaker": "Ken Perlin",
"affiliation": "NYU",
"title": "The Future of Human/Computer Interfaces",
"date": "February 18, 2011",
"time": "1-2pm",
"location": "32-G449",
"url": "http://www.csail.mit.edu/events/eventcalendar/calendar.php?show=event&id=2834",
"video": "http://www.csail.mit.edu/videoarchive/talks/hci/perlin"
},
{
"speaker": "Joel Brandt",
"affiliation": "Adobe Systems",
"title": "Example-Centric Programming",
"date": "February 25, 2011",
"time": "1-2pm",
"location": "32-G449",
"url": "http://www.csail.mit.edu/events/eventcalendar/calendar.php?show=event&id=2835",
"video": "http://www.csail.mit.edu/videoarchive/talks/hci/brandt"
},
{
"speaker": "Kuang Chen",
"affiliation": "UC Berkeley",
"title": "Data in the First Mile",
"date": "March 11, 2011",
"time": "1-2pm",
"location": "32-G449",
"url": "http://www.csail.mit.edu/events/eventcalendar/calendar.php?show=event&id=2836",
"video": "http://www.csail.mit.edu/videoarchive/talks/hci/chen"
},
{
"speaker": "Adam Perer",
"affiliation": "IBM Research",
"title": "Making Sense of Social Networks",
"date": "March 18, 2011",
"time": "1-2pm",
"location": "32-G449",
"url": "http://www.csail.mit.edu/events/eventcalendar/calendar.php?show=event&id=2843",
"video": "http://www.csail.mit.edu/videoarchive/talks/hci/perer"
},
{
"speaker": "Nicole Ellison",
"affiliation": "Michigan State University",
"title": "The benefits of Facebook \"Friends\": The social capital implications of Facebook-enabled communication practices",
"date": "April 1, 2011",
"time": "1-2pm",
"location": "32-G449",
"url": "http://www.csail.mit.edu/events/eventcalendar/calendar.php?show=event&id=2837",
"video": "http://www.csail.mit.edu/videoarchive/talks/hci/ellison"
},
{
"speaker": "John Riedl",
"affiliation": "University of Minnesota",
"title": "The Effects of Diversity on Productivity, Member Withdrawal, and Decision Quality in a Social Production Community",
"date": "April 8, 2011",
"time": "1-2pm",
"location": "32-G449",
"url": "http://www.csail.mit.edu/events/eventcalendar/calendar.php?show=event&id=2838",
"video": "http://www.csail.mit.edu/videoarchive/talks/hci/riedl"
},
{
"speaker": "Andy Ko",
"affiliation": "University of Washington",
"title": "Defect Detection for the Wayward Web",
"date": "April 15, 2011",
"time": "1-2pm",
"location": "32-G449",
"url": "http://www.csail.mit.edu/events/eventcalendar/calendar.php?show=event&id=2839",
"video": "http://www.csail.mit.edu/videoarchive/talks/hci/ko"
},
{
"speaker": "Cliff Lampe",
"affiliation": "Michigan State University",
"title": "\"Earn Your Bull$&!*\": User Lifecycles in Social Media",
"date": "April 22, 2011",
"time": "1-2pm",
"location": "32-G449",
"url": "http://www.csail.mit.edu/events/eventcalendar/calendar.php?show=event&id=2840",
"video": "http://www.csail.mit.edu/videoarchive/talks/hci/lampe"
},
{
"speaker": "Liz Gerber",
"affiliation": "Northwestern University",
"title": "Technology that Motivates Creative Action",
"date": "April 29, 2011",
"time": "1-2pm",
"location": "32-G449",
"url": "http://www.csail.mit.edu/events/eventcalendar/calendar.php?show=event&id=2841",
"video": "http://www.csail.mit.edu/videoarchive/talks/hci/gerber"
}
]
},
{
"year": "2009-2010",
"entries":[
{
"speaker": "John Stasko",
"affiliation": "Georgia Institute of Technology",
"title": "Visual Analytics for Investigative Analysis and Exploration of Document Collections",
"date": "September 11 2009",
"time": "1-2pm",
"location": "34-401",
"url": "http://www.csail.mit.edu/events/eventcalendar/series_exp.php?show=event&id=2339",
"video": null
},
{
"speaker": "Douglas Crockford",
"affiliation": "Yahoo!",
"title": "Javascript: The Good Parts",
"date": "September 18 2009",
"time": "1-2pm",
"location": "32-G449",
"url": "http://www.csail.mit.edu/events/eventcalendar/series_exp.php?show=event&id=2341",
"video": "http://www.csail.mit.edu/videoarchive/talks/hci/Crockford"
},
{
"speaker": "Jeff Nichols",
"affiliation": "IBM Research",
"title": "Highlight: Mobilizing Existing Web Sites",
"date": "October 2 2009",
"time": "1-2pm",
"location": "32-G449",
"url": "http://www.csail.mit.edu/events/eventcalendar/series_exp.php?show=event&id=2378",
"video": "http://www.csail.mit.edu/videoarchive/talks/hci/Nichols"
},
{
"speaker": "Steve Whittaker",
"affiliation": "IBM Research, Almaden",
"title": "The Past, Present, and Future of Digital Memories",
"date": "October 23 2009",
"time": "1-2pm",
"location": "32-G449",
"url": "http://www.csail.mit.edu/events/eventcalendar/series_exp.php?show=event&id=2342",
"video": "http://www.csail.mit.edu/videoarchive/talks/hci/Whittaker"
},
{
"speaker": "Chieko Asakawa",
"affiliation": "IBM Research Tokyo",
"title": "Challenges and Opportunities in Accessibility Research",
"date": "October 30 2009",
"time": "1-2pm",
"location": "32-G449",
"url": "http://www.csail.mit.edu/events/eventcalendar/series_exp.php?show=event&id=2343",
"video": "http://www.csail.mit.edu/videoarchive/talks/hci/Asakawa"
},
{
"speaker": "Michael Muller and N Sadat Shami",
"affiliation": "IBM Research and IBM Center for Social Software",
"title": "Patterns of File-Sharing in an Enterprise: Authors, Contributors, Collectors, and Lurkers",
"date": "November 6 2009",
"time": "1-2pm",
"location": "32-G449",
"url": "http://www.csail.mit.edu/events/eventcalendar/series_exp.php?show=event&id=2359",
"video": "http://www.csail.mit.edu/videoarchive/talks/hci/Muller"
},
{
"speaker": "Jonathan Grudin",
"affiliation": "Microsoft Research",
"title": "Enterprise Uses of Social Media",
"date": "November 13 2009",
"time": "1-2pm",
"location": "32-D463",
"url": "http://www.csail.mit.edu/events/eventcalendar/series_exp.php?show=event&id=2345",
"video": "http://www.csail.mit.edu/videoarchive/talks/hci/grudin"
},
{
"speaker": "danah boyd",
"affiliation": "Microsoft Research and Harvard Berkman Center for Internet and Society",
"title": "Youth-Generated Culture: Growing Up in an Era of Social Media",
"date": "November 20 2009",
"time": "1-2pm",
"location": "32-G449",
"url": "http://www.csail.mit.edu/events/eventcalendar/series_exp.php?show=event&id=2344",
"video": "http://www.csail.mit.edu/videoarchive/talks/hci/boyd"
},
{
"speaker": "Elizabeth Churchill",
"affiliation": "Yahoo! Research",
"title": "Beyond the hype of FlickTwitFaceSpace: The social Internet in everyday life",
"date": "December 4 2009",
"time": "1-2pm",
"location": "32-G449",
"url": "http://www.csail.mit.edu/events/eventcalendar/series_exp.php?show=event&id=2346",
"video": "http://www.csail.mit.edu/videoarchive/talks/hci/churchill"
},
{
"speaker": "Karrie Karahalios",
"affiliation": "University of Illinois at Urbana-Champaign",
"title": "From Turn-taking to Social Ties",
"date": "February 12, 2010",
"time": "1-2pm",
"location": "32-G449",
"url": "http://www.csail.mit.edu/events/eventcalendar/series_exp.php?show=event&id=2493",
"video": "http://www.csail.mit.edu/videoarchive/talks/hci/karahalios"
},
{
"speaker": "Niki Kittur",
"affiliation": "Carnegie Mellon University",
"title": "Combining Minds: Coordination and Social Sensemaking",
"date": "February 19, 2010",
"time": "1-2pm",
"location": "32-G449",
"url": "http://www.csail.mit.edu/events/eventcalendar/series_exp.php?show=event&id=2492",
"video": "http://www.csail.mit.edu/videoarchive/talks/hci/kittur"
},
{
"speaker": "Nick Bilton",
"affiliation": "New York Times",
"title": "Research, Design, Visualization at the New York Times",
"date": "April 9, 2010",
"time": "1-2pm",
"location": "32-G449",
"url": "http://www.csail.mit.edu/events/eventcalendar/series_exp.php?show=event&id=2521",
"video": "http://www.csail.mit.edu/videoarchive/talks/hci/bilton"
},
{
"speaker": "Chris Schmandt",
"affiliation": "MIT Media Lab",
"title": "Person-centered location based computing",
"date": "May 7, 2010",
"time": "1-2pm",
"location": "32-G449",
"url": "http://www.csail.mit.edu/events/eventcalendar/series_exp.php?show=event&id=2629",
"video": null
}
]
},
{
"year": "2008-2009",
"entries":[
{
"speaker": "Li-Te Cheng and Steven Rohall",
"affiliation": "IBM Research Cambridge",
"title": "Bluegrass - Embedding a Virtual World In a Collaborative Software Development Environment",
"date": "September 5, 2008",
"time": "2-3pm",
"location": "32-G449",
"url": "http://www.csail.mit.edu/events/eventcalendar/series_exp.php?show=event&id=1959",
"video": null
},
{
"speaker": "Merrie Morris",
"affiliation": "Microsoft Research",
"title": "SearchTogether and CoSearch: New Tools for Enabling Collaborative Web Search",
"date": "September 26, 2008",
"time": "2-3pm",
"location": "32-D463",
"url": "http://www.csail.mit.edu/events/eventcalendar/series_exp.php?show=event&id=1946",
"video": "http://www.csail.mit.edu/videoarchive/talks/hci/morris"
},
{
"speaker": "Maneesh Agrawala",
"affiliation": "UC Berkeley",
"title": "Design Principles for Visual Communication",
"date": "October 10, 2008",
"time": "1-2pm",
"location": "32-G449",
"url": "http://www.csail.mit.edu/events/eventcalendar/series_exp.php?show=event&id=1997",
"video": null
},
{
"speaker": "Khai N. Truong",
"affiliation": "University of Toronto",
"title": "Beyond Google",
"date": "October 17, 2008",
"time": "2-3pm",
"location": "32-G449",
"url": "http://www.csail.mit.edu/events/eventcalendar/series_exp.php?show=event&id=1947",
"video": "http://www.csail.mit.edu/videoarchive/talks/hci/truong"
},
{
"speaker": "Jill Freyne",
"affiliation": "University College Dublin",
"title": "Collaborative Web Search: Exploiting Social Interaction Patterns for Increased Result Relevance",
"date": "November 7, 2008",
"time": "2-3pm",
"location": "32-G449",
"url": "http://www.csail.mit.edu/events/eventcalendar/series_exp.php?show=event&id=1965",
"video": "http://www.csail.mit.edu/videoarchive/talks/hci/freyne"
},
{
"speaker": "Fran\u00e7ois Guimbreti\u00e8re",
"affiliation": "University of Maryland Human-Computer Interaction Lab",
"title": "People, Pens and Computers",
"date": "November 14, 2008",
"time": "2-3pm",
"location": "32-G449",
"url": "http://www.csail.mit.edu/events/eventcalendar/series_exp.php?show=event&id=1964",
"video": "http://www.csail.mit.edu/videoarchive/talks/hci/guimbretiere"
},
{
"speaker": "Ryan Lesser and Dan Schmidt",
"affiliation": "Harmonix",
"title": "How Harmonix has Changed the User Interface of Gaming",
"date": "November 21, 2008",
"time": "3-4pm",
"location": "32-155",
"url": "http://www.csail.mit.edu/events/eventcalendar/series_exp.php?show=event&id=1998",
"video": null
},
{
"speaker": "Saul Greenberg",
"affiliation": "University of Calgary",
"title": "Enhancing Creativity with Toolkits",
"date": "December 3, 2008",
"time": "11am-12pm",
"location": "32-G449",
"url": "http://www.csail.mit.edu/events/eventcalendar/series_exp.php?show=event&id=1948",
"video": "http://www.csail.mit.edu/videoarchive/talks/hci/greenberg"
},
{
"speaker": "Ed Chi",
"affiliation": "PARC",
"title": "Augmented Social Cognition: Using Web2.0 technology to enhance the ability of groups to remember, think, and reason",
"date": "February 3, 2009",
"time": "11am-12pm",
"location": "32-G449",
"url": "http://www.csail.mit.edu/events/eventcalendar/series_exp.php?show=event&id=2089",
"video": "http://www.csail.mit.edu/videoarchive/talks/hci/chi"
},
{
"speaker": "Ruth Rosenholtz",
"affiliation": "MIT Brain and Cognitive Sciences",
"title": "Do predictions of visual perception aid design?",
"date": "February 20, 2009",
"time": "2-3pm",
"location": "32-G449",
"url": "http://www.csail.mit.edu/events/eventcalendar/series_exp.php?show=event&id=2108",
"video": "http://www.csail.mit.edu/videoarchive/talks/hci/rosenholtz"
},
{
"speaker": "Krzysztof Gajos",
"affiliation": "Harvard University and Microsoft Research",
"title": "Automatically Generating Personalized User Interfaces",
"date": "February 27, 2009",
"time": "2-3pm",
"location": "32-G449",
"url": "http://www.csail.mit.edu/events/eventcalendar/series_exp.php?show=event&id=2104",
"video": "http://www.csail.mit.edu/videoarchive/talks/hci/gajos"
},
{
"speaker": "Belle Tseng",
"affiliation": "Yahoo!",
"title": "Universal Web Search Relevance",
"date": "March 3, 2009",
"time": "11am-12pm",
"location": "32-D463",
"url": "http://www.csail.mit.edu/events/eventcalendar/series_exp.php?show=event&id=2111",
"video": "http://www.csail.mit.edu/videoarchive/talks/hci/tseng"
},
{
"speaker": "Joseph Lawrance",
"affiliation": "Oregon State University",
"title": "Information Foraging in Debugging",
"date": "March 13, 2009",
"time": "2-3pm",
"location": "32-G449",
"url": "http://www.csail.mit.edu/events/eventcalendar/series_exp.php?show=event&id=2126",
"video": "http://www.csail.mit.edu/videoarchive/talks/hci/lawrance"
},
{
"speaker": "Takeo Igarashi",
"affiliation": "University of Tokyo",
"title": "Interactive \"Smart\" Computers",
"date": "March 30, 2009",
"time": "2-3pm",
"location": "32-D463",
"url": "http://www.csail.mit.edu/events/eventcalendar/series_exp.php?show=event&id=2125",
"video": "http://www.csail.mit.edu/videoarchive/talks/hci/igarashi"
},
{
"speaker": "Jaime Teevan",
"affiliation": "Microsoft Research",
"title": "The Web Changes Everything: How Dynamic Content Affects the Way People Find Online",
"date": "April 3, 2009",
"time": "2-3pm",
"location": "32-G449",
"url": "http://www.csail.mit.edu/events/eventcalendar/series_exp.php?show=event&id=2136",
"video": "http://www.csail.mit.edu/videoarchive/talks/hci/teevan"
},
{
"speaker": "Michel Beaudouin-Lafon",
"affiliation": "Universit\u00e9 de Paris-Sud",
"title": "Interaction Beyond Computation",
"date": "April 10, 2009",
"time": "11am-12pm",
"location": "32-D463",
"url": "http://www.csail.mit.edu/events/eventcalendar/series_exp.php?show=event&id=2105",
"video": null
},
{
"speaker": "Patrick Baudisch",
"affiliation": "Microsoft Research and Hasso Plattner Institute",
"title": "Back-of-Device Interaction Allows Creating Very Small Touch Devices",
"date": "April 10, 2009",
"time": "2-3pm",
"location": "32-G449",
"url": "http://www.csail.mit.edu/events/eventcalendar/series_exp.php?show=event&id=2167",
"video": "http://www.csail.mit.edu/videoarchive/talks/hci/baudisch"
},
{
"speaker": "Orit Shaer",
"affiliation": "Wellesley",
"title": "A Specification Paradigm for the Design and Implementation of Tangible User Interfaces",
"date": "May 1, 2009",
"time": "2-3pm",
"location": "32-G449",
"url": "http://www.csail.mit.edu/events/eventcalendar/series_exp.php?show=event&id=2107",
"video": "http://www.csail.mit.edu/videoarchive/talks/hci/shaer"
},
{
"speaker": "William Jones",
"affiliation": "University of Washington",
"title": "Putting Our Digital Information in Its Place: Lessons Learned from Fieldwork and Prototyping in the Keeping Found Things Found Project",
"date": "May 5, 2009",
"time": "11am-12pm",
"location": "32-G449",
"url": "http://www.csail.mit.edu/events/eventcalendar/series_exp.php?show=event&id=2121",
"video": "http://www.csail.mit.edu/videoarchive/talks/hci/jones"
}
]
},
{
"year": "2007-2008",
"entries":[
{
"speaker": "Bill Buxton",
"affiliation": "Microsoft Research",
"title": "Sketching and Design for the Wild: Why Programmers Should Return to Kindergarten Rather than Program",
"date": "September 14, 2007",
"time": "1-2pm",
"location": "32-141",
"url": "http://www.csail.mit.edu/events/eventcalendar/series_exp.php?show=event&id=1527",
"video": null
},
{
"speaker": "Jon Herlocker",
"affiliation": "Oregon State University and Smart Desktop, Inc.",
"title": "TaskTracer and Smart Desktop: Combining Activity Tracking with Machine Learning to Support Multi-tasking Information Workers",
"date": "September 21, 2007",
"time": "2-3pm",
"location": "32-G449",
"url": "http://www.csail.mit.edu/events/eventcalendar/series_exp.php?show=event&id=1536",
"video": null
},
{
"speaker": "Jason Hong",
"affiliation": "Carnegie Mellon HCI Institute",
"title": "User Interfaces and Algorithms for Anti-Phishing",
"date": "September 28, 2007",
"time": "2-3pm",
"location": "32-G449",
"url": "http://www.csail.mit.edu/events/eventcalendar/series_exp.php?show=event&id=1525",
"video": null
},
{
"speaker": "Scott Klemmer",
"affiliation": "Stanford University",
"title": "Enabling User Innovation through Improved Design Environments",
"date": "October 5, 2007",
"time": "2-3pm",
"location": "32-G449",
"url": "http://www.csail.mit.edu/events/eventcalendar/series_exp.php?show=event&id=1522",
"video": null
},
{
"speaker": "Ryen White",
"affiliation": "Microsoft Research",
"title": "Do Users Need a Search Parachute and a Search Compass? Supporting Navigation and Guided Discovery During Exploratory Search",
"date": "October 23, 2007",
"time": "1-2pm",
"location": "32-G449",
"url": "http://www.csail.mit.edu/events/eventcalendar/series_exp.php?show=event&id=1555",
"video": null
},
{
"speaker": "Amy Bruckman",
"affiliation": "Georgia Institute of Technology",
"title": "Shaping the Age of User-Generated Content",
"date": "November 2, 2007",
"time": "2-3pm",
"location": "32-G449",
"url": "http://www.csail.mit.edu/events/eventcalendar/series_exp.php?show=event&id=1526",
"video": null
},
{
"speaker": "Irene Greif",
"affiliation": "IBM Research",
"title": "In Crowds We Trust: Examples of Collective Wisdom",
"date": "November 9, 2007",
"time": "2-3pm",
"location": "32-G449",
"url": "http://www.csail.mit.edu/events/eventcalendar/series_exp.php?show=event&id=1538",
"video": null
},
{
"speaker": "Jeff Heer",
"affiliation": "UC Berkeley",
"title": "Voyagers and Voyeurs: Supporting Asynchronous Collaborative Information Visualization",
"date": "November 16, 2007",
"time": "2-3pm",
"location": "32-G449",
"url": "http://www.csail.mit.edu/events/eventcalendar/series_exp.php?show=event&id=1551",
"video": "http://www.csail.mit.edu/videoarchive/talks/hci/heer"
},
{
"speaker": "Towards Usable and Useful Multi-Touch Systems",
"affiliation": "University of Toronto",
"title": "Towards Usable and Useful Multi-Touch Systems",
"date": "November 30, 2007",
"time": "2-3pm",
"location": "32-G449",
"url": "http://www.csail.mit.edu/events/eventcalendar/series_exp.php?show=event&id=1564",
"video": null
},
{
"speaker": "Scott Hudson",
"affiliation": "Carnegie Mellon HCI Institute",
"title": "Viewing Ubiquitous Computing Through the Lens of Human Attention",
"date": "February 7, 2008",
"time": "2-3pm",
"location": "32-G449",
"url": "http://www.csail.mit.edu/events/eventcalendar/calendar.php?show=event&id=1708",
"video": null
},
{
"speaker": "Mark Ashdown",
"affiliation": "MIT Humans and Automation Laboratory",
"title": "Tabletop Displays and Remote Collaboration",
"date": "February 29, 2008",
"time": "2-3pm",
"location": "32-G449",
"url": "http://www.csail.mit.edu/events/eventcalendar/calendar.php?show=event&id=1748",
"video": null
},
{
"speaker": "Harry West",
"affiliation": "Continuum Design",
"title": "Interactive Experiences: Designing for Consumer 2.0",
"date": "March 7, 2008",
"time": "2-3pm",
"location": "32-G449",
"url": "http://www.csail.mit.edu/events/eventcalendar/calendar.php?show=event&id=1695",
"video": null
},
{
"speaker": "Candy Sidner",
"affiliation": "BAE Systems AIT",
"title": "Robots and People Collaborating: How to be an Engaging Robot",
"date": "March 14, 2008",
"time": "3-4pm",
"location": "32-D463",
"url": "http://www.csail.mit.edu/events/eventcalendar/calendar.php?show=event&id=1701",
"video": null
},
{
"speaker": "Tessa Lau",
"affiliation": "IBM Almaden Research Center",
"title": "Collaborative Scripting for the Web",
"date": "March 21, 2008",
"time": "2-3pm",
"location": "32-G449",
"url": "http://www.csail.mit.edu/events/eventcalendar/calendar.php?show=event&id=1706",
"video": null
},
{
"speaker": "Andreas Paepke",
"affiliation": "Stanford University",
"title": "Twenty Questions to Name That Bird",
"date": "April 18, 2008",
"time": "2-3pm",
"location": "32-G449",
"url": "http://www.csail.mit.edu/events/eventcalendar/calendar.php?show=event&id=1721",
"video": null
},
{
"speaker": "Dan Olsen",
"affiliation": "Brigham Young University",
"title": "Interactive Machine Learning",
"date": "May 2, 2008",
"time": "2-3pm",
"location": "32-G449",
"url": "http://www.csail.mit.edu/events/eventcalendar/calendar.php?show=event&id=1771",
"video": null
},
{
"speaker": "Ronald Baecker",
"affiliation": "Knowledge Media Design Institute and Dept of Computer Science, University of Toronto",
"title": "User Experience Research Challenges in Media Spaces for eLearning",
"date": "May 8, 2008",
"time": "2-3pm",
"location": "32-G449",
"url": "http://www.csail.mit.edu/events/eventcalendar/calendar.php?show=event&id=1696",
"video": null
},
{
"speaker": "Ben Fry",
"affiliation": "Processing.org",
"title": "Processing",
"date": "May 16, 2008",
"time": "2-3pm",
"location": "32-G449",
"url": "http://www.csail.mit.edu/events/eventcalendar/calendar.php?show=event&id=1698",
"video": null
}
]
},
{
"year": "2006-2007",
"entries":[
{
"speaker": "James Lin",
"affiliation": "IBM Research Almaden",
"title": "End-User Creation, Customization, and Sharing of Work Activities and Processes",
"date": "September 20, 2006",
"time": "11am-12pm",
"location": "32-G449",
"url": "http://www.csail.mit.edu/events/eventcalendar/series_exp.php?show=event&id=1227",
"video": null
},
{
"speaker": "Karen Holtzblatt",
"affiliation": "InContext Enterprises",
"title": "Contextual Design: From Customer Data to Implementation",
"date": "September 29, 2006",
"time": "1:30-2:30pm",
"location": "32-D463",
"url": "http://www.csail.mit.edu/events/eventcalendar/series_exp.php?show=event&id=1216",
"video": null
},
{
"speaker": "Peter Tarasewich",
"affiliation": "Northeasteren University",
"title": "Strengthening the Privacy & Security of Displayed Information",
"date": "October 6, 2006",
"time": "1:30-2:30pm",
"location": "32-D463",
"url": "http://www.csail.mit.edu/events/eventcalendar/series_exp.php?show=event&id=1217",
"video": null
},
{
"speaker": "Mary Ellen Zurko",
"affiliation": "IBM",
"title": "User-Centered Security: Stepping Up to the Grand Challenge",
"date": "October 20, 2006",
"time": "1:30-2:30pm",
"location": "32-D463",
"url": "http://www.csail.mit.edu/events/eventcalendar/series_exp.php?show=event&id=1218",
"video": null
},
{
"speaker": "mc schraefel",
"affiliation": "University of Southampton",
"title": "Making Tea with Chemists and Bioinformatitians - lessons learned in designing up close and at a distance",