-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathppllightning.html
More file actions
1000 lines (982 loc) · 59 KB
/
Copy pathppllightning.html
File metadata and controls
1000 lines (982 loc) · 59 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<!-- Added by HTTrack --><meta http-equiv="content-type" content="text/html;charset=UTF-8" /><!-- /Added by HTTrack -->
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="Description" content="interaction'11 - boulder" />
<meta name="Keywords" content=
"Interaction11, Interaction 11, IxDA, IxD11, Ix11, Interaction Design, Interaction Design Association, Interaction Design Conference, Design Conference, UX, UX Design, UX Conference, User Experience, User Experience Design, Design Conference, @IxD11,interaction conference, interaction design conference" />
<title>
Interaction 11 | February 9-12, 2011 Boulder, CO
</title>
<link href="screen.css" rel="stylesheet" type="text/css" />
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body id="body_speak">
<div class="header container">
<!--Header-->
<!--logo-->
<div class="grid_9">
<a href="index-2.html" class="logo">InteractionEleven</a>
</div><!--register now-->
<!--
<div class="grid_3 last">
<a href=
"https://ww2.eventrebels.com/er/Registration/StepRegInfo.jsp?ActivityID=4641&StepNumber=1"
target="_new" class="register">Register while there are still tickets available.</a>
</div>
-->
<!--navigation-->
<div class="grid_12 nav">
<ul id="nav">
<li id="nav_program"> <a href="program.html">program</a> </li> <li id="nav_speak">
<a href="speakers.html">speakers</a>
</li>
<li id="nav_boulder">
<a href="boulderama.html">boulderama</a>
</li>
<li id="nav_reg">
<a href="reg.html">register</a>
</li> <li id="nav_blog">
<a href="news/index.html">news</a>
</li>
<li id="nav_connect"> <a href="http://interaction11.ixda.org/index.html#connect">connect</a>
</li>
</ul><!--end navigation-->
</div><!--End Header-->
</div><!--Content-->
<div class="container">
<!--side nav--> <!--<div class="grid_6 sidenavouter">
<img src="img/sidebg.png" alt="Image" />
</div>-->
<div class="grid_3 mainoverlay">
<ul id="sidenav">
<li>
<a href="pplkeynote.html">keynote speakers</a>
</li>
<li id="active">
<a href="ppllightning.html">lightning speakers</a>
</li>
<li>
<a href="pplworkshop.html">workshop leaders</a>
</li>
</ul>
</div><!--end side nav-->
<!--main content-->
<div class=" grid_9 mainoverlay"> <img src="img/boxT9w.png" alt="Image" />
<div class="b9">
<img src="img/adamconnor.jpg" class="left" alt="Adam Connor" /><a name="AdamConnor" id=
"AdamConnor"></a>
<h3>
Adam Connor
</h3>
<h5>
<a href="lightning.html#AdamConnor">Applying Film Making Tools to Interaction
Design</a>
</h5>
<p>
Adam Connor has spent nearly a decade in the User Experience Design world. As a Senior
Experience Designer with Mad*Pow in Portsmouth, New Hampshire, Adam combines his
creative and technical backgrounds to design effective, efficient, and easy-to-use
websites, applications, and interactive media.
</p>
<p>
Previously, Adam spent eight years as an in-house designer for a large financial
services firm and six years as an independent UX Consultant. As an Experience Design
instructor, he taught undergraduate students at the University of Massachusetts,
Amherst, focusing on research techniques, interaction design, information architecture,
and usability.
</p>
<p>
Adam has spent the past year investigating what happens when his Computer Science and
Film & Animation background are put to the test, thoroughly exploring the
connection between film and User Experience Design. By studying how well-made films
engage and captivate viewers, Adam then translates movies into UX Design terms with a
filmmaker's eye to tell a story with design.
</p>
<p>
When he's not answering the question, "What do film and UX have in common?" Adam takes
his design skills offline to his sketchpad and the piles of Legos he routinely
transforms into movie scenes and other creations.
</p>
</div>
<div class="b9">
<img src="img/anadomb.jpg" alt="Ana Domb" class="left" /><a name="AnaDomb" id=
"AnaDomb"></a>
<h3>
Ana Domb
</h3>
<h5>
<a href="lightning.html#AnaDomb"> Tacky and Proud: Brazil's Tecnobrega Audiences</a>
</h5>
<p>
Ana Domb Krauskopf does user experience and cultural research at THE MEME Design, she
has also worked as a journalist, film and music producer and cereal mascot. Her work
has always revolved around creativity and audiences. She recently obtained a Master of
Science degree from the Comparative Media Studies program at MIT where she worked with
the Convergence Culture Consortium. In 2007 she co-authored "If It Doesn't Spread, It's
Dead: Creating Value in a Spreadable Marketplace" with Dr. Henry Jenkins and Xiaochang
Li. Her Master's thesis was an ethnographic exploration into the symbolic currencies
and the value of audience participation in Brazil's Tecnobrega. She's consulted for
Turner Broadcasting and Comcast as well as working beside anthropologist Grant
McCracken. In her native Costa Rica, she co-founded Cinergia, the first film production
fund designed to stimulate media activity in Central America and Cuba. There, she also
worked with the Papaya Music label where she co-produced the Papaya Fest, an eclectic
large-scale Central American music festival. You can find Ana on twitter @anadk.
</p>
</div>
<div class="b9">
<img src="img/autsinbrown.jpg" alt="Austin Brown" width="125" height="126" class=
"left" /><a name="AustinBrown" id="austinbrown"></a>
<h3>
Austin Brown
</h3>
<h5>
<a href="lightning.html#AustinBrown">Human-Centered-Design and the Intersection of the Physical and Digital Worlds</a>
</h5>
<p>
Austin joined EffectiveUI in 2010 as a User Experience Designer after graduating from
the Savannah College of Art & Design with a BFA in Industrial Design. Prior to
joining EffectiveUI, Austin had the opportunity to live and work in Hong Kong as an
industrial design intern for VTech Communications, where he helped design consumer
electronics devices for the European market. Austin's background in industrial design
helps guide his eye for designing digital interactions and experiences for clients such
as Microsoft.
</p>
</div>
<div class="b9">
<img src="img/callieneylan.jpg" alt="Callie Neylan" class="left" /><a name="CallieNeylan"
id="callieneylan"></a>
<h3>
Callie Neylan
</h3>
<h5>
<a href="lightning.html#CallieNeylan">Beautiful Interactions: Codifying Aesthetics In Interaction Design</a>
</h5>
<p>
Callie is an assistant professor of design at the University of Maryland, Baltimore
County. Prior to her academic career, she worked as an interaction designer for
renowned design firms and non-profits including Gensler, Teague, and NPR. She also
served as adjunct faculty at the University of Washington and the Maryland Institute
College of Art, teaching undergraduate and graduate level courses in design. Her work
has been recognized by the AIGA and I.D. Magazine, and featured in the New York Times,
Fast Company, and Gizmodo. She also served as a 2010 juror for the AIGAis prestigious
365 competition.<br />
<br />
Callie's research interests include designing for the disabled and the intersection of
interaction design and the urban space. She is also exploring the elements and
definitions of beauty in interaction design.<br />
<br />
She holds a BS from Central Washington University with concentrations in business and
French, and an MFA in design from the University of Washington in Seattle. She is
passionate about design in all its disciplines; technology; photography; fixed-gear
bicycles; skiing; good, slow food; Weimaraners; and artisanal espresso.
</p>
</div>
<div class="b9">
<img src="img/carlalvianiv.jpg" alt="Carl Alviani" width="125" height="126" class=
"left" /><a name="CarlAlviani" id="carlalviani"></a>
<h3>
Carl Alviani
</h3>
<h5>
<a href="lightning.html#CarlAlviani">What do you do, anyway? - Describing IxD to the Outside World</a>
</h5>
<p>
Carl Alviani is a writer and content strategist for Ziba, a design consultancy in
Portland, Oregon. He began writing about design in 2004 as an occasional contributor to
Core77.com while working as a freelance industrial designer in New York City. After
switching to full time writing and editing in 2007, he served as the editorial director
of Coroflot.com, a design employment and portfolio site, and a contributing editor at
Core77, where he penned over 500 articles and blog posts on topics ranging from CAD to
portfolio strategy to the use of iPhones in user research, and worked with dozens of
leading designers and educators to help bring their stories to the public. He also
co-organized and moderated the 2009 Creative Confab panel discussion series on creative
employment, in four different cities.
</p>
<p>
He earned his BS in Structural Engineering from UC San Diego and Masters in Industrial
Design from the Pratt Institute, and served in the US Peace Corps as a science teacher
before turning to design. He lives in northeast Portland, where he rides his bike a lot
and hangs out with the local IDSA and IxDA community nearly every week.
</p>
</div>
<div class="b9">
<img src="img/carldisalvo.jpg" alt="Carl DiSalvo" class="left" /><a name="CarlDisalvo"
id="carldisalvo"></a>
<h3>
Carl DiSalvo
</h3>
<h5>
<a href="lightning.html#CarlDisalvo">growBot Garden: The Co-Design of Alternative Agricultures</a>
</h5>
<p>
Carl DiSalvo received a Ph.D. in Design from Carnegie Mellon University in 2006. From
2006 - 2007 he was a post-doctoral fellow at Carnegie Mellon University with joint
appointments in the Studio for Creative Inquiry and the Center for the Arts in Society.
Since 2007 he has been an assistant professor of Digital Media in the School of
Literature, Communication, and Culture at the Georgia Institute of Technology. At
Georgia Tech he runs The Public Design Workshop, a design research studio that
investigates the possible roles of design in shaping and enabling public discourse and
action. His research and practice spans the fields of interaction design, participatory
design, science and technology studies, and human-computer interaction. Current themes
in his work include design and the construction of publics, political design, and
speculative design. Since early 2010 he has been working on the growBot Garden project,
which explores how robotics and sensing technologies might be used to support local
small-scale agriculture.
</p>
</div>
<div class="b9">
<img src="img/charleshannon.jpg" alt="Charles Hannon" class="left" /><a name=
"CharlesHannon" id="charleshannon"></a>
<h3>
Charles Hannon
</h3>
<h5>
<a href="lightning.html#CharlesHannon">The Neuroscience of Usability</a>
</h5>
<p>
Charles Hannon is professor and founding chair of the Information Technology Leadership
department at Washington & Jefferson College in Washington, PA. He teaches courses
in human computer interaction, data presentation, project management, and the history
of information technology, among others. He is the author of Faulkner and the
Discourses of Culture (2005). More recently, he has written on the intersection of
humans and technology in interactions, the Chronicle of Higher Education, Educause
Quarterly, and other publications.
</p>
</div>
<div class="b9">
<img src="img/cherylplatz.jpg" alt="Cheryl Platz" class="left" /><a name="CherylPlatz"
id="CherylPlatz"></a>
<h3>
Cheryl Platz
</h3>
<h5>
<a href="lightning.html#CherylPlatz">Computer Engineer Barbie: How Interaction Design can entice a new generation of women</a>
</h5>
<p>
Cheryl Platz is a User Experience Designer with Microsoft, currently working with the
Management & Administration Experience team on advanced user interfaces for
information technology professionals. Prior to her time at Microsoft, Cheryl spent a
number of years as a Producer in the video game industry. Her shipped titles include
Disney Friends (Nintendo DS) and numerous titles in the Sims line of products including
The Sims Bustin' Out, The Urbz, and The Sims 2. She also assisted Walt Disney
Imagineering with early prototypes for Disney's Photopass system for Walt Disney Parks
and Resorts.
</p>
<p>
When she isn't working, Cheryl is very active in the Seattle theatre community. She is
an ensemble member with Unexpected Productions, home of Seattle Theatresports improv
comedy, and performs in their flagship show on a near-weekly basis. Improv has proved a
great inspiration for her daytime work, and Cheryl is helping to lead an effort to
teach improvisational skills to women engineers at Microsoft. Cheryl is also a
passionate volunteer for local efforts to expose young women in technology, including
the IGNITE program in Seattle.<br />
<br />
Cheryl graduated from Carnegie Mellon University (2002) with a BS in Computer Science
and Human-Computer Interaction, and spent an additional year in CMU's Entertainment
Technology Center graduate program.
</p>
</div>
<div class="b9">
<img src="img/cindychastain.jpg" alt="Cindy Chastain" class="left" /><a name="CindyChastain"
id="CindyChastain"></a>
<h3>
Cindy Chastain
</h3>
<h5>
<a href="lightning.html#CindyChastain">Redefining Personalization as Real-time Conversation</a>
</h5>
<p>
Cindy Chastain is an experience designer, strategist, teacher and screenwriter. As a Creative Director at R/GA, named Digital Agency of the Decade by Adweek, Cindy leads with a focus on user-centered design, storytelling, and collaboration. She’s also bent on changing the way traditional advertisers and marketers think about customer experiences. Clients she's worked with range from Verizon to BBC Worldwide, Showtime, GSK, Coca-Cola, Unilever, Pfizer, Madison Square Garden and Fuse.
</p>
<p>
In addition to moonlighting as an adjunct professor of interaction design, she is planning a book about how storytelling techniques can be used a framework for design. She holds an MFA in screenwriting from Columbia University and earned a BS in Radio, TV, Film from Northwestern University. In her spare time, she can be found hanging out with her 6-year-old Harry Potter fanatic, and attempting to play her somewhat new ukulele.
</p>
</div>
<div class="b9">
<img src="img/davidcronin.jpg" alt="David Cronin" class="left" /><a name="DaveCronin" id=
"davecronin"></a>
<h3>
Dave Cronin
</h3>
<h5>
<a href="lightning.html#DaveCronin">Healthcare interfaces: How interaction design can help fix medicine</a>
</h5>
<p>
Dave is the Director of Interaction Design at Smart Design in San Francisco where he works with design teams and clients to understand, imagine, strategize, design and create all sorts of digital products, and experiences. He's enjoyed working on everything from the kiosks and handheld guides at the Getty Center to computer-assisted surgery, and has a particular passion for medical- and health-related projects. Dave was a coauthor of About Face 3, and previously a Managing Director at Cooper. Find him on twitter at @davcron.
</p>
</div>
<div class="b9">
<img src="img/debralevingelman.jpg" alt="debra levin gelman" class="left" /><a name=
"DebraLevinGelman" id="debralevingelman"></a>
<h3>
Debra Levin Gelman
</h3>
<h5>
<a href="lightning.html#DebraLevinGelman">Designing Immersive Online Environments for Kids</a>
</h5>
<p>
Deb Gelman has been involved with kids and media since 1993. After earning bachelors'
degrees in visual media and psychology from American University in Washington, DC, Deb
worked in childrenis television, creating educational programming for elementary-school
kids. She moved into interactive media in the late 90s, studying information design and
technology at Georgia Tech. Her masters' thesis, and subsequent work, focused on using
immersive online iworldsi to teach kids about environmental science.
</p>
<p>
Since that time, Deb has been designing kids websites, software, and virtual
environments for companies including Crayola, PBS Sprout, Scholastic, The Campbellis
Soup Company, and Comcast. Her most recent virtual worlds project was the award-winning
Planet Orange, an initiative of ING Direct designed to teach 1-6th graders financial
literacy. Deb currently works at Comcast Interactive Media in Philadelphia, PA.
</p>
</div>
<div class="b9">
<img src="img/ethaneismann.jpg" alt="ethan eismann" class="left" /><a name="EthanEismann" id="ethaneismann"></a>
<h3>
Ethan Eismann
</h3>
<h5>
<a href="lightning.html#EthanEismann">Photoshop.com 2.0 - the making of an experience ecosystem</a>
</h5>
<p>
Ethan Eismann is a Sr. Experience Design Manager at Adobe Systems. His teams work on projects that make it easier for professional designers to create interactive digital experiences, faster.
</p>
<p>
In the recent past, Ethan led the design of Adobe Flash Catalyst, the newest tool to be added to the Adobe Creative Suite. With Flash Catalyst, Ethan crafted a product vision that makes it easy for designers to prototype rich interactive experiences, without needing to code. Before that, Ethan worked closely with the Adobe AIR team to develop best design practices for the emerging Adobe AIR platform. He has designed experiences for mobile devices, RIAs, and desktop applications such as Creative Suite 4, and Adobe Acrobat.
</p>
<p>
Prior to Adobe, Ethan worked at a number of start-ups, and attended the UC Berkeley iSchool When he has time away from making good design happen, he writes about it at: eismann-sf.com/news.
</p>
</div>
<div class="b9">
<img src="img/geoffdowd.jpg" alt="geoff dowd" class="left" /><a name="GeoffDowd" id="geoffdowd"></a>
<h3>
Geoff Dowd
</h3>
<h5>
<a href="lightning.html#GeoffDowd">Photoshop.com 2.0 - the making of an experience ecosystem</a>
</h5>
<p>
Geoff Dowd involves himself in the intersection of useful interactive design and digital entertainment.
</p>
<p>
With Adobe XD in San Francisco, Geoff has recently led the design of Photoshop.com – an immersive destination site created for digital photographers and image editing enthusiasts. Since the launch of Photoshop.com, he has turned his focus to extend Adobe’s digital imaging legacy into the realm of touch and tablet based devices.
</p>
<p>
Prior to joining Adobe, Geoff was Associate Creative Director at Odopod in San Francisco, where he led teams to design and produce award winning entertainment interfaces for MTV, Nike, Zune, Honda and more. As part of his professional career, Geoff has grown up through the ranks of Adobe, Odopod, Macromedia, Frog Design, Sapient and various start-ups. Classically trained as a Graphic Designer at Cal Poly San Luis Obispo, he turned away from print the first chance he got during his first job at Studio Archetype.
</p>
</div>
<div class="b9">
<img src="img/jimmychandler.jpg" alt="Jimmy Chandler" class="left" /><a name=
"JimmyChandler" id="jimmychandler"></a>
<h3>
Jimmy Chandler
</h3>
<h5>
<a href="lightning.html#JimmyChandler">Accessibility is Not a Checklist</a>
</h5>
<p>
Jimmy Chandler has been working with clients and colleagues to create Web sites and
applications with great user experiences for over 13 years. Active in the Washington,
DC area UX community, Jimmy is a frequent attendee, volunteer, organizer, and speaker
for Accessibility DC, IXDA DC, and other UX-related events.
</p>
<p>
Jimmy's experience in accessibility dates to 2001, before the U.S. Section 508
regulations went into effect. This experience includes training project managers,
designers, developers, and testers in accessibility, web design, and user experience
methods, as well as conducting numerous accessibility assessments, remediation of
accessibility barriers, and conducting research with users of assistive technology as
participants.
</p>
<p>
Jimmy's online experience began by writing a column and moderating discussion forums on
U.S. current events. More recently, he managed a team of Web professionals for a
Fortune 500(R) government contractor for five years. In between, he worked as a
designer/developer, usability specialist, project manager, online recruiting
coordinator, writer, editor, and accessibility analyst. Currently, Jimmy is a Senior
Information Architect with Sapient Government Services.<br />
<br />
Jimmy has a B.A. in Government from the College of William and Mary and currently lives
in Arlington, Virginia with his wife @coolacctngchick (aka Nicole).
</p>
</div>
<div class="b9">
<img src="img/joshclard.jpg" alt="Josh Clark" width="125" height="126" class=
"left" /><a name="JoshClark" id="joshclark"></a>
<h3>
Josh Clark
</h3>
<h5>
<a href="lightning.html#JoshClark">Up with Complexity! Challenging Users for Fun and Profit</a>
</h5>
<p>
Josh Clark is a designer, developer, and author specializing in mobile design strategy
and user experience. He's author of the O'Reilly books "Tapworthy: Designing Great
iPhone Apps" and "Best iPhone Apps: The Guide for Discriminating Downloaders." Josh's
outfit Global Moxie offers workshops and consulting services to help creative companies
build tapworthy iPhone apps and effective websites.
</p>
</div>
<div class="b9">
<img src="img/kalanikordus.jpg" alt="kalanikordus" class="left" /><a name="KalaniKordus"
id="kalanikordus"></a>
<h3>
Kalani Kordus
</h3>
<h5>
<a href="lightning.html#KalaniKordus">Macro vs. Micro</a>
</h5>
<p>
Kalani Kordus is the Chief Creative Officer for <a href=
"http://smudgeproof.net/">smudgeproof</a>, a design & development firm specializing
in multi-touch and mobile software. smudgeproof has helped premium brands and Fortune
500 companies create compelling user experiences for millions of people. Prior to
smudgeproof, he was a Product Design Architect for Yahoo's Mail and Messenger products,
helping them bring Yahoo Messenger for Vista/iPhone/Android and Yahoo Mail for Android
to market. While he was at frog design he worked with many major brands, including HP,
Alltel and Yahoo!
</p>
<p>
In his leisure time he experiments with sound at various frequencies in various time
intervals with various sound generators. The results of these experiments have been
known to materialize on the web...on occasion.
</p>
</div>
<div class="b9">
<img src="img/kaleemkhan.jpg" alt="Kaleem Khan" class="left" /><a name="KaleemKhan" id=
"kaleemkhan"></a>
<h3>
Kaleem Khan
</h3>
<h5>
<a href="lightning.html#KaleemKhan">Design for Evil: Ethical Design</a>
</h5>
<p>
Kaleem is a founding partner of strategy and design research consultancy True Insight,
based in Toronto. As a strategist, consultant and researcher, Kaleem helps global
companies, agencies, startups and governments create great experiences and solve
complex problems. Over two decades, he has worked with clients that include leaders in
consumer electronics, mobile technology, Internet services, software, health care,
financial services, telecom and security. That experience has informed his perspective
on ethical challenges in the interaction design field. He is an industry advisor to
Ryerson University, OCAD University sLab and the Mobile Experience + Design conference.
Kaleem runs the UX Book Club Toronto; leads the UX Irregulars, the largest user
experience design professionals' group in Canada; and co-founded the InteractionCamp
unconference. Kaleem is an active member of professional user experience design groups
that include ACM SIGCHI, the IAI and the IxDA. http://twitter.com/kaleemux
</p>
</div>
<div class="b9">
<img src="img/karladam.jpg" alt="Karl Adam" class="left" /><a name="KarlAdam" id=
"karladam"></a>
<h3>
Karl Adam
</h3>
<h5>
<a href="lightning.html#KalaniKordus">Macro vs. Micro</a>
</h5>
<p>
Karl Adam is the Chief Technical Officer for <a href=
"http://smudgeproof.net/">smudgeproof</a>, a design & development firm specializing
in multi-touch and mobile software. smudgeproof has helped premium brands and Fortune
500 companies create compelling user experiences for millions of people. Prior to
smudgeproof, he was a Senior Software Engineer for Yahoo's Messenger product, helping
them bring Yahoo Messenger for Mac and iPhone to market.
</p>
<p>
Karl is a contributor to the open source community. He founded the Growl notification
system project and is also the author of MPOAuthConnection, a drop in cocoa component
for Mac and iPhone apps to talk to OAuth web services.
</p>
</div>
<div class="b9">
<img src="img/lindsaymoore.jpg" alt="Lindsay Moore" class="left" /><a name="LindsayMoore"
id="lindsaymoore"></a>
<h3>
Lindsay Moore
</h3>
<h5>
<a href="lightning.html#AustinBrown">Human-Centered-Design and the Intersection of the Physical and Digital Worlds</a>
</h5>
<p>
Lindsay is a User Experience Architect at EffectiveUI where she specializes in
user-centered design practices, helping clients such as Rosetta Stone and Sports
Authority solve complex data and usability challenges for Web, mobile and desktop
applications. Her background is in Liberal and Fine Arts, but she became designer after
figuring out that it was much more interesting to solve creative problems for people
other than herself. Lindsay is interested in the way people interact with objects,
systems, society and the environment, and strives to create experiences that help
people better understand the information surrounding them, communicate with one
another, and most importantly, thrive in a technology-heavy world.
</p>
<p>
Lindsay holds two Bachelor's degrees in Fine Art from New College of Florida and the
Rocky Mountain College of Art & Design. When sheis not looking for ways to make
user experience more effective, more rewarding and more human, she spends her time
playing bass in a local band, cheering on the Denver Nuggets and practicing yoga.
</p>
</div>
<div class="b9">
<img src="img/megangrocki.jpg" alt="Megan Grocki" class="left" /><a name="MeganGrocki"
id="megangrocki"></a>
<h3>
Megan Grocki
</h3>
<h5>
<a href="lightning.html#MeganGrocki">Marketing is not a 4 letter word</a>
</h5>
<p>
Sassy, smiling and straightforward, Megan directs experience design at Mad*Pow while
simultaneously heading up all of its marketing activities.With 15 years of experience
in marketing and experience design, Megan is the ultimate user advocate. She
specializes in helping clients discover the attitudes, intents and behaviors of their
users and to understand what is truly important to them. By facilitating a
user-centered design process, she is able to recognize various emotional mindsets and
translate their desires into her designs, improving the presentation of information in
a way that rings true with the audience and meets business goals.<br />
<br />
She also directs all of Mad*Pow's marketing efforts, including overseeing marketing
strategy and publicity, directing community engagement activities and managing
Mad*Pow's presence at industry events.<br />
<br />
Prior to Mad*Pow, Megan served as marketing manager with Momenta, and as senior product
manager and user interface manager at Bottomline Technologies. Megan holds a BA from
the University of New Hampshire, and is an active member of Girls-In-Tech Boston and
MITX. She is a founding member of the NHUPA. Her speaking opportunities have included
Refresh Boston, the 2010 IA Summit in Phoenix, the Usability Professionals' Association
International conference in Munich and UPA Boston. A die-hard Red Sox fan, Megan can be
found travelling the world, parked in her favorite beach chair, or walking around town
with her husband and two young children.
</p>
</div>
<div class="b9">
<img src="img/michaelmeyer.jpg" alt="Michael Meyer" width="125" height="126" class=
"left" /><a name="MichaelMeyer" id="michaelmeyer"></a>
<h3>
Michael Meyer
</h3>
<h5>
<a href="lightning.html#MichaelMeyer">Design Imperatives from the Roman Empire to the Nasa Space program and Beyond</a>
</h5>
<p>
Naval Nuclear Engineer, pilot, historian, design artisan, business strategist,
storyteller, and educator -- Michael Meyer leads executives and their organizations
through the complex and challenging conversations of discovery that are critical to
success during times of massive change. He draws on his frontline leadership experience
to integrate and evolve a unique understanding that marries the business imperative
with design awareness.
</p>
<p>
Michael comes to Adaptive Path from frog design, where he led the company's California
studio as General Manager, overseeing the firm's physical and digital product design
offering. Previously, he started and led the Product Strategy practice at IDEO's Boston
office.
</p>
<p>
Not only has Meyer spearheaded tremendous operational achievements, combining frog's
Palo Alto and San Francisco offices into a single group, he's also led a wide range of
projects: planning a new line of home electrical devices, crafting the vision and
expressing the value proposition for a major pharmaceutical company's internet
presence, developing a next-generation electronic payment token, and leading the
cockpit and cabin design of a new jet aircraft. Meyer's project teams have won two gold
and two silver IDEA awards for their work.
</p>
<p>
Before Meyer's move to product development consulting, he served as a Lieutenant in the
US Navy, running a Naval telecommunications facility in Naples, Italy as General
Manager. Prior to that, he managed the production and testing of shipboard nuclear
power plants as a Navy engineering officer.
</p>
<p>
Meyer has a bachelor's degree in physics from the University of California, Berkeley;
an MBA from Harvard Business School, appointed as a Fellow of the Batten Institute,
Darden GSBA, University of Virginia, where he has taught early-stage innovation and
product development. He currently instructs at the Rady School of Management,
University of California, San Diego.
</p>
</div>
<div class="b9">
<img src="img/mikekruzeniski.jpg" class="left" alt="Mike Kruzeniski" /><a name="MikeKruzeniski" id="mikekruzeniski"></a>
<h3>
Mike Kruzeniski
</h3>
<h5><a href="lightning.html#MikeKruzeniski">Personal, Relevant, Connected: Designing Integrated Mobile Experiences for Apps and Web</a></h5>
<p>
Mike Kruzeniski is a Creative Director in the Windows Phone design studio, leading the
Windows Phone App team.<br />
<br />
During his first two years at Microsoft, he worked on bringing the Windows Phone KIN
mobile experience from concept to reality. Before joining Microsoft, Mike worked for
Nokia Design's Insight + Innovation team, based in Los Angeles. The role of the I+I
team in Nokia was to develop next generation product lines for Nokia Design, to
incubate new product and business ideas for Nokia Corporate, and, to challenge the
ideas of both Nokia Design and Corporate by visualizing completely new directions for
the company.<br />
<br />
Mike has a Master's degree in Interaction Design from the Umea Institute of Design in
Sweden, and a Bachelor of Industrial Design from Emily Carr University in Vancouver,
Canada. He speaks and tutors regularly about Design and Experience at conferences and
schools. The focus of his career has been to combine his diverse background in design
with his interests in business, brand, culture, technology, mobility, play, and
simplicity, to build engaging and seamless product experiences.
</p>
</div>
<div class="b9">
<img src="img/nickmyers.jpg" alt="Nick Myers" class="left" /><a name="NickMyers" id=
"nickmyers"></a>
<h3>
Nick Myers
</h3>
<h5>
<a href="lightning.html#NickMyers">The visual interface is now your brand</a>
</h5>
<p>
Nick Myers is the managing director of visual design and branding at Cooper where he
works with teams to design experiences across a variety of digital products and
services. He helps companies craft interfaces and brands that are both unique and
compelling, yet authentic and usable. During his time at Cooper, he has focused on the
design of iPad collaboration tools, portfolio management, in-home patient care, 3D
interior design, photo sharing, virtualization, medical informatics, and even check
fraud. He is an instructor for Cooper's visual interface design class and he writes
often for the Cooper Journal. His designs have received several awards since he began
working as a designer in 1996. When not designing, he's usually training for his next
marathon. You can follow him on Twitter at @nickmyer5
</p>
</div>
<div class="b9">
<img src="img/ninawalia.jpg" alt="Nina Walia" class="left" /><a name="NinaWalia" id=
"ninawalia"></a>
<h3>
Nina Walia
</h3>
<h5>
<a href="lightning.html#NinaWalia">Pass it Back! Kid Apps on Grown Up Devices</a>
</h5>
<p>
Nina Walia has overseen interaction design and content development of websites and
games for the Webby-award winning pbskids.org since 2004.<br />
<br />
Committed to making a positive impact on the lives of children through curriculum-based
games, she has worked with educational television producers on a variety of
award-winning program sites, such as Curious George and The Jim Henson Companyis Sid
the Science Kid. Her current focus is creating compelling gaming experiences that span
multiple screens, including mobile devices and interactive whiteboards. Before coming
to PBS, she earned a MS in Information Design and Technology from Georgia Tech where
she examined how handheld computers can be used effectively by middle-school science
students, sound designed responsive media spaces, and created shisha:: a digital mirror
to reflect collective identity exploration and contextualize online community
discussion. Twitter: @missmodular
</p>
</div>
<div class="b9">
<img src="img/parisbuttfieldaddison.jpg" alt="Paris Buttfield-Addison" class=
"left" /><a name="ParisButtfieldAddison" id="parisbuttfieldaddison"></a>
<h3>
Paris Buttfield-Addison
</h3>
<h5>
<a href="lightning.html#ParisButtfieldAddison">Making mistakes fun: Game mechanics are not a panacea, but they are kinda useful!</a>
</h5>
<p>
Paris wears many hats: co-founder of Secret Lab (a mobile game development startup),
co-author of 'iPhone and iPad Game Development for Dummies' and 'Unity Mobile Game
Development for Dummies' (out in 2011) and Product Manager (Mobile) at Meebo Inc., one
of the Web's fastest growing consumer Internet companies. Paris has degrees in HCI,
computer science, medieval and modern history and enjoys designing, producing and
building awesome experiences for mobile. Through some miracle of time management, he is
also a Graduate Researcher in information management at the University of Tasmania in
Australia.
</p>
</div>
<div class="b9">
<img src="img/peterknocke.jpg" alt="Peter Knocke" class="left" /><a name="PeterKnocke"
id="peterknocke"></a>
<h3>
Peter Knocke
</h3>
<h5>
<a href="lightning.html#PeterKnocke">Consume Consume Consume</a>
</h5>
<p>
Peter Knocke is an Interaction Designer / Business Strategist / Obsessive Foodie. From
growing up in a quiet Midwestern farm town to hopping around the globe, he has always
closely observed how people live, work, and interact with each other. After studying
business in the United States and design in Italy, he spends his days building web
sites, mobile platforms, interactive installations and strategic roadmaps. Currently,
he has dedicated his life to writing, speaking, and designing for projects that
encourage a better balance of friends, family, life, and work.<br />
<br />
When he's not designing, he can be found singing karaoke, dancing tango, and drinking
whiskey. He currently resides in Manhattan and can be found at Jo's every Sunday night.
</p>
</div>
<div class="b9">
<img src="img/peterstahl.jpg" alt="Peter Stahl" class="left" /><a name="PeterStahl" id=
"peterstahl"></a>
<h3>
Peter Stahl
</h3>
<h5>
<a href="lightning.html#PeterStahl">The Rhythm of Interaction</a>
</h5>
<p>
Peter Stahl is a senior interaction designer at Cisco, where he works on design
standards. A longtime denizen of Silicon Valley, he has created user experiences for
eBay, America Online, Microsoft, Netscape, Entrust, among others, for applications as
diverse as e-commerce, system management, online conferencing, gesture-based pen
computing, 3D social environments and desktop productivity. While at eBay, he led
development of a library of design patterns, for which he and Josh Damon Williams of
Hot Studio pioneered a new methodology for Interaction Audits, which they presented at
IA Summit and Web 2.0 Expo. Peter also led eBayis notorious Pattern Optimization Squad
(POPS) that approves design patterns, and was impresario of the Polynesian-themed Page
Parsing Parties, where designs are deconstructed into their constituent
components.<br />
<br />
When he's not working, Peter can often be found tooting his oboe and English horn in
Redwood Symphony, an ambitious Bay Area community orchestra. He also publishes his
recommendations on California ballot propositions at peterates.com. He holds a degree
in music theory and composition from Harvard.
</p>
</div>
<div class="b9">
<img src="img/scottstroud.jpg" alt="Scott Stroud" class="left" /><a name="ScottStroud"
id="scottstroud"></a>
<h3>
Scott Stroud
</h3>
<h5>
<a href="lightning.html#ScottStroud">Leaning Back With NPR: How We Created A Relaxing Experience For The iPad</a>
</h5>
<p>
Scott Stroud is a Senior User Experience Architect at NPR, specializing in application
user interface design, news design, and usability engineering. He designed the user
experience for many of NPR's Digital Media products, including the NPR for iPad app,
the NPR Music iPhone app, the NPR Election 2008 map, the NPR web site , and the NPR
Music web site . He is a Certified Usability Analyst (CUA) and a Project Management
Professional (PMP) with over 15 years of experience in user-centered design and project
management. Prior to joining NPR, Scott was a technology consultant for Idea
Integration, where he designed software for government and commercial clients,
including: Bureau of Alcohol, Tobacco, Firearms, and Explosives (ATF), U.S. Office of
Personnel Management (OPM), U.S. Treasury Tax and Trade Bureau, and the Center for
Organizational Excellence . He has a bachelor's degree in Systems Engineering from the
University of Virginia. He is currently studying to become a registered yoga teacher.
</p>
</div>
<div class="b9">
<img src="img/scottgeoffreynewson.jpg" alt="Scott Geoffrey Newson" class=
"left" /><a name="ScottGeoffreynewson" id="scottgeoffreynewson"></a>
<h3>
Scott Geoffrey Newson
</h3>
<h5>
<a href="lightning.html#ScottGeoffreyNewson">Fun with non-digital solutions</a>
</h5>
<p>
Scott Newson has worked with: farmers, engineers, artists, programmers, geologists,
students, and soccer-playing-children. Working with the MyHomeYourHome: Tiny House
Project, he got to question how life can be lived with limited residential
square-footage and, at the same time, learn how difficult it is to grow a vibrant
community around a wiki. At the student-run cafe at university he chopped veggies so
well that he was promoted to develop and run the bulk ordering system, in the process
experiencing the trails and tribulations that come with providing healthy food to
stressed and time-starved students. He recently went to Scotland for the summer to
write code for a geology company, and got to experience the wonders of the widespread
and well-used train network in the UK.<br />
<br />
He is studying Computer Science, Psychology, Linguistics, and Anthropology at the
University of British Columbia, and will be graduating in the next year. He generally
works at the interface between software developers and specific users, having learnt
geology, food preparation and basic construction to speak with end users in their own
terms. Currently he is working in the other direction and preparing a paper for
publication that applies an understanding of ecological evolution to the development of
search algorithms in computer science.
</p>
</div>
<div class="b9">
<img src="img/stephenanderson.jpg" alt="Stephen Anderson" class="left" /><a name=
"StephenAnderson" id="StephenAnderson"></a>
<h3>
Stephen Anderson
</h3>
<h5>
<a href="lightning.html#StephenAnderson">Long After the Thrill: Sustaining Passionate Users</a>
</h5>
<p>
Stephen P. Anderson is a speaker and consultant based out of Dallas, Texas. He spends
unhealthy amounts of time thinking about design, psychology and leading intrapreneurial
teams-- topics he frequently speaks about at national and international events.<br />
<br />
Stephen recently published the Mental Notes card deck (www.getmentalnotes.com), a tool
to help businesses use psychology to design better experiences. Heis also writing a
book on "Seductive Interactions" that will explore this topic of psychology and design
in more detail.<br />
<br />
Prior to venturing out on his own, Stephen spent more than a decade building and
leading teams of information architects, interaction designers and UI developers. Heis
designed Web applications for businesses such as Nokia, Frito-Lay, Sabre Travel
Network, and Chesapeake Energy as well as a number of smaller technology
startups.<br />
<br />
Stephen likes to believe that someday he'll have the time to start blogging again at
poetpainter.com
</p>
</div>
<div class="b9">
<img src="img/stevenjohnson.jpg" alt="Steven Johnson" width="125" height="126" class=
"left" /><a name="StevenJohnson" id="stevenjohnson"></a>
<h3>
Steven Johnson
</h3>
<h5>
<a href="lightning.html#StevenJohnson">Introducing IA, ID and UX into New Media Pedagogy, Journalism and Content Publishing</a>
</h5>
<p>
Steven Johnson was an editor and senior online producer at the Los Angeles Times for 7
years before joining Disney Online in 2007. For 5 years he has taught as an adjunct in
the M.A. journalism program at USC's Annenberg School of Communications, where a
fundamental shift is underway in the program's new media curriculum.
</p>
<p></p>
</div>
<div class="b9">
<img src="img/susanwyche.jpg" alt="Susan Wyche" class="left" /><a name="SusanWyche" id=
"susanwyche"></a>
<h3>
Susan Wyche
</h3>
<h5>
<a href="lightning.html#SusanWyche">Design for the Developing World</a>
</h5>
<p>
Susan Wyche is a Computing Innovation Fellow at Virginia Tech's Center for
Human-Computer Interaction. Her research focuses on human-computer interaction, design
and cultural studies of technology. In her dissertation, Wyche used religion as a lens
to understand how alternative worldviews can inform design. She has explored how
Muslims in Atlanta, Charismatic Pentecostals in Sao Paulo, and Protestant Christians in
Nairobi, use mobile phones, computers, and the Internet to support their religious
practices. Each study has resulted in a publication at top-tier conference in her
field, multiple design concepts, and in one case, a mobile phone application available
for download at Apple Inc.'s "App Store."<br />
<br />
Prior to coming to VaTech, Wyche received her PhD in Human-Centered Computing from the
Georgia Institute of Technology, her master's degree from Cornell University and her
undergraduate degree in Industrial Design from Carnegie Mellon University. In addition
to her academic pursuits, Wyche has professional design experience, most notably
working at Libbey Inc. designing glassware and as a design researcher for S.C. Johnson
Inc.
</p>
<div class="clear"></div>
</div>
<div class="b9">
<img src="img/timwood.jpg" alt="Tim Wood" class="left" /><a name="TimWood" id=
"timwood"></a>
<h3>
Tim Wood
</h3>
<h5>
<a href="lightning.html#TimWood">Scandalous Interaction</a>
</h5>
<p>
Tim Wood is currently Director of User Experience at EffectiveUI, an award-winning user
experience agency that specializes in the creation and implementation of custom Web,
mobile, desktop and touch-enabled applications. Prior to joining EffectiveUI, Tim was Creative
Director for Design Innovation and Advanced Development at Eastman Kodak, where he received
international recognition for creativity and design excellence.
</p>
<p>
For more than a decade, Tim has persistently focused on the radical transformation of business
through user experience. From next-generation Web services to consumer electronics, his
passion for design has fueled an inherent desire to innovate and promote progressive methods
of interaction design.
</p>
<div class="clear"></div>
</div><img class="top" src="img/boxB9w.png" alt="Image" />
</div>
<div class="grid_12 footer"> <a href="sponsor.html"><img src="img/heartsponsors.png" id="sponsor" alt="Image" name="sponsor" /></a>
<p class="box">
Special thanks to our sponsors, who have generously supported the IxDA and our annual conference.
</p>
</div>
<div class="grid_12">
<div class="footer2">
<h5 style="border-bottom: 1px solid #D0D0D0">
Diamond Sponsorship
</h5>
<p class="bottom20">
<a href="http://www.microsoft.com/expression/" target="_blank"><img src="img/sponsor/microsoft.gif" alt="Microsoft" /></a>
</p>
<h5 style="border-bottom: 1px solid #D0D0D0">
Gold Sponsorship
</h5>
<p class="bottom20">
<a href="http://www.coroflot.com/" target="_blank"><img src="img/sponsor/coroflot.gif" style="padding: 5px 20px 0px 0px" alt="Coroflot" /></a>
<a href="http://www.effectiveui.com/" target="_blank"><img src="img/sponsor/EUI_logo.gif" style="padding: 0px 20px 10px 0px" alt="effective ui" /></a>
<a href="http://www.adobe.com/" target="_blank"><img src="img/sponsor/adobe.gif" style="padding: 0px 0px 0px 0px" alt="adobe" /></a>
</p>
<h5 style="border-bottom: 1px solid #D0D0D0">
Bronze Sponsorship
</h5>
<p class="bottom20">
<a href="http://www.cooper.com/" target="_blank"><img src="img/sponsor/cooper.gif" alt="Cooper" /></a>
<a href="http://www.dell.com/" target="_blank"><img src="img/sponsor/dell.gif" style="padding: 5px 0px 0px 20px" alt="Dell" /></a>
<a href="http://www.axure.com/" target="_blank"><img src="img/sponsor/axure.gif" style="padding: 8px 0px 0px 25px" alt="Axure" /></a><br />
<a href="http://www.catalystnyc.com/" target="_blank"><img src="img/sponsor/catalyst.gif" style="padding: 0px 30px 5px 0px" alt="catalystnyc" /></a>
<a href="http://www.sears.com/" target="_blank"><img src="img/sponsor/sears.gif" style="padding: 15px 0px 0px 0px" alt="Sears" /></a>
</p>
<h5 style="border-bottom: 1px solid #D0D0D0">
Recruiter, Patron, and In-Kind Sponsorship
</h5>
<p>
<a href="http://www.cpbgroup.com/" target="_blank"><img src="img/sponsor/CPB_Logo.gif" style="width: 100px; padding: 5px 20px 0px 0px" alt="CPB" /></a>
<a href="http://www.morgankaufmann.com/" target="_blank"><img src="img/sponsor/mk.jpg" style="width: 70px; padding: 5px 20px 0px 0px" alt="MK" /></a>
<a href="http://www.hugeinc.com/" target="_blank"><img src="img/sponsor/huge.gif" style="width: 100px; padding: 5px 20px 0px 0px" alt="Huge" /></a>
<a href="http://www.madpow.com/" target="_blank"><img src="img/sponsor/madpow.gif" style="width: 120px; padding: 5px 20px 5px 0px" alt="Mad*Pow" /></a>
<a href="http://www.industrialwisdom.com/" target="_blank"><img src="img/sponsor/iw.gif" style="width: 180px; padding: 10px 20px 0px 0px" alt="Industrial Wisdom" /></a>
<a href="http://www.autodesk.com/" target="_blank"><img src="img/sponsor/autodesk.gif" style="width: 120px; padding: 10px 10px 5px 0px" alt="Autodesk" /></a>
<a href="http://www.sapient.com/en-us/sapientnitro.html" target="_blank"><img src="img/sponsor/sapient.gif" style="width: 140px; padding: 10px 10px 5px 0px" alt="Sapient Nitro" /></a>
<a href="http://meldstudios.com.au/" target="_blank"><img src="img/sponsor/meld.gif" style="width: 100px; padding: 10px 20px 0px 0px" alt="Meld" /></a>
<a href="http://interactiondesign.sva.edu/" target="_blank"><img src="img/sponsor/sva.gif" style="width: 160px; padding: 10px 20px 0px 0px" alt="SVA" /></a>
<a href="http://www.rosenfeldmedia.com/" target="_blank"><img src="img/sponsor/rosenfeld.gif" style="width: 120px; padding: 10px 20px 5px 0px" alt="Rosenfeld Media" /></a>
<a href="http://johnnyholland.org/" target="_blank"><img src="img/sponsor/jh.gif" style="width: 100px; padding: 10px 20px 2px 0px" alt="JH" /></a>
<a href="http://www.phenomblue.com/" target="_blank"><img src="img/sponsor/phenomblue.gif" style="width: 160px; padding: 10px 30px 12px 0px" alt="Phenomblue" /></a>
<a href="http://www.cxinsights.com/" target="_blank"><img src="img/sponsor/cx.gif" style="width: 120px; padding: 10px 15px 2px 0px" alt="CX Insights" /></a>
<a href="http://www.electronicink.com/" target="_blank"><img src="img/sponsor/electronicink.gif" style="width: 140px; padding: 0px 15px 10px 0px" alt="Electronic Ink" /></a>
<a href="http://www.apogeehk.com/" target="_blank"><img src="img/sponsor/apogee.gif" style="width: 120px; padding: 10px 15px 2px 0px" alt="Apogee HK" /></a>
<a href="http://www.iqcontent.com/" target="_blank"><img src="img/sponsor/iqContent.gif" style="width:120px; padding: 0px 20px 15px 0px" alt="iQ Content Ltd" /></a>
<a href="http://www.balsamiq.com/" target="_blank"><img src="img/sponsor/balsamiq.gif" style="width: 120px; padding: 6px 15px 2px 0px" alt="Balsamiq" /></a>
<a href="http://www.konigi.com/" target="_blank"><img src="img/sponsor/konigi.gif" style="width: 120px; padding: 4px 15px 6px 0px" alt="Konigi" /></a>
<a href="http://iainstitute.org/" target="_blank"><img src="img/sponsor/iai.gif" style="width: 240px; padding: 10px 20px 0px 0px" alt="IAI" /></a>
<a href="http://uxshowandtell.com/" target="_blank"><img src="img/sponsor/UXShowTell-logo.gif" style="width: 120px; padding: 5px 20px 0px 0px" alt="UX Show and tell" /></a>
<a href="https://twitter.com/uxbookclub/" target="_blank"><img src="img/sponsor/UXbookclub.jpg" style="width: 60px; padding: 15px 20px 0px 0px" alt="UX Bookclub" /></a>
<a href="http://infinityplusone.com/" target="_blank"><img src="img/sponsor/infiinityplus1_logo.gif" style="width: 80px; padding: 15px 20px 0px 0px" alt="InfinityPlusOne" /></a>
<a href="http://www.webgrrls.com/" target="_blank"><img src="img/sponsor/webgrrls.gif" style="width: 200px; padding: 20px 20px 0px 0px" alt="Webgrrls International" /></a>
<a href="http://www.speakerrate.com/" target="_blank"><img src="img/sponsor/speakerrate.jpg" style="width: 80px; padding: 20px 20px 0px 0px" alt="Speaker Rate" /></a>
</p>
</div><img src="img/footerB.png" alt="Image" />
</div><!--end outer container-->
<p class="grid_8">
Questions? Talk to us! <a href="mailto:interaction@ixda.org">interaction@ixda.org</a><br />
Want to know <a href="committee.html">who we are?</a>
</p>
<p class="grid_4 right">
© 2008-2011 Interaction Design Association
</p>
</div>
<script type="text/javascript">
//<![CDATA[
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-16955049-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
//]]>
</script>
</body>
</html>