-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathhci-seminar.html
1631 lines (1407 loc) · 72.2 KB
/
hci-seminar.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>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>MIT HCI Seminar</title>
<link rel="stylesheet" href="style.css" />
<meta name="viewport" content="width=device-width" />
</head>
<body>
<header>
<nav>
<h1>
<a href="http://hci.csail.mit.edu"><img src="images/logos/mithci.svg" alt="MIT HCI" /></a>
<svg viewBox="0 0 175 134"><use xlink:href="images/logos/csail.svg#logo" /></svg>
</h1>
<ul>
<!-- <li><a href="#2017">2017</a></li> -->
<li><a href="#2014">2014</a></li>
<li><a href="#2013">2013</a></li>
<li><a href="#2012">2012</a></li>
<li><a href="#2011">2011</a></li>
<li><a href="#2010">2010</a></li>
<li><a href="#2009">2009</a></li>
<li><a href="#2008">2008</a></li>
<li><a href="#2007">2007</a></li>
<li><a href="#2006">2006</a></li>
<li><a href="#2005">2005</a></li>
<li><a href="#2004">2004</a></li>
<li><a href="#2003">2003</a></li>
</ul>
</nav>
<h2>HCI Seminar at MIT CSAIL</h2>
</header>
<section id="schedule">
<h1>Spring 2017 Talk Schedule</h1>
<p>The HCI seminar meets every other week on the first and third Tuesday of each month.
</p>
<br>
<p class="info" style="padding-bottom:20px">
<strong title="When">📅 Tuesdays, 1pm-2pm</strong><br>
<a href="http://whereis.mit.edu/?go=32" title="Where">📍 Kiva Seminar Room, Stata Center (32G-449)</a><br><br>
<a href="http://lists.csail.mit.edu/mailman/listinfo/hci-seminar">📫 Subscribe</a>
<a href="mailto:[email protected]">✉️ Contact</a>
</p>
<h2 class="seminaryear">Next Talk:</h2>
<h3 id="t1">Dynamic Drawings for Communication & Design</h3>
<article>
<p><a href="https://rubaiathabib.me/">Rubaiat Habib</a>, Autodesk Research </p>
<p class="info" style="padding-bottom:20px">
<strong title="When">📅 February 7, 2017 (Tuesday), 1pm-2pm</strong><br>
<a href="http://whereis.mit.edu/?go=32" title="Where">📍 Kiva Seminar Room, Stata Center (32G-449)</a>
</p>
<p style="padding-bottom:10px"></p>
<strong>Abstract:</strong>
<p style="padding-bottom:10px">
In this talk, I am going to present and demo our award winning research initiative on creating custom animations - Project Draco. Project Draco was recently released as Sketchbook Motion, and was featured by Apple as "The best iPad app of the year 2016".
With Project Draco, we investigate the question of how we can enable everyone to bring life to otherwise static drawings—how can we make animation as easy as sketching a static image?
Most of us experience the power of animated media every day: animation makes it easy to communicate complex ideas beyond verbal language. However, only few of us have the skills to express ourselves through this medium. By making animation as easy, accessible, and fluid as sketching, I intend to make dynamic drawings a powerful medium to think, create, and communicate rapidly.
</p>
<strong>Bio:</strong>
<p>
Rubaiat Habib is a Sr. Research Scientist, artist, and designer at Autodesk Research. His research interest lies at the intersection of Computer Graphics and HCI for creative thinking, design, and storytelling. Rubaiat received several awards for his work including two ACM CHI Best Paper Nominations, ACM CHI and ACM UIST Peoples’ choice best talk awards, and ACM CHI Golden Mouse awards for best research videos. For his PhD at the National University of Singapore, Rubaiat also received a Microsoft Research Asia PhD fellowship. Rubaiat’s research in dynamic drawings and animation is regularly turned into new products reaching a global audience. As a freelance cartoonist and designer, he contributed to a number of magazines, books, and newspapers.
</p>
<br>
</article>
<h2 class="seminaryear">Upcoming Talks:</h2>
<h3 id="t2">Extreme Crowdsourcing: From Balloons to Ethics</h3>
<article>
<p><a href="http://www.mit.edu/~irahwan/">Iyad Rahwan</a>, MIT Media Lab </p>
<p class="info" style="padding-bottom:20px">
<strong title="When">📅 February 21, 2017 (Tuesday), 1pm-2pm</strong><br>
<a href="http://whereis.mit.edu/?go=32" title="Where">📍 Kiva Seminar Room, Stata Center (32G-449)</a>
</p>
<p style="padding-bottom:10px"></p>
<strong>Abstract:</strong>
<p style="padding-bottom:10px">
This talk explores the physical and cognitive limits of crowds, by following a number of real-world experiments that utilized social media to mobilize the masses in tasks of unprecedented complexity. From finding people in remote cities, to reconstructing shredded documents, the power of crowdsourcing is real, but so are exploitation, sabotage, and hidden biases that undermine the power of crowds.
</p>
<strong>Bio:</strong>
<p>
Iyad Rahwan is the AT&T Career Development Professor and an Associate Professor of Media Arts & Sciences at the MIT Media Lab, where he leads the Scalable Cooperation group. He holds a PhD from the University of Melbourne, Australia, and is an affiliate faculty at the MIT Institute of Data, Systems and Society (IDSS).
</p>
<br>
</article>
</section>
<section id="previous">
<h1 style="padding-top:10px">Previous Talks</h1>
<!------
READ ME:
- Please add the previous talk by 'date talk (newst first)'
- Please included the link to talk details like : 'https://calendar.csail.mit.edu/events/xxxxxx'
----->
<!------ 2014 -------------------------------------------------------------------------------------------------------------------------->
<h2 class="seminaryear" id="2014">2014</h2>
<article>
<div>
<strong><a href="https://calendar.csail.mit.edu/events/128867" target="_blank">Machine Learning Approaches for Understanding Social Interactions on Twitter</a></strong>
<p>Alice Oh, KAIST</p>
<p class="description">May 6, 2014. 2pm-3pm. Location: 32-G449</p>
</div>
</article>
<article>
<div>
<strong class="video semester"><a href="http://www.csail.mit.edu/videoarchive/talks/hci/hearst" target="_blank">Video</a></strong>
<strong><a href="https://calendar.csail.mit.edu/events/127968" target="_blank">Towards Collaborative Learning at Scale</a></strong>
<p>Marti Hearst, UC Berkeley</p>
<p class="description">April 11, 2014. 3pm-4pm. Location: 32-D463</p>
</div>
</article>
<article>
<div>
<strong class="video semester"><a href="http://www.csail.mit.edu/videoarchive/talks/hci/bailey" target="_blank">Video</a></strong>
<strong><a href="https://calendar.csail.mit.edu/events/126967" target="_blank">Design Thinking Tools for the Individual, Group and Community</a></strong>
<p>Brian Bailey, University of Illinois at Urbana-Champaign</p>
<p class="description">April 4, 2014. 2pm-3pm. Location: 32-G449</p>
</div>
</article>
<article>
<div>
<strong><a href="https://calendar.csail.mit.edu/events/122759" target="_blank">Programmer, Interrupted: Data, Brains, and Tools</a></strong>
<p>Chris Parnin, Georgia Institute of Technology</p>
<p class="description">March 13, 2014. 11am-12pm. Location: 32-G449</p>
</div>
</article>
<!------ 2013 -------------------------------------------------------------------------------------------------------------------------->
<h2 class="seminaryear" id="2013">2013</h2>
<article>
<div>
<strong><a href="https://calendar.csail.mit.edu/events/117922" target="_blank">Charting the space of wellbeing design for HCI Research and Evaluation in Four movements</a></strong>
<p>Mc Schraefel, University of Southampton</p>
<p class="description">November 22, 2013. 1pm-2pm. Location: 32-G449</p>
</div>
</article>
<article>
<div>
<strong><a href="https://calendar.csail.mit.edu/events/118884" target="_blank">Interactive Event Sequence Query and Transformation</a></strong>
<p>Megan Monroe, University of Maryland</p>
<p class="description">December 13, 2013. 1pm-2pm. Location: 32-G449</p>
</div>
</article>
<article>
<div>
<strong><a href="https://calendar.csail.mit.edu/events/118321" target="_blank">Co-Adaptive Instruments: Can we reinvent the graphical user interface?</a></strong>
<p>Wendy Mackay, Inria & Université Paris-Sud</p>
<p class="description">December 12, 2013. 2pm-3pm. Location: 32-G449</p>
</div>
</article>
<article>
<div>
<strong class="video semester"><a href="http://www.csail.mit.edu/videoarchive/talks/hci/lam" target="_blank">Video</a></strong>
<strong><a href="https://calendar.csail.mit.edu/events/3665" target="_blank">How Mobile Disrupts Social As We Know It</a></strong>
<p>Monica Lam, Stanford University</p>
<p class="description">April 10, 2013. 4pm-5pm. Location: 32-G449</p>
</div>
</article>
<article>
<div>
<strong class="video semester"><a href="http://www.csail.mit.edu/videoarchive/talks/hci/andre" target="_blank">Video</a></strong>
<strong><a href="https://calendar.csail.mit.edu/events/3626" target="_blank">Self and Social Awareness: Designing for Communication and Collaboration</a></strong>
<p>Paul André, Carnegie Mellon University</p>
<p class="description">March 8, 2013. 11am-12pm. Location: 32-G882</p>
</div>
</article>
<!------ 2012 -------------------------------------------------------------------------------------------------------------------------->
<h2 class="seminaryear" id="2012">2012</h2>
<article>
<div>
<strong class="video semester"><a href="http://www.csail.mit.edu/videoarchive/talks/hci/pilhofer" target="_blank">Video</a></strong>
<strong><a href="https://calendar.csail.mit.edu/events/3479" target="_blank">Goosing the Gray Lady: Data + journalism + graphics at The New York Times</a></strong>
<p>Aron Pilhofer, The New York Times</p>
<p class="description">December 14, 2012. 1pm-2pm. Location: 32-G449</p>
</div>
</article>
<article>
<div>
<strong class="video semester"><a href="http://www.csail.mit.edu/videoarchive/talks/hci/gilbert" target="_blank">Video</a></strong>
<strong><a href="https://calendar.csail.mit.edu/events/3462" target="_blank">Designing social computing systems around relationships</a></strong>
<p>Eric Gilbert, Georgia Tech</p>
<p class="description">December 7, 2012. 1pm-2pm. Location: 32-G449</p>
</div>
</article>
<article>
<div>
<strong class="video semester"><a href="http://www.csail.mit.edu/videoarchive/talks/hci/guzdial" target="_blank">Video</a></strong>
<strong><a href="https://calendar.csail.mit.edu/events/3461" target="_blank">What We Know About Teaching Computer Science: On-Line or In-Classroom (Answer: Not all that much)</a></strong>
<p>Mark Guzdial, Georgia Tech</p>
<p class="description">November 30, 2012. 1-2pm. Location: 32-G449</p>
</div>
</article>
<article>
<div>
<strong class="video semester"><a href="http://www.csail.mit.edu/videoarchive/talks/hci/ogan" target="_blank">Video</a></strong>
<strong><a href="https://calendar.csail.mit.edu/events/3460" target="_blank">Taking Educational Technology Worldwide: Challenging the Assumptions of Personalized Learning</a></strong>
<p>Amy Ogan, Carnegie Mellon University</p>
<p class="description">November 16, 2012. 1pm-2pm. Location: 32-G449</p>
</div>
</article>
<article>
<div>
<strong class="video semester"><a href="http://www.csail.mit.edu/videoarchive/talks/hci/harrison" target="_blank">Video</a></strong>
<strong><a href="https://calendar.csail.mit.edu/events/3463" target="_blank">Interacting with Small Devices in Big Ways</a></strong>
<p>Chris Harrison, Carnegie Mellon University</p>
<p class="description">November 15, 2012. 3pm-4pm. Location: 32-G449</p>
</div>
</article>
<article>
<div>
<strong class="video semester"><a href="http://www.csail.mit.edu/videoarchive/talks/hci/bigham" target="_blank">Video</a></strong>
<strong><a href="https://calendar.csail.mit.edu/?show=event&id=3459" target="_blank">Crowd Agents: Interactive Crowd-Powered Systems in the Real World</a></strong>
<p>Jeff Bigham, University of Rochester</p>
<p class="description">November 9, 2012. 1pm-2pm. Location: 32-G882</p>
</div>
</article>
<article>
<div>
<strong class="video semester"><a href="http://www.csail.mit.edu/videoarchive/talks/hci/dow" target="_blank">Video</a></strong>
<strong><a href="https://calendar.csail.mit.edu/events/3458" target="_blank">Understanding Iterative Design with Individuals, Groups, and Crowds</a></strong>
<p>Steven Dow, Carnegie Mellon University</p>
<p class="description">November 2, 2012. 1pm-2pm. Location: 32-G449</p>
</div>
</article>
<article>
<div>
<strong><a href="https://calendar.csail.mit.edu/?show=event&id=3215" target="_blank">Languages for Social Computation</a></strong>
<p>Sep Kamvar, MIT</p>
<p class="description">May 18, 2012. 2pm-3pm. Location: 32-G449</p>
</div>
</article>
<article>
<div>
<strong class="video semester"><a href="http://www.csail.mit.edu/videoarchive/talks/hci/ackerman" target="_blank">Video</a></strong>
<strong><a href="https://calendar.csail.mit.edu/events/3214" target="_blank">Configuration work and the Escalier System</a></strong>
<p>Mark Ackerman, University of Michigan</p>
<p class="description">April 27, 2012. 2pm-3pm. Location: 32-G449</p>
</div>
</article>
<article>
<div>
<strong class="video semester"><a href="http://www.csail.mit.edu/videoarchive/talks/hci/hartmann" target="_blank">Video</a></strong>
<strong><a href="https://calendar.csail.mit.edu/events/3262" target="_blank">Feedback, Monitoring, and Free Snacks: Management Techniques for Crowd Work</a></strong>
<p>Björn Hartmann, University of California, Berkeley</p>
<p class="description">April 26, 2012. 11am-12pm. Location: 32-G449</p>
</div>
</article>
<article>
<div>
<strong class="video semester"><a href="http://www.csail.mit.edu/videoarchive/talks/hci/kittur2" target="_blank">Video</a></strong>
<strong><a href="https://calendar.csail.mit.edu/events/3213" target="_blank">Crowdsouring, collaboration, and creativity</a></strong>
<p>Aniket Kittur, Carnegie Mellon University</p>
<p class="description">April 6, 2012. 2pm-3pm. Location: 32-G449</p>
</div>
</article>
<article>
<div>
<strong class="video semester"><a href="http://www.csail.mit.edu/videoarchive/talks/hci/chang" target="_blank">Video</a></strong>
<strong><a href="https://calendar.csail.mit.edu/events/3216" target="_blank">User-Centric Visual Analytics</a></strong>
<p>Remco Chang, Tufts University</p>
<p class="description">March 16, 2012. 2pm-3pm. Location: 32-G449</p>
</div>
</article>
<article>
<div>
<strong class="video semester"><a href="http://www.csail.mit.edu/videoarchive/talks/hci/grossman" target="_blank">Video</a></strong>
<strong><a href="https://calendar.csail.mit.edu/events/3211" target="_blank">Understanding and Improving the Learnability of Software Applications</a></strong>
<p>Tovi Grossman, Autodesk Research</p>
<p class="description">March 2, 2012. 2pm-3pm. Location: 32-G449</p>
</div>
</article>
<!------ 2011 -------------------------------------------------------------------------------------------------------------------------->
<h2 class="seminaryear" id="2011">2011</h2>
<article>
<div>
<strong class="video semester"><a href="http://www.csail.mit.edu/videoarchive/talks/hci/kuhn" target="_blank">Video</a></strong>
<strong><a href="https://calendar.csail.mit.edu/events/3056" target="_blank">Software Cartography</a></strong>
<p>Adrian Kuhn, University of British Columbia</p>
<p class="description">December 14, 2011. 2pm-3pm. Location: 32-G449</p>
</div>
</article>
<article>
<div>
<strong><a href="https://calendar.csail.mit.edu/events/3059" target="_blank">Crowdsourcing: Quality Assurance and Connections with Machine Learning</a></strong>
<p>Panos Iperiotis, NYU</p>
<p class="description">December 9, 2011. 1pm-2pm. Location: 32-G449</p>
</div>
</article>
<article>
<div>
<strong class="video semester"><a href="http://www.csail.mit.edu/videoarchive/talks/hci/tan" target="_blank">Video</a></strong>
<strong><a href="https://calendar.csail.mit.edu/events/3104" target="_blank">The Quest for Always-Available Mobile Interaction</a></strong>
<p>Desney Tan, Microsoft Research</p>
<p class="description">December 7, 2011. 1pm-2pm. Location: 32-G882</p>
</div>
</article>
<article>
<div>
<strong><a href="https://calendar.csail.mit.edu/events/3058" target="_blank">Architecting user interfaces for the natural user</a></strong>
<p>Daniel Wigdor, University of Toronto</p>
<p class="description">December 2, 2011. 1pm-2pm. Location: 32-G449</p>
</div>
</article>
<article>
<div>
<strong class="video semester"><a href="http://www.csail.mit.edu/videoarchive/talks/hci/adamic" target="_blank">Video</a></strong>
<strong><a href="https://calendar.csail.mit.edu/events/3057" target="_blank">To friend and to trust: eliciting truthful and useful ratings online</a></strong>
<p>Lada Adamic, Univerisity of Michigan</p>
<p class="description">November 18, 2011. 1pm-2pm. Location: 32-G882</p>
</div>
</article>
<article>
<div>
<strong><a href="https://calendar.csail.mit.edu/events/3055" target="_blank">Real-time, Interactive Machine Learning for Music Composition and Performance</a></strong>
<p>Rebecca Fiebrink, Princeton University</p>
<p class="description">November 4, 2011. 1pm-2pm. Location: 32-G449</p>
</div>
</article>
<article>
<div>
<strong><a href="https://calendar.csail.mit.edu/events/3054" target="_blank">Google Knows What You Hate About Your Kindle: Using Search Queries to Infer User Needs and Desires in Consumer Products</a></strong>
<p>Michael Terry, University of Waterloo</p>
<p class="description">October 28, 2011. 1pm-2pm. Location: 32-G449</p>
</div>
</article>
<article>
<div>
<strong class="video semester"><a href="http://www.csail.mit.edu/videoarchive/talks/hci/gerber" target="_blank">Video</a></strong>
<strong><a href="https://calendar.csail.mit.edu/events/2841" target="_blank">Technology that Motivates Creative Action</a></strong>
<p>Liz Gerber, Northwestern University</p>
<p class="description">April 29, 2011. 1pm-2pm. Location: 32-G449</p>
</div>
</article>
<article>
<div>
<strong class="video semester"><a href="http://www.csail.mit.edu/videoarchive/talks/hci/lampe" target="_blank">Video</a></strong>
<strong><a href="https://calendar.csail.mit.edu/events/2840" target="_blank">"Earn Your Bull$&!*": User Lifecycles in Social Media</a></strong>
<p>Cliff Lampe, Michigan State University</p>
<p class="description">April 22, 2011. 1pm-2pm. Location: 32-G449</p>
</div>
</article>
<article>
<div>
<strong class="video semester"><a href="http://www.csail.mit.edu/videoarchive/talks/hci/ko" target="_blank">Video</a></strong>
<strong><a href="https://calendar.csail.mit.edu/events/2839" target="_blank">Defect Detection for the Wayward Web</a></strong>
<p>Andy Ko, University of Washington</p>
<p class="description">April 15, 2011. 1pm-2pm. Location: 32-G449</p>
</div>
</article>
<article>
<div>
<strong class="video semester"><a href="http://www.csail.mit.edu/videoarchive/talks/hci/riedl" target="_blank">Video</a></strong>
<strong><a href="https://calendar.csail.mit.edu/events/2838" target="_blank">The Effects of Diversity on Productivity, Member Withdrawal, and Decision Quality in a Social Production Community</a></strong>
<p>John Riedl, University of Minnesota</p>
<p class="description">April 8, 2011. 1pm-2pm. Location: 32-G449</p>
</div>
</article>
<article>
<div>
<strong class="video semester"><a href="http://www.csail.mit.edu/videoarchive/talks/hci/ellison" target="_blank">Video</a></strong>
<strong><a href="https://calendar.csail.mit.edu/events/2837" target="_blank">The benefits of Facebook "Friends": The social capital implications of Facebook-enabled communication practices</a></strong>
<p>Nicole Ellison, Michigan State University</p>
<p class="description">April 1, 2011. 1pm-2pm. Location: 32-G449</p>
</div>
</article>
<article>
<div>
<strong class="video semester"><a href="http://www.csail.mit.edu/videoarchive/talks/hci/perer" target="_blank">Video</a></strong>
<strong><a href="https://calendar.csail.mit.edu/events/2843" target="_blank">Making Sense of Social Networks</a></strong>
<p>Adam Perer, IBM Research</p>
<p class="description">March 18, 2011. 1pm-2pm. Location: 32-G449</p>
</div>
</article>
<article>
<div>
<strong class="video semester"><a href="http://www.csail.mit.edu/videoarchive/talks/hci/chen" target="_blank">Video</a></strong>
<strong><a href="https://calendar.csail.mit.edu/events/2836" target="_blank">Data in the First Mile</a></strong>
<p>Kuang Chen, UC Berkeley</p>
<p class="description">March 11, 2011. 1pm-2pm. Location: 32-G449</p>
</div>
</article>
<article>
<div>
<strong class="video semester"><a href="http://www.csail.mit.edu/videoarchive/talks/hci/brandt" target="_blank">Video</a></strong>
<strong><a href="https://calendar.csail.mit.edu/events/2835" target="_blank">Example-Centric Programming</a></strong>
<p>Joel Brandt, Adobe Systems</p>
<p class="description">February 25, 2011. 1pm-2pm. Location: 32-G449</p>
</div>
</article>
<article>
<div>
<strong class="video semester"><a href="http://www.csail.mit.edu/videoarchive/talks/hci/perlin" target="_blank">Video</a></strong>
<strong><a href="https://calendar.csail.mit.edu/events/2834" target="_blank">The Future of Human/Computer Interfaces</a></strong>
<p>Ken Perlin, NYU</p>
<p class="description">February 18, 2011. 1pm-2pm. Location: 32-G449</p>
</div>
</article>
<article>
<div>
<strong><a href="https://calendar.csail.mit.edu/events/2827" target="_blank">Designing away from threat and towards performance: On the Road to Neural HCI</a></strong>
<p>Mc Schraefel, University of Southampon</p>
<p class="description">February 4, 2011. 1pm-2pm. Location: 32-G449</p>
</div>
</article>
<!------ 2010 -------------------------------------------------------------------------------------------------------------------------->
<h2 class="seminaryear" id="2010">2010</h2>
<article>
<div>
<strong class="video semester"><a href="http://www.csail.mit.edu/videoarchive/talks/hci/lee" target="_blank">Video</a></strong>
<strong><a href="https://calendar.csail.mit.edu/events/2783" target="_blank">Innovating the News</a></strong>
<p>Jennifer Lee, Knight News Challenge</p>
<p class="description">November 19, 2010. 1pm-2pm. Location: 32-G449</p>
</div>
</article>
<article>
<div>
<strong class="video semester"><a href="http://www.csail.mit.edu/videoarchive/talks/hci/dontcheva" target="_blank">Video</a></strong>
<strong><a href="https://calendar.csail.mit.edu/events/2746" target="_blank">Graphic Design Tasks and the Web</a></strong>
<p>Mira Dontcheva, Adobe Research</p>
<p class="description">October 15, 2010. 1pm-2pm. Location: 32-D463</p>
</div>
</article>
<article>
<div>
<strong class="video semester"><a href="http://www.csail.mit.edu/videoarchive/talks/hci/shamma" target="_blank">Video</a></strong>
<strong><a href="https://calendar.csail.mit.edu/?show=event&id=2729" target="_blank">Staying together: Understanding People and Media in Synchronous Connected Systems</a></strong>
<p>David Ayman Shamma, Yahoo! Research</p>
<p class="description">October 8, 2010. 1pm-2pm. Location: 32-G449</p>
</div>
</article>
<article>
<div>
<strong><a href="https://calendar.csail.mit.edu/events/2629" target="_blank">Person-centered location based computing</a></strong>
<p>Chris Schmandt, MIT Media Lab</p>
<p class="description">May 7, 2010. 1pm-2pm. Location: 32-G449</p>
</div>
</article>
<article>
<div>
<strong class="video semester"><a href="http://www.csail.mit.edu/videoarchive/talks/hci/bilton" target="_blank">Video</a></strong>
<strong><a href="https://calendar.csail.mit.edu/events/2521" target="_blank">Research, Design, Visualization at the New York Times</a></strong>
<p>Nick Bilton, New York Times</p>
<p class="description">April 9, 2010. 1pm-2pm. Location: 32-G449</p>
</div>
</article>
<article>
<div>
<strong class="video semester"><a href="http://www.csail.mit.edu/videoarchive/talks/hci/kittur" target="_blank">Video</a></strong>
<strong><a href="https://calendar.csail.mit.edu/events/2492" target="_blank">Combining Minds: Coordination and Social Sensemaking</a></strong>
<p>Niki Kittur, Carnegie Mellon University</p>
<p class="description">February 19, 2010. 1pm-2pm. Location: 32-G449</p>
</div>
</article>
<article>
<div>
<strong class="video semester"><a href="http://www.csail.mit.edu/videoarchive/talks/hci/karahalios" target="_blank">Video</a></strong>
<strong><a href="https://calendar.csail.mit.edu/events/2493" target="_blank">From Turn-taking to Social Ties</a></strong>
<p>Karrie Karahalios, University of Illinois at Urbana-Champaign</p>
<p class="description">February 12, 2010. 1pm-2pm. Location: 32-G449</p>
</div>
</article>
<!------ 2009 -------------------------------------------------------------------------------------------------------------------------->
<h2 class="seminaryear" id="2009">2009</h2>
<article>
<div>
<strong class="video semester"><a href="http://www.csail.mit.edu/videoarchive/talks/hci/churchill" target="_blank">Video</a></strong>
<strong><a href="https://calendar.csail.mit.edu/events/2346" target="_blank">Beyond the hype of FlickTwitFaceSpace: The social Internet in everyday life</a></strong>
<p>Elizabeth Churchill, Yahoo! Research</p>
<p class="description">December 4 2009. 1pm-2pm. Location: 32-G449</p>
</div>
</article>
<article>
<div>
<strong class="video semester"><a href="http://www.csail.mit.edu/videoarchive/talks/hci/boyd" target="_blank">Video</a></strong>
<strong><a href="https://calendar.csail.mit.edu/events/2344" target="_blank">Youth-Generated Culture: Growing Up in an Era of Social Media</a></strong>
<p>Danah Boyd, Microsoft Research and Harvard Berkman Center for Internet and Society</p>
<p class="description">November 20 2009. 1pm-2pm. Location: 32-G449</p>
</div>
</article>
<article>
<div>
<strong class="video semester"><a href="http://www.csail.mit.edu/videoarchive/talks/hci/grudin" target="_blank">Video</a></strong>
<strong><a href="https://calendar.csail.mit.edu/events/2345" target="_blank">Enterprise Uses of Social Media</a></strong>
<p>Jonathan Grudin, Microsoft Research</p>
<p class="description">November 13 2009. 1pm-2pm. Location: 32-D463</p>
</div>
</article>
<article>
<div>
<strong class="video semester"><a href="http://www.csail.mit.edu/videoarchive/talks/hci/Muller" target="_blank">Video</a></strong>
<strong><a href="https://calendar.csail.mit.edu/events/2359" target="_blank">Patterns of File-Sharing in an Enterprise: Authors, Contributors, Collectors, and Lurkers</a></strong>
<p>Michael Muller and N Sadat Shami, IBM Research and IBM Center for Social Software</p>
<p class="description">November 6 2009. 1pm-2pm. Location: 32-G449</p>
</div>
</article>
<article>
<div>
<strong class="video semester"><a href="http://www.csail.mit.edu/videoarchive/talks/hci/Asakawa" target="_blank">Video</a></strong>
<strong><a href="https://calendar.csail.mit.edu/events/2343" target="_blank">Challenges and Opportunities in Accessibility Research</a></strong>
<p>Chieko Asakawa, IBM Research Tokyo</p>
<p class="description">October 30 2009. 1pm-2pm. Location: 32-G449</p>
</div>
</article>
<article>
<div>
<strong class="video semester"><a href="http://www.csail.mit.edu/videoarchive/talks/hci/Whittaker" target="_blank">Video</a></strong>
<strong><a href="https://calendar.csail.mit.edu/events/2342" target="_blank">The Past, Present, and Future of Digital Memories</a></strong>
<p>Steve Whittaker, IBM Research Almaden</p>
<p class="description">October 23 2009. 1pm-2pm. Location: 32-G449</p>
</div>
</article>
<article>
<div>
<strong class="video semester"><a href="http://www.csail.mit.edu/videoarchive/talks/hci/Nichols" target="_blank">Video</a></strong>
<strong><a href="https://calendar.csail.mit.edu/events/2378" target="_blank">Highlight: Mobilizing Existing Web Sites</a></strong>
<p>Jeff Nichols, IBM Research</p>
<p class="description">October 2 2009. 1pm-2pm. Location: 32-G449</p>
</div>
</article>
<article>
<div>
<strong class="video semester"><a href="http://www.csail.mit.edu/videoarchive/talks/hci/Crockford" target="_blank">Video</a></strong>
<strong><a href="https://calendar.csail.mit.edu/events/2341" target="_blank">Javascript: The Good Parts</a></strong>
<p>Douglas Crockford, Yahoo! Research</p>
<p class="description">September 18 2009. 1pm-2pm. Location: 32-G449</p>
</div>
</article>
<article>
<div>
<strong><a href="https://calendar.csail.mit.edu/events/2339" target="_blank">Visual Analytics for Investigative Analysis and Exploration of Document Collections</a></strong>
<p>DJohn Stasko, Georgia Institute of Technology</p>
<p class="description">September 11 2009. 1pm-2pm. Location: 34-401</p>
</div>
</article>
<article>
<div>
<strong class="video semester"><a href="http://www.csail.mit.edu/videoarchive/talks/hci/jones" target="_blank">Video</a></strong>
<strong><a href="https://calendar.csail.mit.edu/events/2121" target="_blank">Putting Our Digital Information in Its Place: Lessons Learned from Fieldwork and Prototyping in the Keeping Found Things Found Project</a></strong>
<p>William Jones, University of Washington</p>
<p class="description">May 5, 2009. 11am-12pm. Location: 32-G449</p>
</div>
</article>
<article>
<div>
<strong class="video semester"><a href="http://www.csail.mit.edu/videoarchive/talks/hci/shaer" target="_blank">Video</a></strong>
<strong><a href="https://calendar.csail.mit.edu/events/2107" target="_blank">A Specification Paradigm for the Design and Implementation of Tangible User Interfaces</a></strong>
<p>Orit Shaer, Wellesley</p>
<p class="description">May 1, 2009. 2pm-3pm. Location: 32-G449</p>
</div>
</article>
<article>
<div>
<strong class="video semester"><a href="http://www.csail.mit.edu/videoarchive/talks/hci/baudisch" target="_blank">Video</a></strong>
<strong><a href="https://calendar.csail.mit.edu/events/2167" target="_blank">Back-of-Device Interaction Allows Creating Very Small Touch Devices</a></strong>
<p>Patrick Baudisch, Microsoft Research and Hasso Plattner Institute</p>
<p class="description">April 10, 2009. 2pm-3pm. Location: 32-G449</p>
</div>
</article>
<article>
<div>
<strong><a href="https://calendar.csail.mit.edu/events/2105" target="_blank">Interaction Beyond Computation</a></strong>
<p>Michel Beaudouin-Lafon, Université de Paris-Sud</p>
<p class="description">April 10, 2009. 11am-12pm. Location: 32-D463</p>
</div>
</article>
<article>
<div>
<strong class="video semester"><a href="http://www.csail.mit.edu/videoarchive/talks/hci/teevan" target="_blank">Video</a></strong>
<strong><a href="https://calendar.csail.mit.edu/events/2136" target="_blank">The Web Changes Everything: How Dynamic Content Affects the Way People Find Online</a></strong>
<p>Jaime Teevan, Microsoft Research</p>
<p class="description">April 3, 2009. 2pm-3pm. Location: 32-G449</p>
</div>
</article>
<article>
<div>
<strong class="video semester"><a href="http://www.csail.mit.edu/videoarchive/talks/hci/igarashi" target="_blank">Video</a></strong>
<strong><a href="https://calendar.csail.mit.edu/events/2125" target="_blank">Interactive "Smart" Computers</a></strong>
<p>Takeo Igarashi, University of Tokyo</p>
<p class="description">March 30, 2009. 2pm-3pm. Location: 32-D463</p>
</div>
</article>
<article>
<div>
<strong class="video semester"><a href="http://www.csail.mit.edu/videoarchive/talks/hci/lawrance" target="_blank">Video</a></strong>
<strong><a href="https://calendar.csail.mit.edu/events/2126" target="_blank">Information Foraging in Debugging</a></strong>
<p>Joseph Lawrance, Oregon State University</p>
<p class="description">March 13, 2009. 2pm-3pm. Location: 32-G449</p>
</div>
</article>
<article>
<div>
<strong class="video semester"><a href="http://www.csail.mit.edu/videoarchive/talks/hci/tseng" target="_blank">Video</a></strong>
<strong><a href="https://calendar.csail.mit.edu/events/2111" target="_blank">Universal Web Search Relevance</a></strong>
<p>Belle Tseng, Yahoo!</p>
<p class="description">March 3, 2009. 11am-12pm. Location: 32-D463</p>
</div>
</article>
<article>
<div>
<strong class="video semester"><a href="http://www.csail.mit.edu/videoarchive/talks/hci/gajos" target="_blank">Video</a></strong>
<strong><a href="https://calendar.csail.mit.edu/events/2104" target="_blank">Automatically Generating Personalized User Interfaces</a></strong>
<p>Krzysztof Gajos, Harvard University and Microsoft Research</p>
<p class="description">February 27, 2009. 2pm-3pm. Location: 32-G449</p>
</div>
</article>
<article>
<div>
<strong class="video semester"><a href="http://www.csail.mit.edu/videoarchive/talks/hci/rosenholtz" target="_blank">Video</a></strong>
<strong><a href="https://calendar.csail.mit.edu/events/2108" target="_blank">Do predictions of visual perception aid design?</a></strong>
<p>Ruth Rosenholtz, MIT Brain and Cognitive Sciences</p>
<p class="description">February 20, 2009. 2pm-3pm. Location: 32-G449</p>
</div>
</article>
<article>
<div>
<strong class="video semester"><a href="http://www.csail.mit.edu/videoarchive/talks/hci/chi" target="_blank">Video</a></strong>
<strong><a href="https://calendar.csail.mit.edu/events/2089" target="_blank">Augmented Social Cognition: Using Web2.0 technology to enhance the ability of groups to remember, think, and reason</a></strong>
<p>Ed Chi, PARC</p>
<p class="description">February 3, 2009. 11am-12pm. Location: 32-G449</p>
</div>
</article>
<!------ 2008 -------------------------------------------------------------------------------------------------------------------------->
<h2 class="seminaryear" id="2008">2008</h2>
<article>
<div>
<strong class="video semester"><a href="http://www.csail.mit.edu/videoarchive/talks/hci/greenberg" target="_blank">Video</a></strong>
<strong><a href="https://calendar.csail.mit.edu/events/1948" target="_blank">Enhancing Creativity with Toolkits</a></strong>
<p>Saul Greenberg, University of Calgary</p>
<p class="description">December 3, 2008. 11am-12pm. Location: 32-G449</p>
</div>
</article>
<article>
<div>
<strong><a href="https://calendar.csail.mit.edu/events/1998" target="_blank">How Harmonix has Changed the User Interface of Gaming</a></strong>
<p>Ryan Lesser and Dan Schmidt, Harmonix</p>
<p class="description">November 21, 2008. 3pm-4pm. Location: 32-155</p>
</div>
</article>
<article>
<div>
<strong class="video semester"><a href="http://www.csail.mit.edu/videoarchive/talks/hci/guimbretiere" target="_blank">Video</a></strong>
<strong><a href="https://calendar.csail.mit.edu/events/1964" target="_blank">People, Pens and Computers</a></strong>
<p>François Guimbretière, University of Maryland Human-Computer Interaction Lab</p>
<p class="description">November 14, 2008. 2pm-3pm. Location: 32-G449</p>
</div>
</article>
<article>
<div>
<strong class="video semester"><a href="http://www.csail.mit.edu/videoarchive/talks/hci/freyne" target="_blank">Video</a></strong>
<strong><a href="https://calendar.csail.mit.edu/events/1965" target="_blank">Collaborative Web Search: Exploiting Social Interaction Patterns for Increased Result Relevance</a></strong>
<p>Jill Freyne, University College Dublin</p>
<p class="description">November 7, 2008. 2pm-3pm. Location: 32-G449</p>
</div>
</article>
<article>
<div>
<strong class="video semester"><a href="http://www.csail.mit.edu/videoarchive/talks/hci/truong" target="_blank">Video</a></strong>
<strong><a href="https://calendar.csail.mit.edu/events/1947" target="_blank">Beyond Google</a></strong>
<p>Khai N. Truong, University of Toronto</p>
<p class="description">October 17, 2008. 2pm-3pm. Location: 32-G449</p>
</div>
</article>
<article>
<div>
<strong><a href="https://calendar.csail.mit.edu/events/1997" target="_blank">Design Principles for Visual Communication</a></strong>
<p>Maneesh Agrawala, UC Berkeley</p>
<p class="description">October 10, 2008. 1pm-2pm. Location: 32-G449</p>
</div>
</article>
<article>
<div>
<strong class="video semester"><a href="http://www.csail.mit.edu/videoarchive/talks/hci/morris" target="_blank">Video</a></strong>
<strong><a href="https://calendar.csail.mit.edu/events/1946" target="_blank">SearchTogether and CoSearch: New Tools for Enabling Collaborative Web Search</a></strong>
<p>Merrie Morris, Microsoft Research</p>
<p class="description">September 26, 2008. 2pm-3pm. Location: 32-D463</p>
</div>
</article>
<article>
<div>
<strong><a href="https://calendar.csail.mit.edu/events/1959" target="_blank">Bluegrass - Embedding a Virtual World In a Collaborative Software Development Environment</a></strong>
<p>Li-Te Cheng and Steven Rohall, IBM Research Cambridge</p>
<p class="description">September 5, 2008. 2pm-3pm. Location: 32-G449</p>
</div>
</article>
<article>
<div>
<strong><a href="https://calendar.csail.mit.edu/events/1698" target="_blank">Processing</a></strong>
<p>Ben Fry, Processing.org</p>
<p class="description">May 16, 2008. 2pm-3pm. Location: 32-G449</p>
</div>
</article>
<article>
<div>
<strong><a href="https://calendar.csail.mit.edu/events/1696" target="_blank">User Experience Research Challenges in Media Spaces for eLearning</a></strong>
<p>Ronald Baecker, Knowledge Media Design Institute and Dept of Computer Science, University of Toronto</p>
<p class="description">May 8, 2008. 2pm-3pm. Location: 32-G449</p>
</div>
</article>
<article>
<div>
<strong><a href="https://calendar.csail.mit.edu/events/1771" target="_blank">Interactive Machine Learning</a></strong>
<p>Dan Olsen, Brigham Young University</p>
<p class="description">May 2, 2008. 2pm-3pm. Location: 32-G449</p>
</div>
</article>
<article>
<div>
<strong><a href="https://calendar.csail.mit.edu/events/1721" target="_blank">Twenty Questions to Name That Bird</a></strong>
<p>Andreas Paepke, Stanford University</p>
<p class="description">April 18, 2008. 2pm-3pm. Location: 32-G449</p>
</div>
</article>
<article>
<div>
<strong><a href="https://calendar.csail.mit.edu/events/1706" target="_blank">Collaborative Scripting for the Web</a></strong>
<p>Tessa Lau, IBM Research Almaden</p>
<p class="description">March 21, 2008. 2pm-3pm. Location: 32-G449</p>
</div>
</article>
<article>
<div>
<strong><a href="https://calendar.csail.mit.edu/events/1701" target="_blank">Robots and People Collaborating: How to be an Engaging Robot</a></strong>
<p>Candy Sidner, BAE Systems AIT</p>
<p class="description">March 14, 2008. 3pm-4pm. Location: 32-D463</p>
</div>
</article>
<article>
<div>
<strong><a href="https://calendar.csail.mit.edu/events/1695" target="_blank">Interactive Experiences: Designing for Consumer 2.0</a></strong>
<p>Harry West, Continuum Design</p>
<p class="description">March 7, 2008. 2pm-3pm. Location: 32-G449</p>
</div>
</article>
<article>
<div>
<strong><a href="https://calendar.csail.mit.edu/events/1748" target="_blank">Tabletop Displays and Remote Collaboration</a></strong>
<p>Mark Ashdown, MIT Humans and Automation Laboratory</p>
<p class="description">February 29, 2008. 2pm-3pm. Location: 32-G449</p>
</div>
</article>
<article>
<div>
<strong><a href="https://calendar.csail.mit.edu/events/1708" target="_blank">Viewing Ubiquitous Computing Through the Lens of Human Attention</a></strong>
<p>Scott Hudson, Carnegie Mellon HCI Institute</p>
<p class="description">February 7, 2008. 2pm-3pm. Location: 32-G449</p>
</div>
</article>
<!------ 2007 -------------------------------------------------------------------------------------------------------------------------->
<h2 class="seminaryear" id="2007">2007</h2>
<article>
<div>
<strong><a href="https://calendar.csail.mit.edu/events/1564" target="_blank">Towards Usable and Useful Multi-Touch Systems</a></strong>
<p>Daniel Wigdor, University of Toronto</p>
<p class="description">November 30, 2007. 2pm-3pm. Location: 32-G449</p>
</div>
</article>
<article>
<div>
<strong class="video semester"><a href="http://www.csail.mit.edu/videoarchive/talks/hci/heer" target="_blank">Video</a></strong>
<strong><a href="https://calendar.csail.mit.edu/events/1551" target="_blank">Voyagers and Voyeurs: Supporting Asynchronous Collaborative Information Visualization</a></strong>
<p>Jeff Heer, UC Berkeley</p>
<p class="description">November 16, 2007. 2pm-3pm. Location: 32-G449</p>
</div>
</article>
<article>
<div>
<strong><a href="https://calendar.csail.mit.edu/events/1538" target="_blank">In Crowds We Trust: Examples of Collective Wisdom</a></strong>
<p>Irene Greif, IBM Research</p>
<p class="description">November 9, 2007. 2pm-3pm. Location: 32-G449</p>
</div>
</article>
<article>
<div>
<strong><a href="https://calendar.csail.mit.edu/events/1526" target="_blank">Shaping the Age of User-Generated Content</a></strong>
<p>Amy Bruckman, Georgia Institute of Technology</p>
<p class="description">November 2, 2007. 2pm-3pm. Location: 32-G449</p>
</div>
</article>
<article>
<div>
<strong><a href="https://calendar.csail.mit.edu/events/1555" target="_blank">Do Users Need a Search Parachute and a Search Compass? Supporting Navigation and Guided Discovery During Exploratory Search</a></strong>
<p>Ryen White, Microsoft Research</p>
<p class="description">October 23, 2007. 1pm-2pm. Location: 32-G449</p>
</div>
</article>
<article>
<div>
<strong><a href="https://calendar.csail.mit.edu/events/1522" target="_blank">Enabling User Innovation through Improved Design Environments</a></strong>
<p>Scott Klemmer, Stanford University</p>
<p class="description">October 5, 2007. 2pm-3pm. Location: 32-G449</p>
</div>
</article>
<article>
<div>
<strong><a href="https://calendar.csail.mit.edu/events/1525" target="_blank">User Interfaces and Algorithms for Anti-Phishing</a></strong>
<p>Jason Hong, Carnegie Mellon HCI Institute</p>
<p class="description">September 28, 2007. 2pm-3pm. Location: 32-G449</p>
</div>
</article>
<article>
<div>
<strong><a href="https://calendar.csail.mit.edu/events/1536" target="_blank">TaskTracer and Smart Desktop: Combining Activity Tracking with Machine Learning to Support Multi-tasking Information Workers</a></strong>
<p>Jon Herlocker, Oregon State University and Smart Desktop, Inc.</p>
<p class="description">September 21, 2007. 2pm-3pm. Location: 32-G449</p>
</div>
</article>
<article>
<div>
<strong><a href="https://calendar.csail.mit.edu/events/1527" target="_blank">Sketching and Design for the Wild: Why Programmers Should Return to Kindergarten Rather than Program</a></strong>
<p>Bill Buxton, Microsoft Research</p>
<p class="description">September 14, 2007. 1pm-2pm. Location: 32-141</p>
</div>
</article>
<article>
<div>
<strong><a href="https://calendar.csail.mit.edu/events/1355" target="_blank">Better Game Characters by Design: A Psychological Approach</a></strong>
<p>Katherine Isbister, Rensselaer Polytechnic Institute</p>
<p class="description">May 11, 2007. 1:30pm-2:30pm. Location: 32-D463</p>
</div>
</article>
<article>
<div>
<strong><a href="https://calendar.csail.mit.edu/events/1402" target="_blank">Leveraging Task and Social Practices in Ubicomp</a></strong>
<p>Stacey Scott, MIT Humans and Automation Lab</p>
<p class="description">April 27, 2007. 1:30pm-2:30pm. Location: 32-D463</p>
</div>
</article>
<article>
<div>
<strong><a href="https://calendar.csail.mit.edu/events/1352" target="_blank">Some Thoughts on Social Tagging</a></strong>
<p>Marti Hearst, School of Information, UC Berkeley</p>
<p class="description">April 20, 2007. 1:30pm-2:30pm. Location: 32-D463</p>
</div>
</article>
<article>
<div>
<strong><a href="https://calendar.csail.mit.edu/events/1425" target="_blank">Mitsubishi Electric Research Laboratories</a></strong>
<p>Christopher R. Wren, Mitsubishi Electric Research Laboratories</p>
<p class="description">April 6, 2007. 1:30pm-2:30pm. Location: 32-D463</p>
</div>
</article>
<article>
<div>
<strong><a href="https://calendar.csail.mit.edu/events/1364" target="_blank">Privacy-Enhanced Personalization</a></strong>
<p>Alfred Kobsa, Department of Informatics, University of California, Irvine</p>
<p class="description">March 30, 2007. 1:30pm-2:30pm. Location: 32-D463</p>
</div>
</article>
<article>
<div>
<strong><a href="https://calendar.csail.mit.edu/events/1344" target="_blank">Transformed Social Interaction in Virtual Reality</a></strong>
<p>Jeremy Bailenson, Stanford University</p>
<p class="description">March 16, 2007. 1:30pm-2:30pm. Location: 32-D463</p>
</div>
</article>
<article>
<div>
<strong><a href="https://calendar.csail.mit.edu/events/1345" target="_blank">Invention and Innovation</a></strong>
<p>Bill Moggridge, IDEO</p>
<p class="description">March 9, 2007. 1:30pm-2:30pm. Location: 32-G449</p>
</div>
</article>
<article>
<div>
<strong><a href="https://calendar.csail.mit.edu/events/1343" target="_blank">The Community/Individual Cycle: Extracting Knowledge, Creating Applications and Understanding Motivations in Public Photo Collections</a></strong>