-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
971 lines (960 loc) · 36.7 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
<!DOCTYPE html>
<html>
<head>
<title>Machine Agency</title>
<link rel="icon" href="assets/img/favicon.ico" type="image/x-icon" />
<link rel="stylesheet" href="style.css" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta charset="UTF-8" />
<meta property="og:title" content="Machine Agency" />
<meta property="og:type" content="website" />
<meta property="og:url" content="http://depts.washington.edu/machines" />
<meta property="og:image" content="assets/img/stages.jpg" />
</head>
<body>
<section class="main-container-section">
<div class="page-headline padding-bottom-half">Machine Agency</div>
<div class="page-subheadline padding-bottom-std">
<a href="https://hcde.washington.edu"
>Human Centered Design and Engineering</a
>,
<a href="https://uw.edu">University of Washington</a>
</div>
<div class="page-mission padding-bottom-std">
Our work harnesses the <strong>precision of machines</strong> for the
<strong>creativity of individuals</strong>.
</div>
<div class="page-notice padding-bottom-std">
<a href="./apply.html"
>We are recruiting PhD students and postdocs! Read more about getting
involved with Machine Agency.</a
>
</div>
<div class="headline padding-bottom-std">Research</div>
<section class="projects-section padding-bottom-std">
<div class="project-tile">
<a href="projects/blended-primitives/">
<div class="project-photo-container">
<img
class="project-photo padding-bottom-std"
src="projects/blended-primitives/thumbnail.png" />
</div>
</a>
<a href="projects/blended-primitives/">
<div class="project-title padding-bottom-std">KnitScape II</div>
</a>
<div class="project-text">
We extended the original KnitScape editor so instruction charts are rasterized from layered vector primitives.
</div>
<div class="project-links padding-bottom-std">
<a
target="_blank"
rel="noopener noreferrer"
href="projects/blended-primitives/"
>Project Page</a
>
<a
target="_blank"
rel="noopener noreferrer"
href="https://dl.acm.org/doi/10.1145/3654777.3676351"
>Paper</a
>
</div>
</div>
<div class="project-tile">
<a href="projects/knitscape/">
<div class="project-photo-container">
<img
class="project-photo padding-bottom-std"
src="projects/knitscape/thumbnail.png" />
</div>
</a>
<a href="projects/knitscape/">
<div class="project-title padding-bottom-std">KnitScape I</div>
</a>
<div class="project-text">
We built a browser-based tool for exploring the surprising design
space of slip and tuck colorwork using a live yarn-level simulation.
</div>
<div class="project-links padding-bottom-std">
<a
target="_blank"
rel="noopener noreferrer"
href="projects/knitscape/"
>Project Page</a
>
<a
target="_blank"
rel="noopener noreferrer"
href="https://dl.acm.org/doi/10.1145/3613904.3642799"
>Paper</a
>
</div>
</div>
<div class="project-tile">
<a href="projects/tandem/">
<div class="project-photo-container">
<img
class="project-photo padding-bottom-std"
src="projects/tandem/teaser.jpg"
alt="three images overlaid with images of computational notebooks; fltr CAD, a milling machine, and a milled wooden propellor" />
</div>
</a>
<a href="projects/tandem/">
<div class="project-title padding-bottom-std">
Tandem: Reproducible Digital Fabrication Workflows as Multimodal
Programs
</div>
</a>
<div class="project-text">
Tandem is a software library that lets a fabricator implement an
end-to-end fabrication workflow as a computational notebook program
that others can run to physically reproduce the workflow.
</div>
<div class="project-links padding-bottom-std">
<a target="_blank" rel="noopener noreferrer" href="projects/tandem/"
>Project Page</a
>
<a
target="_blank"
rel="noopener noreferrer"
href="https://dl.acm.org/doi/full/10.1145/3613904.3642751"
>Paper</a
>
</div>
</div>
<div class="project-tile">
<a href="projects/playing-the-print/">
<div class="project-photo-container">
<img
class="project-photo padding-bottom-std"
src="projects/playing-the-print/thumbnail.jpg"
alt="A MIDI controller connected to a 3D printer for interactive control." />
</div>
</a>
<a href="projects/playing-the-print/">
<div class="project-title padding-bottom-std">
Playing the Print
</div>
</a>
<div class="project-text">
We interactively tune machine settings using MIDI controllers and
consider strategies to document the resulting outcomes.
</div>
<div class="project-links padding-bottom-std">
<a
target="_blank"
rel="noopener noreferrer"
href="projects/playing-the-print/"
>Project Page</a
>
<a
target="_blank"
rel="noopener noreferrer"
href="https://doi.org/10.1145/3613905.3650966"
>Paper</a
>
</div>
</div>
<div class="project-tile">
<div class="project-photo-container">
<img
class="project-photo padding-bottom-std"
src="projects/technical-mentality/thumbnail.png"
alt="Le Corbusier's monastery as an example of technical mentality." />
</div>
<div class="project-title padding-bottom-std">
Technical Mentality
</div>
<div class="project-text">
We present four principles for HCI research and practice based on
Simondon's concept of technical mentality.
</div>
<div class="project-links padding-bottom-std">
<a
target="_blank"
rel="noopener noreferrer"
href="https://dl.acm.org/doi/10.1145/3613904.3642720"
>Paper</a
>
<a
target="_blank"
rel="noopener noreferrer"
href="https://youtu.be/xyWWkQp3xLs?si=82jXbuoqRlH4ITIb"
>Presentation</a
>
</div>
</div>
<div class="project-tile">
<a href="projects/duckbot/">
<div class="project-photo-container">
<img
class="project-photo padding-bottom-std"
src="projects/duckbot/loop-dip.jpg"
alt="A system for automated imaging and manipulation of duckweed." />
</div>
</a>
<a href="projects/duckbot/">
<div class="project-title padding-bottom-std">The Duckbot</div>
</a>
<div class="project-text">
We built custom tools and software to automate imaging and
manipulation of duckweed for plant biology experiments.
</div>
<div class="project-links padding-bottom-std">
<a
target="_blank"
rel="noopener noreferrer"
href="projects/duckbot/"
>Project Page</a
>
<a
target="_blank"
rel="noopener noreferrer"
href="https://journals.plos.org/plosone/article?id=10.1371/journal.pone.0296717"
>Paper</a
>
</div>
</div>
<div class="project-tile">
<a href="projects/dynamic-toolchains/">
<div class="project-photo-container">
<img
class="project-photo padding-bottom-std"
src="projects/dynamic-toolchains/thumbnail.png"
alt="A dataflow programming environment with a colorful cellular automata." />
</div>
</a>
<a href="projects/dynamic-toolchains/">
<div class="project-title padding-bottom-std">
Dynamic Toolchains
</div>
</a>
<div class="project-text">
We built an event-driven dataflow environment to scaffold
development of new digital fabrication workflows.
</div>
<div class="project-links padding-bottom-std">
<a
target="_blank"
rel="noopener noreferrer"
href="projects/dynamic-toolchains/"
>Project Page</a
>
<a
target="_blank"
rel="noopener noreferrer"
href="https://dl.acm.org/doi/pdf/10.1145/3586183.3606802"
>Paper</a
>
</div>
</div>
<div class="project-tile">
<div class="project-photo-container">
<img
class="project-photo padding-bottom-std"
src="assets/img/spaghetti.jpg"
alt="failed 3d print" />
</div>
<div class="project-title padding-bottom-std">
3D Printers Don’t Fix Themselves
</div>
<div class="project-text">
We study how practitioners maintain their FFF 3D printers in the
home and find that maintenance is core to our participants' printing
practice.
</div>
<div class="project-links padding-bottom-std">
<a
target="_blank"
rel="noopener noreferrer"
href="https://dl.acm.org/doi/10.1145/3563657.3595991"
>Paper</a
>
</div>
</div>
<div class="project-tile">
<div class="project-photo-container">
<img
class="project-photo padding-bottom-std"
src="assets/img/forking.png"
alt="network diagrams" />
</div>
<div class="project-title padding-bottom-std">Forking a Sketch</div>
<div class="project-text">
We pair network analysis with qualitative techniques to capture
high-level patterns and meaningful details about how creative coders
remix sketches.
</div>
<div class="project-links padding-bottom-std">
<a
target="_blank"
rel="noopener noreferrer"
href="https://dl.acm.org/doi/10.1145/3563657.3595969"
>Paper</a
>
</div>
</div>
<div class="project-tile">
<div class="project-photo-container">
<img
class="project-photo padding-bottom-std"
src="assets/img/food.jpg"
alt="adding fillings to siwawa" />
</div>
<div class="project-title padding-bottom-std">
Doufu, Rice Wine, and 面饼
</div>
<div class="project-text">
We investigate how to support the connections between precision and
cultural knowledge in cooking.
</div>
<div class="project-links padding-bottom-std">
<a href="projects/food/">Project Page</a>
<a
target="_blank"
rel="noopener noreferrer"
href="https://dl.acm.org/doi/10.1145/3544548.3580697"
>Paper</a
>
<a
target="_blank"
rel="noopener noreferrer"
href="https://www.youtube.com/watch?v=lI1jgNwNJCQ&ab_channel=ACMSIGCHI"
>Presentation</a
>
</div>
</div>
<div class="project-tile">
<div class="project-photo-container">
<img
class="project-photo padding-bottom-std"
src="assets/img/imprimer.png"
alt="molds based on mathematical functions milled with imprimer" />
</div>
<div class="project-title padding-bottom-std">Imprimer</div>
<div class="project-text">
We show how to use computational notebooks to unlock new ways of
working with CNC mills.
</div>
<div class="project-links padding-bottom-std">
<a
target="_blank"
rel="noopener noreferrer"
href="https://doi.org/10.1145/3544548.3581334"
>Paper</a
>
<a
target="_blank"
rel="noopener noreferrer"
href="https://observablehq.com/@machine-agency"
>Code</a
>
<a
target="_blank"
rel="noopener noreferrer"
href="https://www.youtube.com/watch?v=ydS0nFklBbk"
>Teaser</a
>
<a
target="_blank"
rel="noopener noreferrer"
href="https://www.youtube.com/watch?v=9L3xDgS5-H0"
>Presentation</a
>
</div>
</div>
<div class="project-tile">
<div class="project-photo-container">
<img
class="project-photo padding-bottom-std"
src="assets/img/Cher_as-the-duckbot.jpg"
alt="a tabletop laboratory automation machine" />
</div>
<div class="project-title padding-bottom-std">
Pathways to Open-Source Hardware for Laboratory Automation
</div>
<div class="project-text">
Bringing together a community of scientists to collaborate on ways
of sharing, vetting, and maintaining open source hardware for
science and engineering research.
</div>
<div class="project-links padding-bottom-std">
<a href="https://depts.washington.edu/machines/scienceautomation"
>Website</a
>
<a
href="https://nsf.gov/awardsearch/showAward?AWD_ID=2229018&HistoricalAwards=false"
>NSF Award</a
>
</div>
</div>
<div class="project-tile">
<div class="project-photo-container">
<img
class="project-photo padding-bottom-std"
src="assets/img/verso.png"
alt="diagram showing live programming resulting from editing the code geometry dot translate 50 50, an example verso module, and an example toolpath visualization on screen and projected in-situ." />
</div>
<div class="project-title padding-bottom-std">Verso</div>
<div class="project-text">
Exploratory digital fabrication often involves low-level machine
programming, to which Verso adds within-code GUIs and expressive
toolpath visualization.
</div>
<div class="project-links padding-bottom-std">
<a
target="_blank"
rel="noopener noreferrer"
href="https://dl.acm.org/doi/10.1145/3559400.3561998"
>Paper</a
>
</div>
</div>
<div class="project-tile">
<div class="project-photo-container">
<img
class="project-photo padding-bottom-std"
src="assets/img/biolabs.jpg"
alt="example use of automation in community biolabs to create images using bacteria." />
</div>
<div class="project-title padding-bottom-std">
Studying Community Biolabs
</div>
<div class="project-text">
From a qualitative study of community biolabs, we discuss how
members are creating new approaches to laboratory biology with
implications for systems that support non-traditional settings for
scientific practice.
</div>
<div class="project-links padding-bottom-std">
<a
target="_blank"
rel="noopener noreferrer"
href="https://dl.acm.org/doi/10.1145/3532106.3533521"
>Paper</a
>
<a
target="_blank"
rel="noopener noreferrer"
href="https://youtu.be/TUk0FgcK-CI"
>Teaser</a
>
<a
target="_blank"
rel="noopener noreferrer"
href="https://youtu.be/ZlWRYSX-qwA"
>Presentation</a
>
</div>
</div>
<div class="project-tile">
<div class="project-photo-container">
<img
class="project-photo padding-bottom-std"
src="assets/img/p5fab.jpg"
alt="collage of unconventional 3D prints created with our system." />
</div>
<div class="project-title padding-bottom-std">p5.fab</div>
<div class="project-text">
A system for controlling digital fabrication machines from the
creative coding environment p5.js, informed by insights into 3D
printing practice.
</div>
<div class="project-links padding-bottom-std">
<a
target="_blank"
rel="noopener noreferrer"
href="https://dl.acm.org/doi/10.1145/3532106.3533496"
>Paper</a
>
<a
target="_blank"
rel="noopener noreferrer"
href="https://youtu.be/Wp_uPIoz5Ag"
>Teaser</a
>
<a
target="_blank"
rel="noopener noreferrer"
href="https://youtu.be/CWnAlwaf5rg"
>Presentation</a
>
<a
target="_blank"
rel="noopener noreferrer"
href="https://github.com/machineagency/p5.fab"
>Code</a
>
</div>
</div>
<div class="project-tile">
<div class="project-photo-container">
<img
class="project-photo padding-bottom-std"
src="assets/img/vespidae-system.jpg"
alt="Direct control of a machine (right) from Rhino/Grasshopper (left)" />
</div>
<div class="project-title padding-bottom-std">
Interactive Digital Fabrication Machine Control Directly Within a
CAD Environment
</div>
<div class="project-text">
Enabling control of digital fabrication machines from a
Computer-Aided Design (CAD) environment, including interactive
control of toolpath geometry as well as machine parameters such as
speed, acceleration, or jerk.
</div>
<div class="project-links padding-bottom-std">
<a
target="_blank"
rel="noopener noreferrer"
href="https://doi.org/10.1145/3485114.3485120"
>Paper</a
>
</div>
</div>
<div class="project-tile">
<div class="project-photo-container">
<img
class="project-photo padding-bottom-std"
src="assets/img/taxon.jpg"
alt="taxon transforms scattered resources for machine use to a unified language" />
</div>
<div class="project-title padding-bottom-std">Taxon</div>
<div class="project-text">
A language that encodes machines, workflows, and rules of thumb as
programs. Taxon applies the safety and extensibility of programming
to hands-on making.
</div>
<div class="project-links padding-bottom-std">
<a
target="_blank"
rel="noopener noreferrer"
href="https://doi.org/10.1145/3472749.3474779"
>Paper</a
>
<a
target="_blank"
rel="noopener noreferrer"
href="https://youtu.be/By4TMwFqmsU"
>Short Talk</a
>
<a
target="_blank"
rel="noopener noreferrer"
href="https://youtu.be/W1pRXSuVDWk"
>Long Talk</a
>
<a
target="_blank"
rel="noopener noreferrer"
href="https://github.com/machineagency/taxon"
>Code</a
>
</div>
</div>
<div class="project-tile">
<a href="projects/plottertwitter/">
<div class="project-photo-container">
<img
class="project-photo padding-bottom-std"
src="projects/plottertwitter/thumbnail.png"
alt="Collage of plotted artwork shared with the PlotterTwitter hashtag." />
</div>
</a>
<a href="projects/plottertwitter/">
<div class="project-title padding-bottom-std">
Studying #PlotterTwitter
</div>
</a>
<div class="project-text">
We conducted a qualitative study of #PlotterTwitter and found that
makers champion creative exploration of materials over a predictable
series of steps.
</div>
<div class="project-links padding-bottom-std">
<a href="projects/plottertwitter/">Project Page</a>
<a href="https://dl.acm.org/doi/abs/10.1145/3411764.3445653"
>Paper</a
>
<a href="https://youtu.be/xqhT-8ElJ68">Video</a>
</div>
</div>
<div class="project-tile">
<div class="project-photo-container">
<img
class="project-photo padding-bottom-std"
src="assets/img/online_teaching.png"
alt="collage of student projects from online digital fabrication courses" />
</div>
<div class="project-title padding-bottom-std">
Teaching Digital Fabrication Online
</div>
<div class="project-text">
Through interviews, we found that learning with hobbyist equipment
and online social networks could emulate using industrial equipment
in shared workshops.
</div>
<div class="project-links padding-bottom-std">
<a href="https://dl.acm.org/doi/abs/10.1145/3411764.3445450"
>Paper</a
>
<a href="https://www.youtube.com/watch?v=uO77N3C3pUM">Video</a>
</div>
</div>
<div class="project-tile">
<div class="project-photo-container">
<img
class="project-photo padding-bottom-std"
src="assets/img/lamifold.png"
alt="two lamifold mechanisms" />
</div>
<div class="project-title padding-bottom-std">Lamifold</div>
<div class="project-text">
Lamifold is a workflow for making functional mechanical objects
using a laser cutter.
</div>
<div class="project-links padding-bottom-std">
<a href="https://dl.acm.org/doi/abs/10.1145/3379337.3415885"
>Paper</a
>
<a href="https://www.youtube.com/watch?v=bRBTn5N-OYc">Video</a>
</div>
</div>
<div class="project-tile">
<div class="project-photo-container">
<img
class="project-photo padding-bottom-std"
src="assets/img/jubilee.png"
alt="CAD representation of Jubilee machine" />
</div>
<div class="project-title padding-bottom-std">Jubilee</div>
<div class="project-text">
Jubilee is an open-source hardware machine with automatic
tool-changing and interchangeable bed plates.
</div>
<div class="project-links padding-bottom-std">
<a href="https://dl.acm.org/doi/10.1145/3313831.3376425">Paper</a>
<a href="https://www.youtube.com/watch?v=TfB29j_LmQw">Video</a>
<a href="https://jubilee3d.com/index.php?title=Main_Page">Wiki</a>
<a href="https://github.com/machineagency/jubilee">Github</a>
</div>
</div>
<div class="project-tile">
<div class="project-photo-container">
<img
class="project-photo padding-bottom-std"
src="assets/img/mom-mock.png"
alt="Mockup of interface with language and GUI elements" />
</div>
<div class="project-title padding-bottom-std">Machine-o-Matic</div>
<div class="project-text">
Initial investigations into representing parts of fabrication
workflows as programs.
</div>
<div class="project-links padding-bottom-std">
<a href="https://jasperoleary.com/assets/mom/plateau.pdf">Paper</a>
</div>
</div>
<div class="project-tile">
<div class="project-photo-container">
<img
class="project-photo padding-bottom-std"
src="assets/img/fabricatable.jpg"
alt="Schematic Representation of Fabricatable Machine Modules" />
</div>
<div class="project-title padding-bottom-std">
Fabricatable Machines
</div>
<div class="project-text">
A Toolkit for Building Digital Fabrication Machines.
</div>
<div class="project-links padding-bottom-std">
<a href="https://dl.acm.org/doi/10.1145/3374920.3374929">Paper</a>
<a
href="https://github.com/fellesverkstedet/fabricatable-machines/wiki"
>Documentation</a
>
</div>
</div>
<div class="project-tile">
<div class="project-photo-container">
<img
class="project-photo padding-bottom-std"
src="assets/img/stages.jpg"
alt="Various cardboard machine configurations" />
</div>
<div class="project-title padding-bottom-std">
Cardboard Machine Kit
</div>
<div class="project-text">
A framework for the rapid prototyping of rapid prototyping machines.
Modular hardware, modular electronics, and modular software.
</div>
<div class="project-links padding-bottom-std">
<a href="https://dl.acm.org/doi/10.1145/3025453.3025491">Paper</a>
<a href="https://vimeo.com/139379884">Video</a>
</div>
</div>
<div class="project-tile">
<div class="project-photo-container">
<img
class="project-photo padding-bottom-std"
src="assets/img/popfab.png"
alt="Popfab briefcase on a grassy field" />
</div>
<div class="project-title padding-bottom-std">Popfab</div>
<div class="project-text">
A portable, multi-purpose digital fabrication tool that folds into a
briefcase.
</div>
<div class="project-links padding-bottom-std">
<a href="https://dl.acm.org/doi/abs/10.1145/3024969.3025009"
>Paper</a
>
<a href="https://vimeo.com/45911972">Video</a>
</div>
</div>
<div class="project-tile">
<div class="project-photo-container">
<img
class="project-photo padding-bottom-std"
src="assets/img/material-flow.png"
alt="Diagram of makerspace setup" />
</div>
<div class="project-title padding-bottom-std">
Material Flow in Makerspaces
</div>
<div class="project-text">
An investigation into the practices that makerspaces around the
world use to keep track of their materials.
</div>
<div class="project-links padding-bottom-std">
<a
href="https://drive.google.com/file/d/1uUtNgzXHI9MSo0_I6br_rs_JKfn71bv2/view"
>Paper</a
>
</div>
</div>
</section>
<div class="headline padding-bottom-std">Agents</div>
<section class="people-section">
<div class="people-tile padding-bottom-std">
<a href="http://infosyncratic.nl/">
<img
class="people-photo padding-bottom-std"
src="assets/img/nadya.jpg"
alt="Nadya Peek" />
<div class="people-title padding-bottom-std">Nadya Peek</div>
<div class="people-text padding-bottom-std">
Assistant Professor
</div>
</a>
</div>
<div class="people-tile padding-bottom-std">
<a href="https://www.linkedin.com/in/gabriellebenabdallah">
<img
class="people-photo padding-bottom-std"
src="assets/img/gabrielle.jpg"
alt="Gabrielle Benabdallah" />
<div class="people-title padding-bottom-std">
Gabrielle Benabdallah
</div>
<div class="people-text padding-bottom-std">PhD Candidate</div>
</a>
</div>
<div class="people-tile padding-bottom-std">
<a
href="https://scholar.google.com/citations?user=zcUjF8IAAAAJ&hl=en&oi=ao">
<img
class="people-photo padding-bottom-std"
src="assets/img/gina.jpg"
alt="Gina Clepper" />
<div class="people-title padding-bottom-std">Gina Clepper</div>
<div class="people-text padding-bottom-std">PhD Student</div>
</a>
</div>
<div class="people-tile padding-bottom-std">
<a href="#">
<img
class="people-photo padding-bottom-std"
src="assets/img/sam-f.jpg"
alt="Sam Ferguson" />
<div class="people-title padding-bottom-std">Sam Ferguson</div>
<div class="people-text padding-bottom-std">
Undergaduate Student
</div>
</a>
</div>
<div class="people-tile padding-bottom-std">
<a href="https://sal.td/">
<img
class="people-photo padding-bottom-std"
src="assets/img/salt.jpg"
alt="Wm Salt Hale" />
<div class="people-title padding-bottom-std">Wm Salt Hale</div>
<div class="people-text padding-bottom-std">
Open Source Community Manager
</div>
</a>
</div>
<div class="people-tile padding-bottom-std">
<a href="https://danli-luo.com/">
<img
class="people-photo padding-bottom-std"
src="assets/img/danli.jpg"
alt="Danli Luo" />
<div class="people-title padding-bottom-std">Danli Luo</div>
<div class="people-text padding-bottom-std">PhD Student</div>
</a>
</div>
<div class="people-tile padding-bottom-std">
<a href="https://yuechengpeng.github.io/yuechengDesignGarden/">
<img
class="people-photo padding-bottom-std"
src="assets/img/leo.jpg"
alt="Yuecheng Peng" />
<div class="people-title padding-bottom-std">Yuecheng Peng</div>
<div class="people-text padding-bottom-std">Masters Student</div>
</a>
</div>
<div class="people-tile padding-bottom-std">
<a href="https://blahblahblair.com/">
<img
class="people-photo padding-bottom-std"
src="assets/img/blair.jpg"
alt="Blair Subbaraman" />
<div class="people-title padding-bottom-std">Blair Subbaraman</div>
<div class="people-text padding-bottom-std">PhD Candidate</div>
</a>
</div>
<div class="people-tile padding-bottom-std">
<a href="https://twigg.gg/">
<img
class="people-photo padding-bottom-std"
src="assets/img/hannah.jpg"
alt="Hannah Twigg-Smith" />
<div class="people-title padding-bottom-std">
Hannah Twigg-Smith
</div>
<div class="people-text padding-bottom-std">PhD Candidate</div>
</a>
</div>
</section>
<div class="headline padding-bottom-std">Field Agents</div>
<section class="people-section">
<ul class="field-agent-list">
<li>
<a href="https://www.linkedin.com/in/orlando-de-lange-575842b3">
<p class="fa-name">Orlando de Lange</p>
<p class="fa-affiliation">
Postdoctoral Researcher, now Professor at Shoreline Community
College
</p>
</a>
</li>
<li>
<a href="https://kelliead.com/">
<p class="fa-name">Kellie Dunn</p>
<p class="fa-affiliation">
MS '21, now PhD at the University of Copenhagen
</p>
</a>
</li>
<li>
<a href="https://www.linkedin.com/in/cindy-g-feng">
<p class="fa-name">Cindy Feng</p>
<p class="fa-affiliation">MS '21</p>
</a>
</li>
<li>
<a href="https://www.frikkfossdal.com/">
<p class="fa-name">Frikk Fossdal</p>
<p class="fa-affiliation">Visiting student, PhD '24 from HVL Norway</p>
</a>
</li>
<li>
<a href="https://www.linkedin.com/in/gillespie-brian-3260693b">
<p class="fa-name">Brian Gillespie</p>
<p class="fa-affiliation">McNeel</p>
</a>
</li>
<li>
<a href="https://eunicemjun.com/">
<p class="fa-name">Eunice Jun</p>
<p class="fa-affiliation">
Collaborator, PhD '23 from UW CSE, now at UCLA
</p>
</a>
</li>
<li>
<a href="https://www.khanglee.com/">
<p class="fa-name">Khang Lee</p>
<p class="fa-affiliation">BS '20</p>
</a>
</li>
<li>
<a href="https://www.linkedin.com/in/dannyleen">
<p class="fa-name">Danny Leen</p>
<p class="fa-affiliation">Visiting student, PhD '21 from KU Leuven, Belgium</p>
</a>
</li>
<li>
<a href="https://di.ku.dk/Ansatte/?id=530805&vis=medarbejder">
<p class="fa-name">Maja Ling Han</p>
<p class="fa-affiliation">
Visiting Masters Student from the University of Copenhagen
</p>
</a>
</li>
<li>
<a href="http://cnandi.com/">
<p class="fa-name">Chandrakana Nandi</p>
<p class="fa-affiliation">Collaborator, PhD '21 from UW CSE, now at Certora</p>
</a>
</li>
<li>
<a
href="https://www.tudelft.nl/en/ide/about-ide/people/sauerwein-m/">
<p class="fa-name">Marita Sauerwein</p>
<p class="fa-affiliation">Visiting student, PhD '21 from TU Delft, Netherlands</p>
</a>
</li>
<li>
<a href="https://www.linkedin.com/in/shenna-shim-892181260">
<p class="fa-name">Shenna Shim</p>
<p class="fa-affiliation">BS '23</p>
</a>
</li>
<li>
<a href="https://jasperoleary.com/">
<p class="fa-name">Jasper Tran O'Leary</p>
<p class="fa-affiliation">PhD '24 from UW CSE, now at Google</p>
</a>
</li>
<li>
<a href="http://www.doublejumpelectric.com/">
<p class="fa-name">Sonya Vasquez</p>
<p class="fa-affiliation">PhD Student</p>
</a>
</li>
<li>
<a href="https://awaer.github.io/">
<p class="fa-name">Andrew Waer</p>
<p class="fa-affiliation">MS '20</p>
</a>
</li>
<li>
<a href="https://www.linkedin.com/in/yangwilla">
<p class="fa-name">Willa Yang</p>
<p class="fa-affiliation">
BS '20, now PhD Student at the University of Chicago
</p>
</a>
</li>
</ul>
</section>
</section>
</body>
</html>