-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbibliography.html
1560 lines (1405 loc) · 114 KB
/
bibliography.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="" xml:lang="">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>Bibliography | Design by Play</title>
<meta name="description" content="Bibliography | Design by Play" />
<meta name="generator" content="bookdown 0.33 and GitBook 2.6.7" />
<meta property="og:title" content="Bibliography | Design by Play" />
<meta property="og:type" content="book" />
<meta name="twitter:card" content="summary" />
<meta name="twitter:title" content="Bibliography | Design by Play" />
<meta name="author" content="Haider Ali Akmal" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<link rel="prev" href="AppendixC.html"/>
<script src="libs/jquery-3.6.0/jquery-3.6.0.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/fuse.js@6.4.6/dist/fuse.min.js"></script>
<link href="libs/gitbook-2.6.7/css/style.css" rel="stylesheet" />
<link href="libs/gitbook-2.6.7/css/plugin-table.css" rel="stylesheet" />
<link href="libs/gitbook-2.6.7/css/plugin-bookdown.css" rel="stylesheet" />
<link href="libs/gitbook-2.6.7/css/plugin-highlight.css" rel="stylesheet" />
<link href="libs/gitbook-2.6.7/css/plugin-search.css" rel="stylesheet" />
<link href="libs/gitbook-2.6.7/css/plugin-fontsettings.css" rel="stylesheet" />
<link href="libs/gitbook-2.6.7/css/plugin-clipboard.css" rel="stylesheet" />
<link href="libs/anchor-sections-1.1.0/anchor-sections.css" rel="stylesheet" />
<link href="libs/anchor-sections-1.1.0/anchor-sections-hash.css" rel="stylesheet" />
<script src="libs/anchor-sections-1.1.0/anchor-sections.js"></script>
<style type="text/css">
pre > code.sourceCode { white-space: pre; position: relative; }
pre > code.sourceCode > span { display: inline-block; line-height: 1.25; }
pre > code.sourceCode > span:empty { height: 1.2em; }
.sourceCode { overflow: visible; }
code.sourceCode > span { color: inherit; text-decoration: inherit; }
pre.sourceCode { margin: 0; }
@media screen {
div.sourceCode { overflow: auto; }
}
@media print {
pre > code.sourceCode { white-space: pre-wrap; }
pre > code.sourceCode > span { text-indent: -5em; padding-left: 5em; }
}
pre.numberSource code
{ counter-reset: source-line 0; }
pre.numberSource code > span
{ position: relative; left: -4em; counter-increment: source-line; }
pre.numberSource code > span > a:first-child::before
{ content: counter(source-line);
position: relative; left: -1em; text-align: right; vertical-align: baseline;
border: none; display: inline-block;
-webkit-touch-callout: none; -webkit-user-select: none;
-khtml-user-select: none; -moz-user-select: none;
-ms-user-select: none; user-select: none;
padding: 0 4px; width: 4em;
color: #aaaaaa;
}
pre.numberSource { margin-left: 3em; border-left: 1px solid #aaaaaa; padding-left: 4px; }
div.sourceCode
{ }
@media screen {
pre > code.sourceCode > span > a:first-child::before { text-decoration: underline; }
}
code span.al { color: #ff0000; font-weight: bold; } /* Alert */
code span.an { color: #60a0b0; font-weight: bold; font-style: italic; } /* Annotation */
code span.at { color: #7d9029; } /* Attribute */
code span.bn { color: #40a070; } /* BaseN */
code span.bu { color: #008000; } /* BuiltIn */
code span.cf { color: #007020; font-weight: bold; } /* ControlFlow */
code span.ch { color: #4070a0; } /* Char */
code span.cn { color: #880000; } /* Constant */
code span.co { color: #60a0b0; font-style: italic; } /* Comment */
code span.cv { color: #60a0b0; font-weight: bold; font-style: italic; } /* CommentVar */
code span.do { color: #ba2121; font-style: italic; } /* Documentation */
code span.dt { color: #902000; } /* DataType */
code span.dv { color: #40a070; } /* DecVal */
code span.er { color: #ff0000; font-weight: bold; } /* Error */
code span.ex { } /* Extension */
code span.fl { color: #40a070; } /* Float */
code span.fu { color: #06287e; } /* Function */
code span.im { color: #008000; font-weight: bold; } /* Import */
code span.in { color: #60a0b0; font-weight: bold; font-style: italic; } /* Information */
code span.kw { color: #007020; font-weight: bold; } /* Keyword */
code span.op { color: #666666; } /* Operator */
code span.ot { color: #007020; } /* Other */
code span.pp { color: #bc7a00; } /* Preprocessor */
code span.sc { color: #4070a0; } /* SpecialChar */
code span.ss { color: #bb6688; } /* SpecialString */
code span.st { color: #4070a0; } /* String */
code span.va { color: #19177c; } /* Variable */
code span.vs { color: #4070a0; } /* VerbatimString */
code span.wa { color: #60a0b0; font-weight: bold; font-style: italic; } /* Warning */
</style>
<style type="text/css">
/* Used with Pandoc 2.11+ new --citeproc when CSL is used */
div.csl-bib-body { }
div.csl-entry {
clear: both;
}
.hanging div.csl-entry {
margin-left:2em;
text-indent:-2em;
}
div.csl-left-margin {
min-width:2em;
float:left;
}
div.csl-right-inline {
margin-left:2em;
padding-left:1em;
}
div.csl-indent {
margin-left: 2em;
}
</style>
<link rel="stylesheet" href="style.css" type="text/css" />
</head>
<body>
<div class="book without-animation with-summary font-size-2 font-family-1" data-basepath=".">
<div class="book-summary">
<nav role="navigation">
<ul class="summary">
<li><a href="./">Design by Play</a></li>
<li class="divider"></li>
<li class="chapter" data-level="" data-path="index.html"><a href="index.html"><i class="fa fa-check"></i>Note from Author</a></li>
<li class="part"><span><b>Preface</b></span></li>
<li class="chapter" data-level="" data-path="declaration.html"><a href="declaration.html"><i class="fa fa-check"></i>Declaration</a></li>
<li class="chapter" data-level="" data-path="acknowledgements.html"><a href="acknowledgements.html"><i class="fa fa-check"></i>Acknowledgements</a></li>
<li class="chapter" data-level="" data-path="abstract.html"><a href="abstract.html"><i class="fa fa-check"></i>Abstract</a></li>
<li class="chapter" data-level="" data-path="dedication.html"><a href="dedication.html"><i class="fa fa-check"></i>Dedication</a></li>
<li class="chapter" data-level="" data-path="quote.html"><a href="quote.html"><i class="fa fa-check"></i>Quote</a></li>
<li class="part"><span><b>I Introduction</b></span></li>
<li class="chapter" data-level="1" data-path="Chapter1.html"><a href="Chapter1.html"><i class="fa fa-check"></i><b>1</b> An Unorthodox Introduction</a>
<ul>
<li class="chapter" data-level="1.1" data-path="Chapter1.html"><a href="Chapter1.html#a-starting-point"><i class="fa fa-check"></i><b>1.1</b> A starting point</a>
<ul>
<li class="chapter" data-level="1.1.1" data-path="Chapter1.html"><a href="Chapter1.html#fish-out-of-water"><i class="fa fa-check"></i><b>1.1.1</b> Fish out of water</a></li>
<li class="chapter" data-level="1.1.2" data-path="Chapter1.html"><a href="Chapter1.html#surrounded-by-technology"><i class="fa fa-check"></i><b>1.1.2</b> Surrounded by technology</a></li>
</ul></li>
<li class="chapter" data-level="1.2" data-path="Chapter1.html"><a href="Chapter1.html#of-pasts-and-presents"><i class="fa fa-check"></i><b>1.2</b> Of Pasts and Presents</a>
<ul>
<li class="chapter" data-level="1.2.1" data-path="Chapter1.html"><a href="Chapter1.html#growing-up-around-play"><i class="fa fa-check"></i><b>1.2.1</b> Growing up around play</a></li>
<li class="chapter" data-level="1.2.2" data-path="Chapter1.html"><a href="Chapter1.html#art-design-and-philosophy"><i class="fa fa-check"></i><b>1.2.2</b> Art, Design, and Philosophy</a></li>
</ul></li>
<li class="chapter" data-level="1.3" data-path="Chapter1.html"><a href="Chapter1.html#in-closing"><i class="fa fa-check"></i><b>1.3</b> In closing</a></li>
</ul></li>
<li class="part"><span><b>II Foundations</b></span></li>
<li class="chapter" data-level="2" data-path="Chapter2.html"><a href="Chapter2.html"><i class="fa fa-check"></i><b>2</b> Scaffolding</a>
<ul>
<li class="chapter" data-level="2.1" data-path="Chapter2.html"><a href="Chapter2.html#introduction"><i class="fa fa-check"></i><b>2.1</b> Introduction</a></li>
<li class="chapter" data-level="2.2" data-path="Chapter2.html"><a href="Chapter2.html#steppingstones-into-post-modern-humanities"><i class="fa fa-check"></i><b>2.2</b> Steppingstones into post-modern humanities</a>
<ul>
<li class="chapter" data-level="2.2.1" data-path="Chapter2.html"><a href="Chapter2.html#transdisciplinary-design-research"><i class="fa fa-check"></i><b>2.2.1</b> Transdisciplinary Design Research</a></li>
<li class="chapter" data-level="2.2.2" data-path="Chapter2.html"><a href="Chapter2.html#crafting-trandisciplinary-assemblages"><i class="fa fa-check"></i><b>2.2.2</b> Crafting Trandisciplinary Assemblages</a></li>
<li class="chapter" data-level="2.2.3" data-path="Chapter2.html"><a href="Chapter2.html#transcending-method-through-design"><i class="fa fa-check"></i><b>2.2.3</b> Transcending method through Design</a></li>
</ul></li>
<li class="chapter" data-level="2.3" data-path="Chapter2.html"><a href="Chapter2.html#how-to-use-this-thesis"><i class="fa fa-check"></i><b>2.3</b> How to use this Thesis</a></li>
</ul></li>
<li class="chapter" data-level="3" data-path="Chapter3.html"><a href="Chapter3.html"><i class="fa fa-check"></i><b>3</b> Seeing Things of the Internet</a>
<ul>
<li class="chapter" data-level="3.1" data-path="Chapter3.html"><a href="Chapter3.html#a-case-for-and-against-an-internet-of-things"><i class="fa fa-check"></i><b>3.1</b> A case for (and against) an Internet of Things</a>
<ul>
<li class="chapter" data-level="3.1.1" data-path="Chapter3.html"><a href="Chapter3.html#defining-iot"><i class="fa fa-check"></i><b>3.1.1</b> Defining IoT</a></li>
<li class="chapter" data-level="3.1.2" data-path="Chapter3.html"><a href="Chapter3.html#interacting-with-iot"><i class="fa fa-check"></i><b>3.1.2</b> Interacting with IoT</a></li>
<li class="chapter" data-level="3.1.3" data-path="Chapter3.html"><a href="Chapter3.html#the-disillusionment-of-living-in-iot"><i class="fa fa-check"></i><b>3.1.3</b> The disillusionment of living in IoT</a></li>
</ul></li>
<li class="chapter" data-level="3.2" data-path="Chapter3.html"><a href="Chapter3.html#approaching-an-alternative-perspective-for-design-in-iot"><i class="fa fa-check"></i><b>3.2</b> Approaching an alternative perspective for Design in IoT</a>
<ul>
<li class="chapter" data-level="3.2.1" data-path="Chapter3.html"><a href="Chapter3.html#changing-perspectives"><i class="fa fa-check"></i><b>3.2.1</b> Changing perspectives</a></li>
<li class="chapter" data-level="3.2.2" data-path="Chapter3.html"><a href="Chapter3.html#metaphorically-speaking"><i class="fa fa-check"></i><b>3.2.2</b> Metaphorically speaking</a></li>
</ul></li>
<li class="chapter" data-level="3.3" data-path="Chapter3.html"><a href="Chapter3.html#conclusion"><i class="fa fa-check"></i><b>3.3</b> Conclusion</a></li>
</ul></li>
<li class="chapter" data-level="4" data-path="Chapter4.html"><a href="Chapter4.html"><i class="fa fa-check"></i><b>4</b> Being Things of the Internet</a>
<ul>
<li class="chapter" data-level="4.1" data-path="Chapter4.html"><a href="Chapter4.html#introduction-1"><i class="fa fa-check"></i><b>4.1</b> Introduction</a>
<ul>
<li class="chapter" data-level="4.1.1" data-path="Chapter4.html"><a href="Chapter4.html#a-philosophical-interlude"><i class="fa fa-check"></i><b>4.1.1</b> A Philosophical Interlude</a></li>
</ul></li>
<li class="chapter" data-level="4.2" data-path="Chapter4.html"><a href="Chapter4.html#understanding-things-on-and-not-on-the-internet"><i class="fa fa-check"></i><b>4.2</b> Understanding <em>Things</em> on (and not on) the Internet</a>
<ul>
<li class="chapter" data-level="4.2.1" data-path="Chapter4.html"><a href="Chapter4.html#phenomenologically-speaking"><i class="fa fa-check"></i><b>4.2.1</b> Phenomenologically speaking</a></li>
<li class="chapter" data-level="4.2.2" data-path="Chapter4.html"><a href="Chapter4.html#towards-an-object-oriented-ontology"><i class="fa fa-check"></i><b>4.2.2</b> Towards an Object-Oriented Ontology</a></li>
</ul></li>
<li class="chapter" data-level="4.3" data-path="Chapter4.html"><a href="Chapter4.html#object-oriented-ontology"><i class="fa fa-check"></i><b>4.3</b> Object-Oriented Ontology</a></li>
<li class="chapter" data-level="4.4" data-path="Chapter4.html"><a href="Chapter4.html#concluding-on-a-post-anthropocentric-perspective-for-design"><i class="fa fa-check"></i><b>4.4</b> Concluding on a post-anthropocentric perspective for Design</a></li>
</ul></li>
<li class="part"><span><b>Methodologies</b></span></li>
<li class="chapter" data-level="5" data-path="Chapter5.html"><a href="Chapter5.html"><i class="fa fa-check"></i><b>5</b> Design Research</a>
<ul>
<li class="chapter" data-level="5.1" data-path="Chapter5.html"><a href="Chapter5.html#introduction-2"><i class="fa fa-check"></i><b>5.1</b> Introduction</a></li>
<li class="chapter" data-level="5.2" data-path="Chapter5.html"><a href="Chapter5.html#doing-design-research"><i class="fa fa-check"></i><b>5.2</b> Doing Design Research</a>
<ul>
<li class="chapter" data-level="5.2.1" data-path="Chapter5.html"><a href="Chapter5.html#defining-design"><i class="fa fa-check"></i><b>5.2.1</b> Defining Design</a></li>
<li class="chapter" data-level="5.2.2" data-path="Chapter5.html"><a href="Chapter5.html#defining-research"><i class="fa fa-check"></i><b>5.2.2</b> Defining Research</a></li>
<li class="chapter" data-level="5.2.3" data-path="Chapter5.html"><a href="Chapter5.html#the-object-of-design"><i class="fa fa-check"></i><b>5.2.3</b> The Object of Design</a></li>
</ul></li>
<li class="chapter" data-level="5.3" data-path="Chapter5.html"><a href="Chapter5.html#research-through-design"><i class="fa fa-check"></i><b>5.3</b> Research through Design</a>
<ul>
<li class="chapter" data-level="5.3.1" data-path="Chapter5.html"><a href="Chapter5.html#approaching-research-through-design"><i class="fa fa-check"></i><b>5.3.1</b> Approaching Research through Design</a></li>
<li class="chapter" data-level="5.3.2" data-path="Chapter5.html"><a href="Chapter5.html#practice-based-research"><i class="fa fa-check"></i><b>5.3.2</b> Practice-based Research</a></li>
<li class="chapter" data-level="5.3.3" data-path="Chapter5.html"><a href="Chapter5.html#ideology-or-methodology"><i class="fa fa-check"></i><b>5.3.3</b> Ideology or Methodology?</a></li>
</ul></li>
<li class="chapter" data-level="5.4" data-path="Chapter5.html"><a href="Chapter5.html#conclusions"><i class="fa fa-check"></i><b>5.4</b> Conclusions</a></li>
</ul></li>
<li class="chapter" data-level="6" data-path="Chapter6.html"><a href="Chapter6.html"><i class="fa fa-check"></i><b>6</b> Playfully Designing for Things</a>
<ul>
<li class="chapter" data-level="6.1" data-path="Chapter6.html"><a href="Chapter6.html#introduction-3"><i class="fa fa-check"></i><b>6.1</b> Introduction</a></li>
<li class="chapter" data-level="6.2" data-path="Chapter6.html"><a href="Chapter6.html#defining-play"><i class="fa fa-check"></i><b>6.2</b> Defining Play</a>
<ul>
<li class="chapter" data-level="6.2.1" data-path="Chapter6.html"><a href="Chapter6.html#what-is-play"><i class="fa fa-check"></i><b>6.2.1</b> What is Play?</a></li>
<li class="chapter" data-level="6.2.2" data-path="Chapter6.html"><a href="Chapter6.html#playgrounds-for-play"><i class="fa fa-check"></i><b>6.2.2</b> Playgrounds for Play</a></li>
</ul></li>
<li class="chapter" data-level="6.3" data-path="Chapter6.html"><a href="Chapter6.html#design-and-playfulness"><i class="fa fa-check"></i><b>6.3</b> Design and Playfulness</a>
<ul>
<li class="chapter" data-level="6.3.1" data-path="Chapter6.html"><a href="Chapter6.html#returning-to-playfulness"><i class="fa fa-check"></i><b>6.3.1</b> Returning to Playfulness</a></li>
<li class="chapter" data-level="6.3.2" data-path="Chapter6.html"><a href="Chapter6.html#ludic-design"><i class="fa fa-check"></i><b>6.3.2</b> Ludic Design</a></li>
</ul></li>
<li class="chapter" data-level="6.4" data-path="Chapter6.html"><a href="Chapter6.html#designing-curious-philosophical-artefacts"><i class="fa fa-check"></i><b>6.4</b> Designing Curious Philosophical Artefacts</a>
<ul>
<li class="chapter" data-level="6.4.1" data-path="Chapter6.html"><a href="Chapter6.html#speculating-over-definitions"><i class="fa fa-check"></i><b>6.4.1</b> Speculating over definitions</a></li>
</ul></li>
<li class="chapter" data-level="6.5" data-path="Chapter6.html"><a href="Chapter6.html#carpentry"><i class="fa fa-check"></i><b>6.5</b> Carpentry</a>
<ul>
<li class="chapter" data-level="6.5.1" data-path="Chapter6.html"><a href="Chapter6.html#getting-your-hands-dirty-with-philosophy"><i class="fa fa-check"></i><b>6.5.1</b> Getting your hands dirty with philosophy</a></li>
</ul></li>
<li class="chapter" data-level="6.6" data-path="Chapter6.html"><a href="Chapter6.html#a-combined-methodological-framework"><i class="fa fa-check"></i><b>6.6</b> A combined methodological framework</a></li>
<li class="chapter" data-level="6.7" data-path="Chapter6.html"><a href="Chapter6.html#conclusions-1"><i class="fa fa-check"></i><b>6.7</b> Conclusions</a></li>
</ul></li>
<li class="part"><span><b>III Doing Carpentry</b></span></li>
<li class="chapter" data-level="7" data-path="Chapter7.html"><a href="Chapter7.html"><i class="fa fa-check"></i><b>7</b> A Model for a Philosophical View of IoT</a>
<ul>
<li class="chapter" data-level="7.1" data-path="Chapter7.html"><a href="Chapter7.html#introduction-4"><i class="fa fa-check"></i><b>7.1</b> Introduction</a></li>
<li class="chapter" data-level="7.2" data-path="Chapter7.html"><a href="Chapter7.html#iot-as-a-spatial-phenomenon"><i class="fa fa-check"></i><b>7.2</b> IoT as a spatial phenomenon</a>
<ul>
<li class="chapter" data-level="7.2.1" data-path="Chapter7.html"><a href="Chapter7.html#the-division-of-space"><i class="fa fa-check"></i><b>7.2.1</b> The division of space</a></li>
<li class="chapter" data-level="7.2.2" data-path="Chapter7.html"><a href="Chapter7.html#reconfiguring-insides-and-outsides-as-heterotopia"><i class="fa fa-check"></i><b>7.2.2</b> Reconfiguring Insides and Outsides as Heterotopia</a></li>
</ul></li>
<li class="chapter" data-level="7.3" data-path="Chapter7.html"><a href="Chapter7.html#crafting-a-model-for-a-philosophical-view-of-iot"><i class="fa fa-check"></i><b>7.3</b> Crafting a Model for a Philosophical View of IoT</a></li>
<li class="chapter" data-level="7.4" data-path="Chapter7.html"><a href="Chapter7.html#discussion-and-conclusion"><i class="fa fa-check"></i><b>7.4</b> Discussion and Conclusion</a></li>
</ul></li>
<li class="chapter" data-level="8" data-path="Chapter8.html"><a href="Chapter8.html"><i class="fa fa-check"></i><b>8</b> Playing with the IoT</a>
<ul>
<li class="chapter" data-level="8.1" data-path="Chapter8.html"><a href="Chapter8.html#introduction-5"><i class="fa fa-check"></i><b>8.1</b> Introduction</a></li>
<li class="chapter" data-level="8.2" data-path="Chapter8.html"><a href="Chapter8.html#creating-a-foundation-for-approaching-game-design"><i class="fa fa-check"></i><b>8.2</b> Creating a foundation for approaching Game Design</a>
<ul>
<li class="chapter" data-level="8.2.1" data-path="Chapter8.html"><a href="Chapter8.html#play-and-rhetoric"><i class="fa fa-check"></i><b>8.2.1</b> Play and Rhetoric</a></li>
</ul></li>
<li class="chapter" data-level="8.3" data-path="Chapter8.html"><a href="Chapter8.html#carpentering-the-internet-of-things-board-game"><i class="fa fa-check"></i><b>8.3</b> Carpentering the Internet of Things Board Game</a>
<ul>
<li class="chapter" data-level="8.3.1" data-path="Chapter8.html"><a href="Chapter8.html#exploration-phase"><i class="fa fa-check"></i><b>8.3.1</b> Exploration Phase</a></li>
<li class="chapter" data-level="8.3.2" data-path="Chapter8.html"><a href="Chapter8.html#reflection-phase"><i class="fa fa-check"></i><b>8.3.2</b> Reflection Phase</a></li>
<li class="chapter" data-level="8.3.3" data-path="Chapter8.html"><a href="Chapter8.html#redux"><i class="fa fa-check"></i><b>8.3.3</b> Redux</a></li>
</ul></li>
<li class="chapter" data-level="8.4" data-path="Chapter8.html"><a href="Chapter8.html#discussion-1"><i class="fa fa-check"></i><b>8.4</b> Discussion</a></li>
<li class="chapter" data-level="8.5" data-path="Chapter8.html"><a href="Chapter8.html#wrapping-up"><i class="fa fa-check"></i><b>8.5</b> Wrapping Up</a></li>
</ul></li>
<li class="chapter" data-level="9" data-path="Chapter9.html"><a href="Chapter9.html"><i class="fa fa-check"></i><b>9</b> Predicting futures in the IoT</a>
<ul>
<li class="chapter" data-level="9.1" data-path="Chapter9.html"><a href="Chapter9.html#introduction-6"><i class="fa fa-check"></i><b>9.1</b> Introduction</a></li>
<li class="chapter" data-level="9.2" data-path="Chapter9.html"><a href="Chapter9.html#philosophical-foundations"><i class="fa fa-check"></i><b>9.2</b> Philosophical Foundations</a>
<ul>
<li class="chapter" data-level="9.2.1" data-path="Chapter9.html"><a href="Chapter9.html#the-perception-of-technology-and-post-phenomenology"><i class="fa fa-check"></i><b>9.2.1</b> The Perception of Technology and Post-Phenomenology</a></li>
<li class="chapter" data-level="9.2.2" data-path="Chapter9.html"><a href="Chapter9.html#human-technology-relations-as-perceptual-illusions"><i class="fa fa-check"></i><b>9.2.2</b> Human-Technology Relations as Perceptual Illusions</a></li>
<li class="chapter" data-level="9.2.3" data-path="Chapter9.html"><a href="Chapter9.html#quantum-causation-for-iot"><i class="fa fa-check"></i><b>9.2.3</b> Quantum Causation for IoT</a></li>
</ul></li>
<li class="chapter" data-level="9.3" data-path="Chapter9.html"><a href="Chapter9.html#carpentering-the-supernatural-iot"><i class="fa fa-check"></i><b>9.3</b> Carpentering the Supernatural IoT</a>
<ul>
<li class="chapter" data-level="9.3.1" data-path="Chapter9.html"><a href="Chapter9.html#designing-the-deck"><i class="fa fa-check"></i><b>9.3.1</b> Designing the Deck</a></li>
<li class="chapter" data-level="9.3.2" data-path="Chapter9.html"><a href="Chapter9.html#scanning-the-stars-with-software"><i class="fa fa-check"></i><b>9.3.2</b> Scanning the Stars with Software</a></li>
<li class="chapter" data-level="9.3.3" data-path="Chapter9.html"><a href="Chapter9.html#a-tarot-of-things"><i class="fa fa-check"></i><b>9.3.3</b> A Tarot of Things</a></li>
<li class="chapter" data-level="9.3.4" data-path="Chapter9.html"><a href="Chapter9.html#madame-bitsys-emporium"><i class="fa fa-check"></i><b>9.3.4</b> Madame Bitsy’s Emporium</a></li>
</ul></li>
<li class="chapter" data-level="9.4" data-path="Chapter9.html"><a href="Chapter9.html#feedback"><i class="fa fa-check"></i><b>9.4</b> Feedback</a></li>
<li class="chapter" data-level="9.5" data-path="Chapter9.html"><a href="Chapter9.html#discussion-and-conclusion-1"><i class="fa fa-check"></i><b>9.5</b> Discussion and Conclusion</a></li>
</ul></li>
<li class="part"><span><b>IV Moving Forwards</b></span></li>
<li class="chapter" data-level="10" data-path="Chapter10.html"><a href="Chapter10.html"><i class="fa fa-check"></i><b>10</b> Discussions and Conclusions</a>
<ul>
<li class="chapter" data-level="10.1" data-path="Chapter10.html"><a href="Chapter10.html#the-living-internet-of-things"><i class="fa fa-check"></i><b>10.1</b> The Living Internet of Things</a>
<ul>
<li class="chapter" data-level="10.1.1" data-path="Chapter10.html"><a href="Chapter10.html#is-this-discussion-about-privacy-and-security-in-iot"><i class="fa fa-check"></i><b>10.1.1</b> Is this discussion about privacy and security in IoT?</a></li>
<li class="chapter" data-level="10.1.2" data-path="Chapter10.html"><a href="Chapter10.html#going-beyond-human-centred-design"><i class="fa fa-check"></i><b>10.1.2</b> Going beyond Human-Centred Design</a></li>
<li class="chapter" data-level="10.1.3" data-path="Chapter10.html"><a href="Chapter10.html#is-this-a-transhumanist-argument"><i class="fa fa-check"></i><b>10.1.3</b> Is this a transhumanist argument?</a></li>
</ul></li>
<li class="chapter" data-level="10.2" data-path="Chapter10.html"><a href="Chapter10.html#the-mantra-of-playfulness"><i class="fa fa-check"></i><b>10.2</b> The Mantra of Playfulness</a>
<ul>
<li class="chapter" data-level="10.2.1" data-path="Chapter10.html"><a href="Chapter10.html#being-a-playful-philosopher-designer"><i class="fa fa-check"></i><b>10.2.1</b> Being a playful philosopher-designer</a></li>
</ul></li>
<li class="chapter" data-level="10.3" data-path="Chapter10.html"><a href="Chapter10.html#in-closing-1"><i class="fa fa-check"></i><b>10.3</b> In closing</a></li>
</ul></li>
<li class="appendix"><span><b>Appendix</b></span></li>
<li class="chapter" data-level="A" data-path="AppendixA.html"><a href="AppendixA.html"><i class="fa fa-check"></i><b>A</b> Appendix</a>
<ul>
<li class="chapter" data-level="A.1" data-path="AppendixA.html"><a href="AppendixA.html#game-design-definitions-and-terminologies"><i class="fa fa-check"></i><b>A.1</b> Game Design Definitions and Terminologies</a></li>
</ul></li>
<li class="chapter" data-level="B" data-path="AppendixB.html"><a href="AppendixB.html"><i class="fa fa-check"></i><b>B</b> Appendix</a>
<ul>
<li class="chapter" data-level="B.1" data-path="AppendixB.html"><a href="AppendixB.html#the-internet-of-things-board-game-explored"><i class="fa fa-check"></i><b>B.1</b> The Internet of Things Board Game Explored</a></li>
<li class="chapter" data-level="B.2" data-path="AppendixB.html"><a href="AppendixB.html#backstory91"><i class="fa fa-check"></i><b>B.2</b> Backstory</a></li>
<li class="chapter" data-level="B.3" data-path="AppendixB.html"><a href="AppendixB.html#game-objective"><i class="fa fa-check"></i><b>B.3</b> Game Objective</a></li>
<li class="chapter" data-level="B.4" data-path="AppendixB.html"><a href="AppendixB.html#setup"><i class="fa fa-check"></i><b>B.4</b> Play Setup</a></li>
<li class="chapter" data-level="B.5" data-path="AppendixB.html"><a href="AppendixB.html#phases-of-play94"><i class="fa fa-check"></i><b>B.5</b> Phases of Play</a></li>
<li class="chapter" data-level="B.6" data-path="AppendixB.html"><a href="AppendixB.html#tiles"><i class="fa fa-check"></i><b>B.6</b> Understanding the Tiles</a></li>
<li class="chapter" data-level="B.7" data-path="AppendixB.html"><a href="AppendixB.html#avatars"><i class="fa fa-check"></i><b>B.7</b> Avatars</a></li>
<li class="chapter" data-level="B.8" data-path="AppendixB.html"><a href="AppendixB.html#rolls"><i class="fa fa-check"></i><b>B.8</b> Rolling Dice</a>
<ul>
<li class="chapter" data-level="B.8.1" data-path="AppendixB.html"><a href="AppendixB.html#attack"><i class="fa fa-check"></i><b>B.8.1</b> Doing an Attack Roll</a></li>
<li class="chapter" data-level="B.8.2" data-path="AppendixB.html"><a href="AppendixB.html#random"><i class="fa fa-check"></i><b>B.8.2</b> Randomisation</a></li>
</ul></li>
<li class="chapter" data-level="B.9" data-path="AppendixB.html"><a href="AppendixB.html#decks"><i class="fa fa-check"></i><b>B.9</b> Understanding and Reading Cards</a>
<ul>
<li class="chapter" data-level="B.9.1" data-path="AppendixB.html"><a href="AppendixB.html#items"><i class="fa fa-check"></i><b>B.9.1</b> Items Deck</a></li>
<li class="chapter" data-level="B.9.2" data-path="AppendixB.html"><a href="AppendixB.html#risks"><i class="fa fa-check"></i><b>B.9.2</b> Risks Deck</a></li>
<li class="chapter" data-level="B.9.3" data-path="AppendixB.html"><a href="AppendixB.html#privacy"><i class="fa fa-check"></i><b>B.9.3</b> Privacy Deck</a></li>
<li class="chapter" data-level="B.9.4" data-path="AppendixB.html"><a href="AppendixB.html#daemons"><i class="fa fa-check"></i><b>B.9.4</b> Daemons Deck</a></li>
</ul></li>
<li class="chapter" data-level="B.10" data-path="AppendixB.html"><a href="AppendixB.html#connections"><i class="fa fa-check"></i><b>B.10</b> Making Connections</a></li>
<li class="chapter" data-level="B.11" data-path="AppendixB.html"><a href="AppendixB.html#risk-check"><i class="fa fa-check"></i><b>B.11</b> Conducting Risk Checks</a></li>
<li class="chapter" data-level="B.12" data-path="AppendixB.html"><a href="AppendixB.html#tokens"><i class="fa fa-check"></i><b>B.12</b> Tokens</a></li>
<li class="chapter" data-level="B.13" data-path="AppendixB.html"><a href="AppendixB.html#resolve"><i class="fa fa-check"></i><b>B.13</b> Resolves and Other Actions</a></li>
<li class="chapter" data-level="B.14" data-path="AppendixB.html"><a href="AppendixB.html#delayed"><i class="fa fa-check"></i><b>B.14</b> Being Delayed</a></li>
<li class="chapter" data-level="B.15" data-path="AppendixB.html"><a href="AppendixB.html#rest"><i class="fa fa-check"></i><b>B.15</b> Resting</a></li>
<li class="chapter" data-level="B.16" data-path="AppendixB.html"><a href="AppendixB.html#databox"><i class="fa fa-check"></i><b>B.16</b> Databoxes</a></li>
<li class="chapter" data-level="B.17" data-path="AppendixB.html"><a href="AppendixB.html#threat-tracker"><i class="fa fa-check"></i><b>B.17</b> Threat Tracker</a></li>
<li class="chapter" data-level="B.18" data-path="AppendixB.html"><a href="AppendixB.html#end"><i class="fa fa-check"></i><b>B.18</b> End of the Game</a></li>
</ul></li>
<li class="chapter" data-level="C" data-path="AppendixC.html"><a href="AppendixC.html"><i class="fa fa-check"></i><b>C</b> Appendix C</a>
<ul>
<li class="chapter" data-level="C.1" data-path="AppendixC.html"><a href="AppendixC.html#the-tarot-of-things-deck"><i class="fa fa-check"></i><b>C.1</b> The Tarot of Things Deck</a></li>
</ul></li>
<li class="chapter" data-level="" data-path="bibliography.html"><a href="bibliography.html"><i class="fa fa-check"></i>Bibliography</a></li>
<li class="divider"></li>
<li><a href="https://github.com/rstudio/bookdown" target="blank">Published with bookdown</a></li>
</ul>
</nav>
</div>
<div class="book-body">
<div class="body-inner">
<div class="book-header" role="navigation">
<h1>
<i class="fa fa-circle-o-notch fa-spin"></i><a href="./">Design by Play</a>
</h1>
</div>
<div class="page-wrapper" tabindex="-1" role="main">
<div class="page-inner">
<section class="normal" id="section-">
<div id="bibliography" class="section level1 unnumbered hasAnchor">
<h1>Bibliography<a href="bibliography.html#bibliography" class="anchor-section" aria-label="Anchor link to header"></a></h1>
<!--
This manually sets the header for this unnumbered chapter.
-->
<!--
To remove the indentation of the first entry.
-->
<p></p>
<!--
To create a hanging indent and spacing between entries. This line may need
to be removed for styles that don't require the hanging indent.
-->
<!--
This is just for testing with more citations for the bibliography at the end. Add other entries into the list here if you'd like them to appear in the bibliography even if they weren't explicitly cited in the document.
-->
<div id="refs" class="references csl-bib-body hanging-indent">
<div class="csl-entry">
Abbate, Janet. 2017. <span>“What and Where Is the <span>Internet</span>? (<span>Re</span>)defining <span>Internet</span> Histories.”</span> <em>Internet Histories</em> 1 (1-2): 8–14. <a href="https://doi.org/10.1080/24701475.2017.1305836">https://doi.org/10.1080/24701475.2017.1305836</a>.
</div>
<div class="csl-entry">
Abt, Clark C. 1970. <span>“Serious Games: <span>The</span> Art and Science of Games That Simulate Life.”</span> <em>New Yorks Viking</em> 6.
</div>
<div class="csl-entry">
Acquisti, Alessandro, and Ralph Gross. 2006. <span>“Imagined <span>Communities</span>: <span>Awareness</span>, <span>Information</span> <span>Sharing</span>, and <span>Privacy</span> on the <span>Facebook</span>.”</span> In <em>Privacy <span>Enhancing</span> <span>Technologies</span></em>, 36–58. Berlin, Heidelberg: Springer, Berlin, Heidelberg. <a href="https://link.springer.com/chapter/10.1007/11957454_3">https://link.springer.com/chapter/10.1007/11957454_3</a>.
</div>
<div class="csl-entry">
Adam, Barbara, and Chris Groves. 2007. <em>Future Matters: <span>Action</span>, Knowledge, Ethics</em>. Brill.
</div>
<div class="csl-entry">
Adams, Douglas. 2014. <em>The Long Dark Tea-Time of the Soul</em>. First Gallery Books trade paperback edition. New York: Gallery Books.
</div>
<div class="csl-entry">
Akmal, Haider Ali. 2015. <span>“Empathy <span>Engine</span>: <span>Researching</span> <span>Through</span> <span>Design</span> <span>Fiction</span>.”</span> Masters dissertation, Lancaster, UK: Lancaster University.
</div>
<div class="csl-entry">
Anderson, Ben. 2010. <span>“Preemption, Precaution, Preparedness: <span>Anticipatory</span> Action and Future Geographies.”</span> <em>Progress in Human Geography</em> 34 (6): 777–98.
</div>
<div class="csl-entry">
Arnada, Julieta, Brian Kuan Wood, and Anton Vidokle, eds. 2015. <em>The <span>Internet</span> Does Not Exist</em>. E-Flux Journal 9. Berlin: Sternberg Press.
</div>
<div class="csl-entry">
Ashton, Kevin. 2009. <span>“That <span>‘<span>Internet</span> of Things’</span> Thing.”</span> <em>RFID Journal</em> 22 (7): 97–114.
</div>
<div class="csl-entry">
Auger, James. 2013. <span>“Speculative Design: <span>Crafting</span> the Speculation.”</span> <em>Digital Creativity</em> 24 (1): 11–35. <a href="https://doi.org/10.1080/14626268.2013.767276">https://doi.org/10.1080/14626268.2013.767276</a>.
</div>
<div class="csl-entry">
Austin, L. 2003. <span>“Privacy and the <span>Question</span> of <span>Technology</span>.”</span> <em>Law and Philosophy</em>. <a href="http://link.springer.com/content/pdf/10.1023/A:1023906406866.pdf">http://link.springer.com/content/pdf/10.1023/A:1023906406866.pdf</a>.
</div>
<div class="csl-entry">
Back, Jon, Elena Márquez Segura, and Annika Waern. 2017. <span>“Designing for Transformative Play.”</span> <em>ACM Transactions on Computer-Human Interaction (TOCHI)</em> 24 (3): 1–28.
</div>
<div class="csl-entry">
B̆adulescu, Dana. 2012. <span>“Heterotopia, <span>Liminality</span>, <span>Cyberspace</span> as <span>Marks</span> of <span>Contemporary</span> <span>Spatiality</span>.”</span> <a href="http://theroundtable.ro/Current/Cultural/Dana.Badulescu_Heterotopia,Liminality,Cyberspaceas_Marks_of_Contemporary_Spatiality.pdf">http://theroundtable.ro/Current/Cultural/Dana.Badulescu_Heterotopia,Liminality,Cyberspaceas_Marks_of_Contemporary_Spatiality.pdf</a>.
</div>
<div class="csl-entry">
Bardzell, Jeffrey, Shaowen Bardzell, and Lone Koefoed Hansen. 2015. <span>“Immodest Proposals: <span>Research</span> Through Design and Knowledge.”</span> In <em>Proceedings of the 33rd <span>Annual</span> <span>ACM</span> <span>Conference</span> on <span>Human</span> <span>Factors</span> in <span>Computing</span> <span>Systems</span></em>, 2093–2102.
</div>
<div class="csl-entry">
Bardzell, Shaowen, Jeffrey Bardzell, Jodi Forlizzi, John Zimmerman, and John Antanitis. 2012. <span>“Critical Design and Critical Theory: <span>The</span> Challenge of Designing for Provocation.”</span> In <em>Proceedings of the <span>Designing</span> <span>Interactive</span> <span>Systems</span> <span>Conference</span></em>, 288–97.
</div>
<div class="csl-entry">
Basballe, Ditte Amund, and Kim Halskov. 2012. <span>“Dynamics of Research Through Design.”</span> In <em>Proceedings of the <span>Designing</span> <span>Interactive</span> <span>Systems</span> <span>Conference</span></em>, 58–67.
</div>
<div class="csl-entry">
Bateson, P. P. G, and Paul Martin. 2013. <em>Play, Playfulness, Creativity and Innovation</em>. Cambridge: Cambridge University Press. <a href="https://doi.org/10.1017/CBO9781139057691">https://doi.org/10.1017/CBO9781139057691</a>.
</div>
<div class="csl-entry">
Baym, Nancy K., and Danah Boyd. 2012. <span>“Socially Mediated Publicness: <span>An</span> Introduction.”</span> <em>Journal of Broadcasting & Electronic Media</em> 56 (3): 320–29.
</div>
<div class="csl-entry">
Berman, J, and P Bruening. 2001. <span>“Is <span>Privacy</span> <span>Still</span> <span>Possible</span> in the <span>Twenty</span>-<span>First</span> <span>Century</span>?”</span> <em>Social Research</em>. <a href="https://doi.org/10.2307/40971454">https://doi.org/10.2307/40971454</a>.
</div>
<div class="csl-entry">
Biggs, Michael. 2002. <span>“The Role of the Artefact in Art and Design Research.”</span> <em>International Journal of Design Sciences and Technology</em>.
</div>
<div class="csl-entry">
Binder, Thomas, Giorgio De Michelis, Pelle Ehn, Giulio Jacucci, Per Linde, and Ina Wagner. 2012. <span>“What Is the Object of Design?”</span> In <em><span>CHI</span>’12 <span>Extended</span> <span>Abstracts</span> on <span>Human</span> <span>Factors</span> in <span>Computing</span> <span>Systems</span></em>, 21–30. ACM.
</div>
<div class="csl-entry">
Binder, Thomas, Ilpo Koskinen, and Johan Redström. 2009. <span>“Lab, <span>Field</span>, <span>Gallery</span> and <span>Beyond</span>.”</span> <em>Artifact</em> 2 (1).
</div>
<div class="csl-entry">
Binder, Thomas, and Johan Redström. 2006. <span>“Exemplary Design Research.”</span> In <em>Proceedings of <span>DRS2006</span> <span>Wonderground</span></em>. Lisbon.
</div>
<div class="csl-entry">
Bishop, Michael A. 1999. <span>“Why Thought Experiments Are Not Arguments.”</span> <em>Philosophy of Science</em> 66 (4): 534–41.
</div>
<div class="csl-entry">
Bissell, Tom. 2011. <em>Extra Lives Why Video Games Matter</em>. New York: Vintage.
</div>
<div class="csl-entry">
Blanchard, Kendall. 1995. <em>The Anthropology of Sport: <span>An</span> Introduction</em>. ABC-CLIO.
</div>
<div class="csl-entry">
Bleecker, Julian. 2009. <span>“Design <span>Fiction</span>: <span>A</span> <span>Short</span> <span>Essay</span> on <span>Design</span>, <span>Science</span>, <span>Fact</span> and <span>Fiction</span>,”</span> March, 1–49.
</div>
<div class="csl-entry">
———. 2010. <span>“Design Fiction: <span>From</span> Props to Prototypes.”</span> <em>Negotiating Futures–Design Fiction</em>, 58–67.
</div>
<div class="csl-entry">
Blythe, M., and E. Encinas. 2018. <em>Research <span>Fiction</span> and <span>Thought</span> <span>Experiments</span> in <span>Design</span></em>. now. <a href="http://ieeexplore.ieee.org/document/8384202">http://ieeexplore.ieee.org/document/8384202</a>.
</div>
<div class="csl-entry">
Bogost, Ian. 2007. <em>Persuasive Games: <span>The</span> Expressive Power of Videogames</em>. MIT Press.
</div>
<div class="csl-entry">
———. 2011. <em>How to Do Things with Videogames</em>. Electronic Mediations 38. Minneapolis: University of Minnesota Press.
</div>
<div class="csl-entry">
———. 2012. <em>Alien Phenomenology, or, <span>What</span> It’s Like to Be a Thing</em>. Posthumanities 20. Minneapolis: University of Minnesota Press.
</div>
<div class="csl-entry">
———. 2016a. <em>Play Anything: <span>The</span> Pleasure of Limits, the Uses of Boredom, and the Secret of Games</em>. New York: Basic Books.
</div>
<div class="csl-entry">
———. 2016b. <span>“Put <span>Words</span> <span>Between</span> <span>Buns</span>.”</span> <a href="http://bogost.com/projects/buns-life/">http://bogost.com/projects/buns-life/</a>.
</div>
<div class="csl-entry">
Booch, Grady. 2015. <span>“Of <span>Boilers</span>, <span>Bit</span>, and <span>Bots</span>.”</span> <em>IEEE Software</em>, January, 11–13.
</div>
<div class="csl-entry">
Boos, Daniel, and Gudela Grote. 2012. <span>“Designing Controllable Accountability of Future Internet of Things Applications.”</span> <em>Scandinavian Journal of Information …</em>. <a href="https://pdfs.semanticscholar.org/dfbb/57c9b6f8cc563e243b621b951e9c87c3ca16.pdf">https://pdfs.semanticscholar.org/dfbb/57c9b6f8cc563e243b621b951e9c87c3ca16.pdf</a>.
</div>
<div class="csl-entry">
Boradkar, Prasad. 2010. <span>“Design as Problem Solving.”</span> In <em>The <span>Oxford</span> <span>Handbook</span> of <span>Interdisciplinarity</span></em>, edited by Jose Antonio Lopez Cerezo, Wolfgang Krohn, William Newell, Nancy Tuana, and Peter Weingart, 1st ed., 273–87. Oxford: Oxford University Press.
</div>
<div class="csl-entry">
———. 2017. <span>“Agency and Counteragency of Materials: <span>A</span> Story of Copper.”</span> In <em>Encountering <span>Things</span>: <span>Design</span> and <span>Theories</span> of <span>Things</span></em>, edited by Leslie Atzmon and Prasad Boradkar, 193–201. London Oxford New York: Bloomsbury Academic, an Imprint of Bloomsbury Publishing Plc.
</div>
<div class="csl-entry">
Borgmann, Albert. 1999. <em>Holding on to <span>Reality</span>: <span>The</span> <span>Nature</span> of <span>Information</span> at the <span>Turn</span> of the <span>Millennium</span></em>. University of Chicago Press.
</div>
<div class="csl-entry">
Boyd, Danah. 2008. <span>“Taken Out of Context: <span>American</span> Teen Sociality in Networked Publics.”</span> Dissertation, Berkeley: University of California,.
</div>
<div class="csl-entry">
Brandt, Eva. 2007. <span>“How <span>Tangible</span> <span>Mock</span>-<span>Ups</span> <span>Support</span> <span>Design</span> <span>Collaboration</span>.”</span> <em>Knowledge, Technology & Policy</em> 20 (3): 179–92. <a href="https://doi.org/10.1007/s12130-007-9021-9">https://doi.org/10.1007/s12130-007-9021-9</a>.
</div>
<div class="csl-entry">
Breuer, Johannes, and Gary Bente. 2010. <span>“Why so Serious? <span>On</span> the Relation of Serious Games and Learning.”</span> <em>Journal for Computer Game Culture</em> 4: 7–24.
</div>
<div class="csl-entry">
Bryant, Levi R. 2010. <span>“You <span>Know</span> <span>You</span>’re a <span>Correlationist</span> <span>If</span>….”</span> <a href="https://larvalsubjects.wordpress.com/2010/07/30/you-know-youre-a-correlationist-if/">https://larvalsubjects.wordpress.com/2010/07/30/you-know-youre-a-correlationist-if/</a>.
</div>
<div class="csl-entry">
———. 2011. <span>“The <span>Democracy</span> of <span>Objects</span>.”</span> <em>New Metaphysics</em>. <a href="https://doi.org/10.3998/ohp.9750134.0001.001">https://doi.org/10.3998/ohp.9750134.0001.001</a>.
</div>
<div class="csl-entry">
Buchanan, Richard. 1985. <span>“Declaration by Design: <span>Rhetoric</span>, Argument, and Demonstration in Design Practice.”</span> <em>Design Issues</em>, 4–22.
</div>
<div class="csl-entry">
———. 1992. <span>“Wicked Problems in Design Thinking.”</span> <em>Design Issues</em> 8 (2): 5–21.
</div>
<div class="csl-entry">
———. 2001. <span>“Design Research and the New Learning.”</span> <em>Design Issues</em> 17 (4): 3–23.
</div>
<div class="csl-entry">
Busch, Akiko. 2005. <em>The Uncommon Life of Common Objects: <span>Essays</span> on Design and the Everyday</em>. 1. ed. New York: Metropolis Books.
</div>
<div class="csl-entry">
Caillois, Roger. 2001. <em>Man, Play, and Games</em>. University of Illinois Press.
</div>
<div class="csl-entry">
Calleja, Gordon. 2008. <span>“The <span>Binary</span> <span>Myth</span>.”</span> Lecture.
</div>
<div class="csl-entry">
Carroll, John M. 2014. <span>“Games as <span>Design</span> <span>Archetypes</span>.”</span> In <em>The Gameful World: <span>Approaches</span>, Issues, Applications</em>, edited by Steffen P. Walz and Sebastian Deterding, 199–200. Cambridge, Mass. London, England: MIT Press.
</div>
<div class="csl-entry">
Casey, Edward S. 2001. <span>“Between Geography and Philosophy: <span>What</span> Does It Mean to Be in the Place-World?”</span>
</div>
<div class="csl-entry">
Cauberghe, Verolien, and Patrick De Pelsmacker. 2010. <span>“Advergames.”</span> <em>Journal of Advertising</em> 39 (1): 5–18.
</div>
<div class="csl-entry">
Chang, Angela, Ben Resner, Brad Koerner, XingChen Wang, and Hiroshi Ishii. 2001. <span>“<span>LumiTouch</span>: <span>An</span> Emotional Communication Device.”</span> In <em><span>CHI</span>’01 Extended Abstracts on <span>Human</span> Factors in Computing Systems</em>, 313–14.
</div>
<div class="csl-entry">
Chui, Michael, Markus Löffler, and Roger Roberts. 2010. <span>“The Internet of Things.”</span> <em>McKinsey Quarterly</em> 2: 581–85. <a href="https://doi.org/10.1109/INCoS.2014.113">https://doi.org/10.1109/INCoS.2014.113</a>.
</div>
<div class="csl-entry">
Cila, Nazli, Iskander Smit, Elisa Giaccardi, and Ben Kröse. 2017. <span>“Products as Agents: <span>Metaphors</span> for Designing the Products of the <span>IoT</span> Age.”</span> In <em>Proceedings of the 2017 <span>CHI</span> <span>Conference</span> on <span>Human</span> <span>Factors</span> in <span>Computing</span> <span>Systems</span></em>, 448–59.
</div>
<div class="csl-entry">
Clarke, Arthur C. 1962. <span>“Hazards of <span>Prophecy</span>: <span>The</span> <span>Failure</span> of <span>Imagination</span>.”</span> In <em>Profiles of the <span>Future</span>: <span>An</span> <span>Enquiry</span> into the <span>Limits</span> of the <span>Possible</span></em>. Harper & Row.
</div>
<div class="csl-entry">
Cole, Andrew. 2013. <span>“The <span>Call</span> of <span>Things</span> <span>A</span> <span>Critique</span> of <span>Object</span>-<span>Oriented</span> <span>Ontologies</span>.”</span> <em>The Minnesota Review</em> 2013 (80): 106–18.
</div>
<div class="csl-entry">
Consalvo, Mia. 2009. <span>“There Is No Magic Circle.”</span> <em>Games and Culture</em> 4 (4): 408–17.
</div>
<div class="csl-entry">
Cooper, Rachel. 2005. <span>“Thought Experiments.”</span> <em>Metaphilosophy</em> 36 (3): 328–47.
</div>
<div class="csl-entry">
Cooper, Rachel, and Mike Press. 1995. <em>The Design Agenda: <span>A</span> Guide to Successful Design Management</em>. Chichester ; New York: Wiley.
</div>
<div class="csl-entry">
Copier, Marinka. 2005. <span>“Connecting Worlds. <span>Fantasy</span> Role-Playing Games, Ritual Acts and the Magic Circle.”</span>
</div>
<div class="csl-entry">
Costikyan, Greg. 2018. <span>“Boardgame <span>Aesthetics</span>.”</span> In <em>Tabletop: <span>Analog</span> <span>Game</span> <span>Design</span></em>, edited by Greg Costikyan and Drew Davidson, 179–84. Pittsburgh: ETC Press.
</div>
<div class="csl-entry">
Costikyan, Greg, and Drew Davidson, eds. 2018. <em>Tabletop: <span>Analog</span> <span>Game</span> <span>Design</span></em>. Pittsburgh: ETC Press. <a href="https://figshare.com/articles/Tabletop_Analog_Game_Design/6686933">https://figshare.com/articles/Tabletop_Analog_Game_Design/6686933</a>.
</div>
<div class="csl-entry">
Coughlan, Tim, Michael Brown, Richard Mortier, Robert J. Houghton, Murray Goulden, and Glyn Lawson. 2012. <span>“Exploring <span>Acceptance</span> and <span>Consequences</span> of the <span>Internet</span> of <span>Things</span> in the <span>Home</span>.”</span> In <em>Green <span>Computing</span> and <span>Communications</span> (<span>GreenCom</span>), 2012 <span>IEEE</span> <span>International</span> <span>Conference</span> on</em>, 148–55. IEEE.
</div>
<div class="csl-entry">
Coulton, Paul. 2015a. <span>“Playful and Gameful Design for the <span>Internet</span> of <span>Things</span>.”</span> In <em>More <span>Playful</span> <span>User</span> <span>Interfaces</span></em>, 151–73. Springer.
</div>
<div class="csl-entry">
———. 2015b. <span>“The Role of Game Design in Addressing Behavioural Change.”</span> In <em>Proceedings of <span>EAD</span> 2015 <span>The</span> <span>Value</span> of <span>Design</span> <span>Research</span></em>. Boulogne, France.
</div>
<div class="csl-entry">
———. 2017. <span>“Sensing <span>Atoms</span> and Bits.”</span> In <em>Sensory <span>Arts</span> and <span>Design</span></em>, edited by I Heywood. Bloomsbury.
</div>
<div class="csl-entry">
Coulton, Paul, Dan Burnett, and Adrian Ioan Gradinar. 2016. <span>“Games as Speculative Design: <span>Allowing</span> Players to Consider Alternate Presents and Plausible Futures.”</span>
</div>
<div class="csl-entry">
Coulton, Paul, and Alan Hook. 2017. <span>“Games Design Research Through Game Design Practice.”</span> In <em>Game <span>Design</span> <span>Research</span></em>, edited by Petri Lankoski and Jussi Holopainen, 97–116. Pittsburgh: Carnegie Mellon University: ETC Press.
</div>
<div class="csl-entry">
Coulton, Paul, and Joseph Lindley. 2017. <span>“Vapourworlds and Design Fiction: <span>The</span> Role of Intentionality.”</span> In <em>Proceedings of the 12th <span>European</span> <span>Academy</span> of <span>Design</span> <span>Conference</span></em>, 1–11. Rome: EAD. <a href="http://www.research.lancs.ac.uk/portal/services/downloadRegister/158028939/Vapourwolds_and_Design_Fiction_final.pdf">http://www.research.lancs.ac.uk/portal/services/downloadRegister/158028939/Vapourwolds_and_Design_Fiction_final.pdf</a>.
</div>
<div class="csl-entry">
Coulton, Paul, and Joseph Galen Lindley. 2019. <span>“More-<span>Than</span> <span>Human</span> <span>Centred</span> <span>Design</span>: <span>Considering</span> <span>Other</span> <span>Things</span>.”</span> <em>The Design Journal</em> 22 (4): 463–81. <a href="https://doi.org/10.1080/14606925.2019.1614320">https://doi.org/10.1080/14606925.2019.1614320</a>.
</div>
<div class="csl-entry">
Coulton, Paul, Joseph Lindley, Miriam Sturdee, and Mike Stead. 2017. <span>“Design Fiction as World Building.”</span> In <em>Proceedings of the 3rd <span>Biennial</span> <span>Research</span> <span>Through</span> <span>Design</span> <span>Conference</span></em>, 163–79. Edinburgh, UK. <a href="https://doi.org/10.6084/m9.figshare.4746964">https://doi.org/10.6084/m9.figshare.4746964</a>.
</div>
<div class="csl-entry">
Coulton, Paul, Josepth Lindley, Adrian Gradinar, James Colley, Neelima Sailaja, Andy Crabtree, Ian Forrester, and Lianne Kerlin. 2019. <span>“Experiencing the Future Mundane.”</span> <a href="https://doi.org/10.6084/m9.figshare.7855790.v1">https://doi.org/10.6084/m9.figshare.7855790.v1</a>.
</div>
<div class="csl-entry">
Crawford, Chris. 2003. <em>Chris <span>Crawford</span> on <span>Game</span> <span>Design</span></em>. New Riders.
</div>
<div class="csl-entry">
Crawford, Matthew B. 2009. <em>Shop Class as Soulcraft: <span>An</span> Inquiry into the Value of Work</em>. Penguin.
</div>
<div class="csl-entry">
Cresswell, Tim. 2008. <span>“Place: <span>Encountering</span> Geography as Philosophy.”</span> <em>Geography (Sheffield, England)</em> 93 (September): 132–39. <a href="https://doi.org/10.1080/00167487.2008.12094234">https://doi.org/10.1080/00167487.2008.12094234</a>.
</div>
<div class="csl-entry">
Cross, Nigel. 2007. <span>“Designerly Ways of Knowing. <span>Board</span> of International Research in Design.”</span> <em>Basel: Birkhiuser</em> 41.
</div>
<div class="csl-entry">
Cruickshank, Leon, and Nina Trivedi. 2017. <span>“When <span>Your</span> <span>Toaster</span> Is a <span>Client</span>, How Do You Design? <span>Going</span> <span>Beyond</span> <span>Human</span> <span>Centred</span> <span>Design</span>.”</span> <em>The Design Journal</em> 20 (sup1): S4158–70.
</div>
<div class="csl-entry">
Day, Jane M. 2008. <span>“Rhetoric and <span>Ethics</span> from the <span>Sophists</span> to <span>Aristotle</span>.”</span> In <em>A Companion to <span>Greek</span> Rhetoric</em>, edited by Ian Worthington, Nachdr., 107–23. Blackwell Companions to the Ancient World <span>Literature</span> and Culture. Malden, MA: Blackwell.
</div>
<div class="csl-entry">
DeKoven, Bernie. 2013. <em>The Well-Played Game: <span>A</span> Player’s Philosophy</em>. Cambridge, Massachusetts: The MIT Press.
</div>
<div class="csl-entry">
———. 2014. <em>A Playful Path</em>. <a href="http://press.etc.cmu.edu/content/playful-path">http://press.etc.cmu.edu/content/playful-path</a>.
</div>
<div class="csl-entry">
DeLaFuente, Crystal Zeba. 2013. <span>“Our <span>Place</span> in <span>Nature</span>: <span>Toward</span> a <span>Heideggerian</span> <span>Ethos</span> of the <span>Environment</span>.”</span> {PhD} thesis.
</div>
<div class="csl-entry">
Deterding, Sebastian, Miguel Sicart, Lennart Nacke, Kenton O’Hara, and Dan Dixon. 2011. <span>“Gamification. <span>Using</span> <span>Game</span>-<span>Design</span> <span>Elements</span> in <span>Non</span>-<span>Gaming</span> <span>Contexts</span>.”</span> In <em><span>CHI</span> ’11 <span>Extended</span> <span>Abstracts</span> on <span>Human</span> <span>Factors</span> in <span>Computing</span> <span>Systems</span></em>, 2425–28. <span>CHI</span> <span>EA</span> ’11. New York, NY, USA: ACM. <a href="https://doi.org/10.1145/1979742.1979575">https://doi.org/10.1145/1979742.1979575</a>.
</div>
<div class="csl-entry">
Dewey, John. 1938. <em>Logic: <span>The</span> Theory of Inquiry</em>. Henry Holt.
</div>
<div class="csl-entry">
Donchin, Emanuel. 1995. <span>“Video Games as Research Tools: <span>The</span> <span>Space</span> <span>Fortress</span> Game.”</span> <em>Behavior Research Methods, Instruments, & Computers</em> 27 (2): 217–23.
</div>
<div class="csl-entry">
Dong, Yu Ren. 1998. <span>“Non-Native Graduate Students’ <span>Thesis</span>/<span>Dissertation</span> Writing in Science: <span>Self</span>-<span>Reports</span> by Students and Their Advisors from Two <span>US</span> Institutions.”</span> <em>English for Specific Purposes</em> 17 (4): 369–90.
</div>
<div class="csl-entry">
Dorst, Kees. 2011. <span>“The Core of ‘<span>Design</span> Thinking’and Its Application.”</span> <em>Design Studies</em> 32 (6): 521–32.
</div>
<div class="csl-entry">
Douglas, Mary, and Michalis Lianos. 2000. <span>“Dangerization and the End of <span>Deviance</span>.”</span> <em>Criminology and Social Theory</em>, 110.
</div>
<div class="csl-entry">
Downton, Peter. 2003. <em>Design Research</em>. Melbourne: RMIT Publishing.
</div>
<div class="csl-entry">
Druckman, Daniel, and Noam Ebner. 2008. <span>“Onstage or Behind the Scenes? <span>Relative</span> Learning Benefits of Simulation Role-Play and Design.”</span> <em>Simulation & Gaming</em> 39 (4): 465–97.
</div>
<div class="csl-entry">
Dubberly, Hugh. 2017. <span>“Connecting Things: <span>Broadening</span> Design to Include Systems, Platforms, and Product-Service Ecologies.”</span> In <em>Encountering <span>Things</span>: <span>Design</span> and <span>Theories</span> of <span>Things</span></em>, edited by Leslie Atzmon and Prasad Boradkar, 153–65. London Oxford New York: Bloomsbury Academic, an Imprint of Bloomsbury Publishing Plc.
</div>
<div class="csl-entry">
Dudley-Evans, Tony. 1999. <span>“The Dissertation: <span>A</span> Case of Neglect.”</span> <em>Issues in EAP Writing Research and Instruction</em>, 28–36.
</div>
<div class="csl-entry">
Dunne, Anthony, and Fiona Raby. 2013. <em>Speculative Everything: <span>Design</span>, Fiction, and Social Dreaming</em>. Cambridge, Massachusetts: MIT Press.
</div>
<div class="csl-entry">
Edelson, Daniel C. 2002. <span>“Design <span>Research</span>: <span>What</span> <span>We</span> <span>Learn</span> <span>When</span> <span>We</span> <span>Engage</span> in <span>Design</span>.”</span> <em>Journal of the Learning Sciences</em> 11 (1): 105–21. <a href="https://doi.org/10.1207/S15327809JLS1101_4">https://doi.org/10.1207/S15327809JLS1101_4</a>.
</div>
<div class="csl-entry">
Encinas, Enrique, and Mark Blythe. 2016. <span>“The Solution Printer: <span>Magic</span> Realist Design Fiction.”</span> In <em>Proceedings of the 2016 <span>CHI</span> <span>Conference</span> <span>Extended</span> <span>Abstracts</span> on <span>Human</span> <span>Factors</span> in <span>Computing</span> <span>Systems</span></em>, 387–96. ACM.
</div>
<div class="csl-entry">
Evans, Dave. 2011. <span>“The Internet of Things: <span>How</span> the Next Evolution of the Internet Is Changing Everything.”</span> <em>CISCO White Paper</em> 1 (2011): 1–11.
</div>
<div class="csl-entry">
Fairhead, James. 1988. <em>Design for <span>Corporate</span> <span>Culture</span>: <span>How</span> to <span>Build</span> a <span>Design</span> and <span>Innovation</span> <span>Culture</span> <span>Using</span> the <span>Practice</span> of <span>Leading</span> <span>International</span> <span>Companies</span> as <span>Examples</span>: <span>A</span> <span>Report</span></em>. National Economic Development Office.
</div>
<div class="csl-entry">
Farooq, M. U., Muhammad Waseem, Anjum Khairi, and Sadia Mazhar. 2015. <span>“A <span>Critical</span> <span>Analysis</span> on the <span>Security</span> <span>Concerns</span> of <span>Internet</span> of <span>Things</span> (<span>IoT</span>).”</span> <em>International Journal of Computer Applications</em> 111 (7): 1–6. <a href="https://doi.org/10.5120/19547-1280">https://doi.org/10.5120/19547-1280</a>.
</div>
<div class="csl-entry">
Faste, Trygve, and Haakon Faste. 2012. <span>“Demystifying <span>‘<span>Design</span> Research’</span>: <span>Design</span> Is Not Research, Research Is Design.”</span> In <em><span>IDSA</span> <span>Education</span> <span>Symposium</span></em>, 2012:15.
</div>
<div class="csl-entry">
Ferguson, Glover T. 2002. <span>“Have <span>Your</span> <span>Objects</span> <span>Call</span> <span>My</span> <span>Objects</span>.”</span> <em>Harvard Business Review</em>, June. <a href="https://hbr.org/2002/06/have-your-objects-call-my-objects">https://hbr.org/2002/06/have-your-objects-call-my-objects</a>.
</div>
<div class="csl-entry">
Fest, Bradley J. 2016. <span>“Metaproceduralism: <span>The</span> <span>Stanley</span> <span>Parable</span> and the Legacies of Postmodern Metafiction.”</span> <em>Wide Screen</em> 6 (1): 1–23.
</div>
<div class="csl-entry">
Findeli, A. 1999. <span>“Introduction: <span>Design</span> <span>Research</span> <span>Special</span> <span>Edition</span>.”</span> <em>Design Issues</em> 15 (2): 1–4.
</div>
<div class="csl-entry">
Findeli, Alain, Denis Brouillet, Sophie Martin, Christophe Moineau, and Richard Tarrago. 2008. <span>“Research Through Design and Transdisciplinarity: <span>A</span> Tentative Contribution to the Methodology of Design Research.”</span> In <em>Swiss <span>Design</span> <span>Network</span> <span>Symposium</span></em>, 67.
</div>
<div class="csl-entry">
Finlay, Linda. 2012. <span>“<span>‘<span>Writing</span> the <span>Pain</span>’</span>: <span>Engaging</span> <span>First</span>-<span>Person</span> <span>Phenomenological</span> <span>Accounts</span>.”</span> <em>Indo-Pacific Journal of Phenomenology</em> 12 (sup2): 1–9. <a href="https://doi.org/10.2989/IPJP.2012.12.1.5.1113">https://doi.org/10.2989/IPJP.2012.12.1.5.1113</a>.
</div>
<div class="csl-entry">
Fish, William. 2010. <em>Philosophy of Perception: <span>A</span> Contemporary Introduction</em>. Routledge Contemporary Introductions to Philosophy. New York: Routledge.
</div>
<div class="csl-entry">
Flichy, Patrice. 2007. <em>The Internet Imaginaire</em>. MIT press.
</div>
<div class="csl-entry">
Fortenbaugh, W. W. 2008. <span>“Aristotle’s <span>Art</span> of <span>Rhetoric</span>.”</span> In <em>A Companion to <span>Greek</span> Rhetoric</em>, edited by Ian Worthington, Nachdr., 107–23. Blackwell Companions to the Ancient World <span>Literature</span> and Culture. Malden, MA: Blackwell.
</div>
<div class="csl-entry">
Foucault, Michel. 1967. <em>Des <span>Espace</span> <span>Autres</span> (<span>Of</span> <span>Other</span> <span>Spaces</span>), <span>Heterotopias</span></em>. Architecture/Mouvement/Continuité. <a href="http://scholar.google.com/scholar?q=related:YOLKGE1nipgJ:scholar.google.com/&hl=en&num=20&as_sdt=0,5">http://scholar.google.com/scholar?q=related:YOLKGE1nipgJ:scholar.google.com/&hl=en&num=20&as_sdt=0,5</a>.
</div>
<div class="csl-entry">
———. 2000. <span>“Space, Knowledge, Power.”</span> In <em>Power: <span>Essential</span> Works of Foucault, 1954-1984</em>, edited by J. D. Fabion, 3:349–64. London: Penguin.
</div>
<div class="csl-entry">
Frankel, Lois, and Martin Racine. 2010. <span>“The Complex Field of Research: <span>For</span> Design, Through Design, and about Design.”</span> In <em>Proceedings of the <span>Design</span> <span>Research</span> <span>Society</span> (<span>DRS</span>) <span>International</span> <span>Conference</span></em>.
</div>
<div class="csl-entry">
Frauenberger, Christopher. 2019. <span>“Entanglement <span>HCI</span> <span>The</span> <span>Next</span> <span>Wave</span>?”</span> <em>ACM Transactions on Computer-Human Interaction</em> 27 (1): 2:1–27. <a href="https://doi.org/10.1145/3364998">https://doi.org/10.1145/3364998</a>.
</div>
<div class="csl-entry">
Frayling, Christopher. 1993. <span>“Research in Art and Design.”</span> <em>Royal College of Art Research Papers</em> 1 (1): 1–5.
</div>
<div class="csl-entry">
Friedman, Ken. 1992. <span>“Strategic Design Taxonomy.”</span> <em>Oslo: Oslo Business School</em>.
</div>
<div class="csl-entry">
———. 2000. <span>“Creating Design Knowledge: <span>From</span> Research into Practice.”</span> <em>IDATER 2000</em> 1: 28.
</div>
<div class="csl-entry">
———. 2003. <span>“Theory Construction in Design Research: <span>Criteria</span>: <span>Approaches</span>, and Methods.”</span> <em>Design Studies</em> 24 (6): 507–22.
</div>
<div class="csl-entry">
———. 2008. <span>“Research into, by and for <span>Design</span>.”</span> <em>Journal of Visual Art Practice</em> 7 (2): 153–60.
</div>
<div class="csl-entry">
Fritts, Lauren. 2019. <span>“Knolling: <span>The</span> <span>Art</span> of <span>Material</span> <span>Culture</span>.”</span> <em>Art Education</em> 72 (1): 50–58. <a href="https://doi.org/10.1080/00043125.2019.1537670">https://doi.org/10.1080/00043125.2019.1537670</a>.
</div>
<div class="csl-entry">
Frogel, Shai. 2005. <em>The <span>Rhetoric</span> of <span>Philosophy</span></em>. Amsterdam; Philadelphia: John Benjamins Pub. Co.
</div>
<div class="csl-entry">
Garver, Eugene. 1982. <span>“Philosophy & <span>Rhetoric</span>.”</span> <em>Rhetoric Society Quarterly</em> 12 (3): 141–48.
</div>
<div class="csl-entry">
Gaver, William. 2002. <span>“Designing for Homo Ludens.”</span> <em>I3 Magazine</em> 12 (June): 2–6.
</div>
<div class="csl-entry">
———. 2009. <span>“Designing for Emotion (Among Other Things).”</span> <em>Philosophical Transactions of the Royal Society B: Biological Sciences</em> 364 (1535): 3597–3604.
</div>
<div class="csl-entry">
———. 2012. <span>“What Should We Expect from Research Through Design?”</span> In <em>Proceedings of the <span>SIGCHI</span> Conference on Human Factors in Computing Systems</em>, 937–46. ACM.
</div>
<div class="csl-entry">
Gaver, William, Jacob Beaver, and Steve Benford. 2003. <span>“Ambiguity as a Resource for Design.”</span> In <em>Proceedings of the <span>SIGCHI</span> Conference on <span>Human</span> Factors in Computing Systems</em>, 233–40.
</div>
<div class="csl-entry">
Gaver, William, John Bowers, Andrew Boucher, Hans Gellerson, Sarah Pennington, Albrecht Schmidt, Anthony Steed, Nicholas Villars, and Brendan Walker. 2004. <span>“The Drift Table: <span>Designing</span> for Ludic Engagement.”</span> In <em><span>CHI</span>’04 Extended Abstracts on <span>Human</span> Factors in Computing Systems</em>, 885–900.
</div>
<div class="csl-entry">
Gedenryd, Henrik. 1998. <span>“How Designers Work: <span>Making</span> Sense of Authentic Cognitive Activities.”</span> PhD thesis, Sweden: Lund University.
</div>
<div class="csl-entry">
Giaccardi, Elisa, Nazli Cila, Chris Speed, and Melissa Caldwell. 2016. <em>Thing <span>Ethnography</span>: <span>Doing</span> <span>Design</span> <span>Research</span> with <span>Non</span>-<span>Humans</span></em>. <a href="https://doi.org/10.1145/2901790.2901905">https://doi.org/10.1145/2901790.2901905</a>.
</div>
<div class="csl-entry">
Giacomin, Joseph. 2014. <span>“What Is Human Centred Design?”</span> <em>The Design Journal</em> 17 (4): 606–23. <a href="https://doi.org/10.2752/175630614X14056185480186">https://doi.org/10.2752/175630614X14056185480186</a>.
</div>
<div class="csl-entry">
Gibbons, Michael, Camille Limoges, Helga Nowotny, Simon Schwartzman, Peter Scott, and Martin Trow. 1994. <em>The New Production of Knowledge: <span>The</span> Dynamics of Science and Research in Contemporary Societies</em>. Sage.
</div>
<div class="csl-entry">
Glanville, Ranulph. 1999. <span>“Researching Design and Designing Research.”</span> <em>Design Issues</em> 15 (2): 80–91.
</div>
<div class="csl-entry">
Gobet, Fernand, Jean Retschitzki, and Alex de Voogt. 2004. <em>Moves in Mind: <span>The</span> Psychology of Board Games</em>. Psychology Press.
</div>
<div class="csl-entry">
Godin, Danny, and Mithra Zahedi. 2014. <span>“Aspects of Research Through Design.”</span> <em>Proceedings of DRS 2014: Design’s Big Debates</em> 1: 1667–80.
</div>
<div class="csl-entry">
Gonzatto, Rodrigo Freese, Frederick MC van Amstel, Luiz Ernesto Merkle, and Timo Hartmann. 2013. <span>“The Ideology of the Future in Design Fictions.”</span> <em>Digital Creativity</em> 24 (1): 36–45.
</div>
<div class="csl-entry">
Grace, Lindsay D. 2012. <span>“A Topographical Study of Persuasive Play in Digital Games.”</span> In <em>Proceeding of the 16th <span>International</span> <span>Academic</span> <span>MindTrek</span> <span>Conference</span></em>, 77–82. ACM.
</div>
<div class="csl-entry">
Gradinar, Adrian. 2018. <span>“Designing Interactive Objects and Spaces for the Digital Public Space.”</span> {PhD} thesis, Lancaster University.
</div>
<div class="csl-entry">
Graham, Mark, and H Haarstad. 2014. <span>“Transparency and Development: <span>Ethical</span> Consumption Through <span>Web</span> 2.0 and the Internet of Things.”</span> <em>Open Development: Networked Innovations in International Development</em> 79.
</div>
<div class="csl-entry">
Greenfield, Adam. 2006. <em>Everyware: <span>The</span> Dawning Age of Ubiquitous Computing</em>. Berkeley, CA: New Riders.
</div>
<div class="csl-entry">
———. 2017. <span>“Rise of the Machines: <span>Who</span> Is the <span>‘<span>Internet</span> of Things’</span> Good For?”</span> <a href="http://www.theguardian.com/technology/2017/jun/06/internet-of-things-smart-home-smart-city">http://www.theguardian.com/technology/2017/jun/06/internet-of-things-smart-home-smart-city</a>.
</div>
<div class="csl-entry">
Gregory, Richard L. 1997. <span>“Knowledge in Perception and Illusion.”</span> <em>Philosophical Transactions of the Royal Society of London. Series B: Biological Sciences</em> 352 (1358): 1121–27.
</div>
<div class="csl-entry">
Gualeni, Stefano. 2015. <em>Virtual Worlds as Philosophical Tools: <span>How</span> to Philosophize with a Digital Hammer</em>. Springer.
</div>
<div class="csl-entry">
Hancock, Trevor, and Clement Bezold. 1994. <span>“Possible Futures, Preferable Futures.”</span> <em>The Healthcare Forum Journal</em> 37 (2): 23–29.
</div>
<div class="csl-entry">
Handlykken, Asne Kvale. 2011. <span>“Digital <span>Cities</span> in the Making: <span>Exploring</span> Perceptions of Space, Agency of Actors and Heterotopia.”</span> <em>Ciberlegenda</em>. <a href="http://search.proquest.com/openview/6ffcfa876d555df4b37bcfccf376d1cd/1?pq-origsite=gscholar&cbl=2034136">http://search.proquest.com/openview/6ffcfa876d555df4b37bcfccf376d1cd/1?pq-origsite=gscholar&cbl=2034136</a>.
</div>
<div class="csl-entry">
Harman, Graham. 2005. <em>Guerrilla Metaphysics: <span>Phenomenology</span> and the Carpentry of Things</em>. Chicago: Open Court.
</div>
<div class="csl-entry">
———. 2010a. <span>“Asymmetrical Causation: <span>Influence</span> Without Recompense.”</span> <em>Parallax</em> 16 (1): 96–109.
</div>
<div class="csl-entry">
———. 2010b. <em>Prince of Networks: <span>Bruno</span> <span>Latour</span> and Metaphysics</em>. re. press.
</div>
<div class="csl-entry">
———. 2010c. <span>“Time, Space, Essence, and Eidos: <span>A</span> New Theory of Causation.”</span> <em>Cosmos and History: The Journal of Natural and Social Philosophy</em> 6 (1): 1–17.
</div>
<div class="csl-entry">
———. 2011a. <em>Quentin Meillassoux: <span>Philosophy</span> in the Making</em>. Speculative Realism. Edinburgh: Edinburgh University Press.
</div>
<div class="csl-entry">
———. 2011b. <em>The Quadruple Object</em>. Winchester, U.K. Washington, USA: Zero Books.
</div>
<div class="csl-entry">
———. 2018. <em>Object-<span>Oriented</span> <span>Ontology</span>: <span>A</span> <span>New</span> <span>Theory</span> of <span>Everything</span></em>. 1st ed. Pelican Books.
</div>
<div class="csl-entry">
Hatchuel, Armand. 2001. <span>“Towards <span>Design</span> <span>Theory</span> and Expandable Rationality: <span>The</span> Unfinished Program of <span>Herbert</span> <span>Simon</span>.”</span> <em>Journal of Management and Governance</em> 5 (3/4): 260–73.
</div>
<div class="csl-entry">
Hatchuel, Armand, Pascal Le Masson, and Benoît Weil. 2004. <span>“<span>CK</span> Theory in Practice: <span>Lessons</span> from Industrial Applications.”</span> In <em>Proceedings of <span>DESIGN</span> 2004, the 8th <span>International</span> <span>Design</span> <span>Conference</span></em>, 245–58. Dubrovnik, Croatia.
</div>
<div class="csl-entry">
Hatchuel, Armand, and Benoît Weil. 2002. <span>“<span>CK</span> Theory.”</span> In <em>Proceedings of the <span>Herbert</span> <span>Simon</span> <span>International</span> <span>Conference</span> on <span>Design</span> <span>Sciences</span></em>, 15:1–16. Citeseer.
</div>
<div class="csl-entry">
Heidegger, M. 1927. <em>Being and <span>Time</span></em>. Translated by J. Macquarrie and E. Robinson. New York, NY: Harper & Row. <a href="https://books.google.co.uk/books?id=9oc2BnZMCZgC">https://books.google.co.uk/books?id=9oc2BnZMCZgC</a>.
</div>
<div class="csl-entry">
Heidegger, Martin. 1967. <em>What Is a <span>Thing</span>?</em> Translated by W B Barton and Vera Deutsch. Chicago. <a href="http://scholar.google.com/scholar?q=related:qZDO7jBFn4gJ:scholar.google.com/&hl=en&num=20&as_sdt=0,5">http://scholar.google.com/scholar?q=related:qZDO7jBFn4gJ:scholar.google.com/&hl=en&num=20&as_sdt=0,5</a>.
</div>
<div class="csl-entry">
———. 1985. <em>History of the <span>Concept</span> of <span>Time</span>: <span>Prolegomena</span></em>. Edited by Theodore Kisiel. Indiana University Press.
</div>
<div class="csl-entry">
Herriot, Richard. 2019. <span>“What Kind of Research Is Research Through Design?”</span> In <em>Proceedings of <span>International</span> <span>Association</span> of <span>Societies</span> of <span>Design</span> <span>Research</span> <span>Conference</span> 2019</em>. Manchester.
</div>
<div class="csl-entry">
Hetherington, Kevin. 2002. <em>The <span>Badlands</span> of <span>Modernity</span></em>. Heterotopia and <span>Social</span> <span>Ordering</span>. Routledge.
</div>
<div class="csl-entry">
Hodge, Bob. 1995. <span>“Monstrous Knowledge: <span>Doing</span> <span>PhDs</span> in the New Humanities.”</span> <em>Australian Universities’ Review, The</em> 38 (2): 35.
</div>
<div class="csl-entry">
Hollins, Gillian, and Bill Hollins. 1991. <em>Total <span>Design</span>: <span>Managing</span> the Design Process in the Service Sector</em>. Pitman.
</div>
<div class="csl-entry">
Höök, Kristina, and Jonas Löwgren. 2012. <span>“Strong Concepts: <span>Intermediate</span>-<span>Level</span> Knowledge in Interaction Design Research.”</span> <em>ACM Transactions on Computer-Human Interaction (TOCHI)</em> 19 (3): 1–18.
</div>
<div class="csl-entry">
Hui, Yuk. 2016. <em>On the Existence of Digital Objects</em>. Electronic Mediations 48. Minneapolis: University of Minnesota Press.
</div>
<div class="csl-entry">
Huizinga, Johan. 1955. <em>Homo <span>Ludens</span>: <span>A</span> Study of the Play-Element in Culture</em>. 30. print. Boston: The Beacon Press.
</div>
<div class="csl-entry">
Husserl, Edmund. 2001. <em>Logical <span>Investigations</span></em>. Edited by Dermot Moran. Vol. 2. London: Routledge.
</div>
<div class="csl-entry">
Ichikawa, Jonathan, and Benjamin Jarvis. 2009. <span>“Thought-Experiment Intuitions and Truth in Fiction.”</span> <em>Philosophical Studies</em> 142 (2): 221–46.
</div>
<div class="csl-entry">
Ihde, Don. 1990. <span>“Technology and the Lifeworld: <span>From</span> Garden to Earth.”</span>
</div>
<div class="csl-entry">
Jayaswal, Pragya, and N. Malati. 2017. <span>“Impact of <span>Advergames</span> on <span>Children</span>.”</span> <em>International Journal of Innovative Research and Development</em> 6 (1).
</div>
<div class="csl-entry">
Jensenius, Alexander Refsum. 2012. <span>“Disciplinarities: <span>Intra</span>, Cross, Multi, Inter, Trans <span></span> <span>Alexander</span> <span>Refsum</span> <span>Jensenius</span>.”</span> Blog. <a href="https://www.arj.no/2012/03/12/disciplinarities-2/">https://www.arj.no/2012/03/12/disciplinarities-2/</a>.
</div>
<div class="csl-entry">
Johnson, Mark. 1995. <span>“Introduction: <span>Why</span> Metaphor Matters to Philosophy.”</span> <em>Metaphor and Symbol</em> 10 (3): 157–62.
</div>
<div class="csl-entry">
Jonas, Wolfgang. 2007. <span>“Design <span>Research</span> and Its <span>Meaning</span> to the <span>Methodological</span> <span>Development</span> of the <span>Discipline</span>.”</span> <em>Design Research Now</em>, 187–206.
</div>
<div class="csl-entry">
Julier, Guy. 2013. <em>The Culture of Design</em>. Sage.
</div>
<div class="csl-entry">
Juul, Jesper. 2005. <em>Half-Real: <span>Video</span> Games Between Real Rules and Fictional Worlds</em>. Cambridge, Mass: MIT Press.
</div>
<div class="csl-entry">
———. 2008. <span>“The Magic Circle and the Puzzle Piece.”</span> In <em>Proceedings of the <span>Philosophy</span> of <span>Computer</span> <span>Games</span> 2008</em>, edited by Stephan Günzel, Michael Liebe, and Dieter Mersch, 56–67. Potsdam: University Press. <a href="http://pub.ub.uni-potsdam.de/volltexte/2008/2455/">http://pub.ub.uni-potsdam.de/volltexte/2008/2455/</a>.
</div>
<div class="csl-entry">
Kim, Tanyoung, and Carl DiSalvo. 2010. <span>“Speculative Visualization: <span>A</span> New Rhetoric for Communicating Public Concerns.”</span> In <em>Proceedings of the <span>Design</span> <span>Research</span> <span>Society</span> (<span>DRS</span>) International Conference Design & Complexity</em>.
</div>
<div class="csl-entry">
Kinsley, Sam. 2012. <span>“Futures in the <span>Making</span>: <span>Practices</span> to <span>Anticipate</span> <span>‘<span>Ubiquitous</span> <span>Computing</span>’</span>.”</span> <em>Environment & Planning A</em> 44 (7): 1554–69. <a href="https://doi.org/10.1068/a45168">https://doi.org/10.1068/a45168</a>.
</div>
<div class="csl-entry">
Klein, Julie Thompson. 1990. <em>Interdisciplinarity: <span>History</span>, Theory, and Practice</em>. Wayne state university press.
</div>
<div class="csl-entry">
Kortuem, Gerd, Fahim Kawsar, Daniel Fitton, and Vasughi Sundramoorthy. 2010. <span>“Smart Objects as Building Blocks for the Internet of Things.”</span> <em>IEEE Internet Computing</em> 14 (1): 44–51. <a href="https://doi.org/10.1109/MIC.2009.143">https://doi.org/10.1109/MIC.2009.143</a>.
</div>
<div class="csl-entry">
Kull, Kalevi. 2001. <span>“A Note on Biorhetorics.”</span> <em>Sign Systems Studies</em> 29 (2): 693–704.
</div>
<div class="csl-entry">
Latour, Bruno. 1994. <em>We Have Never Been Modern</em>. 3rd ed. Cambridge, Mass: Harvard University Press.
</div>
<div class="csl-entry">
Law, John. 2004. <em>After Method: <span>Mess</span> in Social Science Research</em>. International Library of Sociology. London ; New York: Routledge.
</div>
<div class="csl-entry">
Lawson, Bryan. 1990. <em>How Designers Think</em>. Butterworth Architecture.
</div>
<div class="csl-entry">
Lee, Dayoung, and Hyunju Lee. 2019. <span>“Mapping the <span>Characteristics</span> of <span>Design</span> <span>Research</span> in <span>Social</span> <span>Sciences</span>.”</span> <em>Adr</em> 32 (4): 39–51. <a href="https://doi.org/10.15187/adr.2019.11.32.4.39">https://doi.org/10.15187/adr.2019.11.32.4.39</a>.
</div>
<div class="csl-entry">
Leedy, Paul D., and Jeanne Ellis Ormrod. 2016. <em>Practical Research: <span>Planning</span> and Design</em>. Eleventh edition. Boston: Pearson.
</div>
<div class="csl-entry">
Lesage, Frédérik, and Louis Rinfret. 2015. <span>“Shifting Media Imaginaries of the <span>Web</span>.”</span> <em>FM</em>, October. <a href="https://doi.org/10.5210/fm.v20i10.5519">https://doi.org/10.5210/fm.v20i10.5519</a>.
</div>
<div class="csl-entry">
Liebe, Michael. 2008. <span>“There Is No Magic Circle: <span>On</span> the Difference Between Computer Games and Traditional Games.”</span>
</div>
<div class="csl-entry">
Lindley, Craig A. 2004. <span>“Ludic Engagement and Immersion as a Generic Paradigm for Human-Computer Interaction Design.”</span> In <em>International <span>Conference</span> on <span>Entertainment</span> <span>Computing</span></em>, 3–13. Springer.
</div>
<div class="csl-entry">
Lindley, Joseph Galen, and Paul Coulton. 2017. <span>“On the <span>Internet</span> <span>Everybody</span> <span>Knows</span> <span>You</span>’re a <span>Whatchamacallit</span> (or a <span>Thing</span>).”</span> In <em><span>CHI</span> 2017 <span>Workshop</span></em>.
</div>
<div class="csl-entry">
Lindley, Joseph Galen, Paul Coulton, and Haider Akmal. 2018. <span>“Turning <span>Philosophy</span> with a <span>Speculative</span> <span>Lathe</span>: <span>Object</span> <span>Oriented</span> <span>Ontology</span>, <span>Carpentry</span>, and <span>Design</span> <span>Fiction</span>.”</span> In <em>Proceedings of <span>DRS2018</span> <span>Limerick</span></em>, 1:229–43. Limerick. <a href="https://doi.org/10.21606/dma.2018.327">https://doi.org/10.21606/dma.2018.327</a>.
</div>
<div class="csl-entry">
Lindley, Joseph, Haider Ali Akmal, and Paul Coulton. 2020. <span>“Design <span>Research</span> and <span>Object</span>-<span>Oriented</span> <span>Ontology</span>.”</span> <em>Open Philosophy</em> 3 (1): 11–41. <a href="https://doi.org/10.1515/opphil-2020-0002">https://doi.org/10.1515/opphil-2020-0002</a>.
</div>
<div class="csl-entry">
Lindley, Joseph, Paul Coulton, and Hayley Alter. 2019. <span>“Networking with <span>Ghosts</span> in the <span>Machine</span>. <span>Speaking</span> to the <span>Internet</span> of <span>Things</span>.”</span> <em>The Design Journal</em> 22 (sup1): 1187–99. <a href="https://doi.org/10.1080/14606925.2019.1594984">https://doi.org/10.1080/14606925.2019.1594984</a>.
</div>
<div class="csl-entry">
Lindley, Joseph, Paul Coulton, and Rachel Cooper. 2017. <span>“Why the <span>Internet</span> of <span>Things</span> Needs <span>Object</span> <span>Orientated</span> <span>Ontology</span>.”</span> <em>The Design Journal</em> 20 (sup1): S2846–57. <a href="https://doi.org/10.1080/14606925.2017.1352796">https://doi.org/10.1080/14606925.2017.1352796</a>.
</div>
<div class="csl-entry">
Lindley, Joseph, Paul Coulton, and Miriam Sturdee. 2017. <span>“Implications for <span>Adoption</span>.”</span> In <em>Proceedings of the 2017 <span>CHI</span> <span>Conference</span></em>, 265–77. New York, New York, USA: ACM Press. <a href="https://doi.org/10.1145/3025453.3025742">https://doi.org/10.1145/3025453.3025742</a>.
</div>
<div class="csl-entry">
Long, John. 1991. <span>“Theory in Human-Computer Interaction?”</span> In <em><span>IEE</span> <span>Colloquium</span> on <span>Theory</span> in <span>Human</span>-<span>Computer</span> <span>Interaction</span> (<span>HCI</span>)</em>, 2–1. IET.
</div>
<div class="csl-entry">
Love, Terence. 2000. <span>“Philosophy of Design: <span>A</span> Meta-Theoretical Structure for Design Theory.”</span> <em>Design Studies</em> 21 (3): 293–313. <a href="https://doi.org/10.1016/S0142-694X(99)00012-5">https://doi.org/10.1016/S0142-694X(99)00012-5</a>.
</div>
<div class="csl-entry">
Lukens, Jonathan, and Carl DiSalvo. 2011. <span>“Speculative <span>Design</span> and <span>Technological</span> <span>Fluency</span>.”</span> <em>International Journal of Learning and Media</em> 3 (4): 23–40. <a href="https://doi.org/10.1162/IJLM_a_00080">https://doi.org/10.1162/IJLM_a_00080</a>.
</div>
<div class="csl-entry">
Lupton, Deborah. 2018. <span>“Towards Design Sociology.”</span> <em>Sociology Compass</em> 12 (1): e12546. <a href="https://doi.org/10.1111/soc4.12546">https://doi.org/10.1111/soc4.12546</a>.
</div>
<div class="csl-entry">
Madakam, Somayya, R. Ramaswamy, and Siddharth Tripathi. 2015. <span>“Internet of <span>Things</span> (<span>IoT</span>): <span>A</span> Literature Review.”</span> <em>Journal of Computer and Communications</em> 3 (05): 164.
</div>
<div class="csl-entry">
Marenko, Betti. 2017. <span>“Filled with Wonder: <span>The</span> Enchanting Android from Cams to Algorithms.”</span> In <em>Encountering <span>Things</span>: <span>Design</span> and <span>Theories</span> of <span>Things</span></em>, edited by Leslie Atzmon and Prasad Boradkar, 19–34. London Oxford New York: Bloomsbury Academic, an Imprint of Bloomsbury Publishing Plc.
</div>
<div class="csl-entry">
Marwick, Alice E., and Danah Boyd. 2011. <span>“I Tweet Honestly, <span>I</span> Tweet Passionately: <span>Twitter</span> Users, Context Collapse, and the Imagined Audience.”</span> <em>New Media & Society</em> 13 (1): 114–33.
</div>
<div class="csl-entry">