-
Notifications
You must be signed in to change notification settings - Fork 0
/
referencerBib.reflib
executable file
·1982 lines (1982 loc) · 114 KB
/
referencerBib.reflib
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
<?xml version="1.0" encoding="UTF-8"?>
<library>
<manage_target braces="false" utf8="false"></manage_target>
<library_folder monitor="false"></library_folder>
<taglist>
</taglist>
<doclist>
<doc>
<filename></filename>
<relative_filename></relative_filename>
<key>Ackoff</key>
<notes></notes>
<bib_type>Article</bib_type>
<bib_doi></bib_doi>
<bib_title>From data to wisdom</bib_title>
<bib_authors>Ackoff, R. L.</bib_authors>
<bib_journal>Journal of Applied Systems Analysis</bib_journal>
<bib_volume>16</bib_volume>
<bib_number></bib_number>
<bib_pages>3-9</bib_pages>
<bib_year>1989</bib_year>
<bib_extra key="Bdsk-url-1">http://www.citeulike.org/group/8357/article/6930744</bib_extra>
<bib_extra key="Date-modified">2011-05-14 16:37:01 +1000</bib_extra>
<bib_extra key="Url">http://www.citeulike.org/group/8357/article/6930744</bib_extra>
</doc>
<doc>
<filename></filename>
<relative_filename></relative_filename>
<key>Ackoff2007</key>
<notes></notes>
<bib_type>Book</bib_type>
<bib_doi></bib_doi>
<bib_title>Management F-Laws</bib_title>
<bib_authors>Ackoff, Russell L. and Addison, Herbert J. and Bibb, Sally</bib_authors>
<bib_journal></bib_journal>
<bib_volume></bib_volume>
<bib_number></bib_number>
<bib_pages></bib_pages>
<bib_year>2007</bib_year>
<bib_extra key="Abstract">A full collection of more than 80 of Russell Ackoff’s management f-laws: the uncomfortable truths about how organizations really work, what’s wrong with the way we design and manage businesses, what makes managers tick... and how we can make things work better. Russell Ackoff is one of the world’s top business brains. Herbert Addison has worked for years in business book publishing. Sally Bibb is a pioneer of organizational change. Who better to zero in on organizations, take them apart and then suggest ways of putting them back together - but better?</bib_extra>
<bib_extra key="Bdsk-url-1">http://books.google.com/books?id=FCr2H97V4YwC%5C&pgis=1</bib_extra>
<bib_extra key="Isbn">0955008123</bib_extra>
<bib_extra key="Pages">162</bib_extra>
<bib_extra key="Publisher">Triarchy Press</bib_extra>
<bib_extra key="Series"></bib_extra>
<bib_extra key="Url">http://books.google.com/books?id=FCr2H97V4YwC\&pgis=1</bib_extra>
</doc>
<doc>
<filename></filename>
<relative_filename></relative_filename>
<key>Alexander2007</key>
<notes></notes>
<bib_type>Article</bib_type>
<bib_doi></bib_doi>
<bib_title>Analytic Epistemology and Experimental Philosophy</bib_title>
<bib_authors>Alexander, Joshua and Weinberg, Jonathan M.</bib_authors>
<bib_journal>Philosophy Compass</bib_journal>
<bib_volume>2</bib_volume>
<bib_number>1</bib_number>
<bib_pages>56-80</bib_pages>
<bib_year>2007</bib_year>
<bib_extra key="Bdsk-url-1">http://doi.wiley.com/10.1111/j.1747-9991.2006.00048.x</bib_extra>
<bib_extra key="Bdsk-url-2">http://dx.doi.org/10.1111/j.1747-9991.2006.00048.x</bib_extra>
<bib_extra key="Doi">10.1111/j.1747-9991.2006.00048.x</bib_extra>
<bib_extra key="Issn">1747-9991</bib_extra>
<bib_extra key="Month">jan</bib_extra>
<bib_extra key="Url">http://doi.wiley.com/10.1111/j.1747-9991.2006.00048.x</bib_extra>
</doc>
<doc>
<filename></filename>
<relative_filename></relative_filename>
<key>Atkin2011</key>
<notes></notes>
<bib_type>Misc</bib_type>
<bib_doi></bib_doi>
<bib_title>Peirce’s Theory of Signs</bib_title>
<bib_authors>Atkin, Albert</bib_authors>
<bib_journal></bib_journal>
<bib_volume></bib_volume>
<bib_number></bib_number>
<bib_pages></bib_pages>
<bib_year>2011</bib_year>
<bib_extra key="Bdsk-url-1">http://plato.stanford.edu/entries/peirce-semiotics/</bib_extra>
<bib_extra key="Date-modified">2011-05-16 23:29:51 +1000</bib_extra>
<bib_extra key="Lastchecked">2011</bib_extra>
<bib_extra key="Url">http://plato.stanford.edu/entries/peirce-semiotics/</bib_extra>
</doc>
<doc>
<filename></filename>
<relative_filename></relative_filename>
<key>Ballsun-Stanton2010</key>
<notes></notes>
<bib_type>Misc</bib_type>
<bib_doi></bib_doi>
<bib_title>Presentation for BlueScope Steel</bib_title>
<bib_authors>Ballsun-Stanton, Brian</bib_authors>
<bib_journal></bib_journal>
<bib_volume></bib_volume>
<bib_number></bib_number>
<bib_pages></bib_pages>
<bib_year>2010</bib_year>
<bib_extra key="Bdsk-url-1">http://www.authorstream.com/Presentation/denubis-439900-exploring-the-philosophy-of-data/</bib_extra>
<bib_extra key="Date-modified">2011-05-16 23:31:07 +1000</bib_extra>
<bib_extra key="Keywords">Experimental Philosophy,Philosophy of Data,Presentation</bib_extra>
<bib_extra key="Mendeley-tags">Philosophy of Data,Presentation</bib_extra>
<bib_extra key="Url">http://www.authorstream.com/Presentation/denubis-439900-exploring-the-philosophy-of-data/</bib_extra>
</doc>
<doc>
<filename></filename>
<relative_filename></relative_filename>
<key>Ballsun-Stanton2009</key>
<notes></notes>
<bib_type>InProceedings</bib_type>
<bib_doi></bib_doi>
<bib_title>Philosophy of Data (PoD) and its Importance to the Discipline of Information Systems</bib_title>
<bib_authors>Ballsun-Stanton, Brian and Bunker, Deborah</bib_authors>
<bib_journal></bib_journal>
<bib_volume></bib_volume>
<bib_number></bib_number>
<bib_pages></bib_pages>
<bib_year>2009</bib_year>
<bib_extra key="Bdsk-url-1">http://aisel.aisnet.org/amcis2009/435/</bib_extra>
<bib_extra key="BookTitle">Americas Conference on Information Systems (AMCIS) 2009</bib_extra>
<bib_extra key="File">:Volumes/Data/localDataNoBackup/z3235728/Mendeley/Ballsun-Stanton, Bunker/Americas Conference on Information Systems (AMCIS) 2009/Ballsun-Stanton, Bunker - 2009 - Philosophy of Data (PoD) and its Importance to the Discipline of Information Systems.pdf:pdf</bib_extra>
<bib_extra key="Keywords">Data,Disciplinary,Information,Knowledge,Literature Review,Multi-,Ontologies,Philosophy of Data,Theoretical Basis of Information Systems</bib_extra>
<bib_extra key="Mendeley-tags">Literature Review,Philosophy of Data</bib_extra>
<bib_extra key="Publisher">AIS Electronic Library</bib_extra>
<bib_extra key="Url">http://aisel.aisnet.org/amcis2009/435/</bib_extra>
</doc>
<doc>
<filename></filename>
<relative_filename></relative_filename>
<key>Barnes1983</key>
<notes></notes>
<bib_type>Article</bib_type>
<bib_doi></bib_doi>
<bib_title>Graph theory in network analysis</bib_title>
<bib_authors>Barnes, J. A. and Harary, Frank</bib_authors>
<bib_journal>Social networks</bib_journal>
<bib_volume></bib_volume>
<bib_number></bib_number>
<bib_pages></bib_pages>
<bib_year>1983</bib_year>
<bib_extra key="Bdsk-url-1">http://linkinghub.elsevier.com/retrieve/pii/0378873383900266</bib_extra>
<bib_extra key="File">:Volumes/Data/localDataNoBackup/z3235728/Mendeley/Barnes, Harary/Social networks/Barnes, Harary - 1983 - Graph theory in network analysis.pdf:pdf</bib_extra>
<bib_extra key="Url">http://linkinghub.elsevier.com/retrieve/pii/0378873383900266</bib_extra>
</doc>
<doc>
<filename></filename>
<relative_filename></relative_filename>
<key>Baudrillard_1994</key>
<notes></notes>
<bib_type>Book</bib_type>
<bib_doi></bib_doi>
<bib_title>Simulacra and Simulation</bib_title>
<bib_authors>Baudrillard, Jean</bib_authors>
<bib_journal></bib_journal>
<bib_volume>50</bib_volume>
<bib_number>4</bib_number>
<bib_pages></bib_pages>
<bib_year>1994</bib_year>
<bib_extra key="Abstract">The first full-length translation in English of an essential work of postmodernist thought</bib_extra>
<bib_extra key="Bdsk-url-1">http://www.amazon.com/dp/0472065211</bib_extra>
<bib_extra key="Editor">Glaser, Sheila FEditor</bib_extra>
<bib_extra key="Journal">Idea</bib_extra>
<bib_extra key="Pages">164</bib_extra>
<bib_extra key="Publisher">University of Michigan Press</bib_extra>
<bib_extra key="Series"></bib_extra>
<bib_extra key="Url">http://www.amazon.com/dp/0472065211</bib_extra>
</doc>
<doc>
<filename></filename>
<relative_filename></relative_filename>
<key>Berger1967</key>
<notes></notes>
<bib_type>Book</bib_type>
<bib_doi></bib_doi>
<bib_title>The social construction of reality: A treatise in the sociology of knowledge</bib_title>
<bib_authors>Berger, P. L. and Luckmann, T.</bib_authors>
<bib_journal></bib_journal>
<bib_volume></bib_volume>
<bib_number></bib_number>
<bib_pages></bib_pages>
<bib_year>1967</bib_year>
<bib_extra key="Bdsk-url-1">http://www.getcited.org/pub/102783980</bib_extra>
<bib_extra key="Isbn">0140135480</bib_extra>
<bib_extra key="Publisher">Penguin Books London</bib_extra>
<bib_extra key="Series"></bib_extra>
<bib_extra key="Url">http://www.getcited.org/pub/102783980</bib_extra>
</doc>
<doc>
<filename></filename>
<relative_filename></relative_filename>
<key>Bernstein2009</key>
<notes></notes>
<bib_type>Misc</bib_type>
<bib_doi></bib_doi>
<bib_title>The Data-Information-Knowledge-Wisdom Hierarchy and its Antithesis</bib_title>
<bib_authors>Bernstein, Jay H.</bib_authors>
<bib_journal></bib_journal>
<bib_volume></bib_volume>
<bib_number></bib_number>
<bib_pages></bib_pages>
<bib_year>2009</bib_year>
<bib_extra key="Bdsk-url-1">http://arizona.openrepository.com/arizona/handle/10150/105414</bib_extra>
<bib_extra key="Date-modified">2011-05-16 23:30:56 +1000</bib_extra>
<bib_extra key="Keywords">Information Analysis,Knowledge Organization</bib_extra>
<bib_extra key="Language">en</bib_extra>
<bib_extra key="Month">jul</bib_extra>
<bib_extra key="Url">http://arizona.openrepository.com/arizona/handle/10150/105414</bib_extra>
</doc>
<doc>
<filename></filename>
<relative_filename></relative_filename>
<key>Borgman1986</key>
<notes></notes>
<bib_type>Article</bib_type>
<bib_doi></bib_doi>
<bib_title>The user’s mental model of an information retrieval system: an experiment on a prototype online catalog</bib_title>
<bib_authors>Borgman, C. L.</bib_authors>
<bib_journal>International Journal of man-machine studies</bib_journal>
<bib_volume></bib_volume>
<bib_number></bib_number>
<bib_pages></bib_pages>
<bib_year>1986</bib_year>
<bib_extra key="Bdsk-url-1">http://linkinghub.elsevier.com/retrieve/pii/S0020737386800396</bib_extra>
<bib_extra key="Url">http://linkinghub.elsevier.com/retrieve/pii/S0020737386800396</bib_extra>
</doc>
<doc>
<filename></filename>
<relative_filename></relative_filename>
<key>Boulos2007</key>
<notes></notes>
<bib_type>Article</bib_type>
<bib_doi></bib_doi>
<bib_title>Second Life: an overview of the potential of 3‐D virtual worlds in medical and health education</bib_title>
<bib_authors>Boulos, M. N. K.</bib_authors>
<bib_journal>Health Information & …</bib_journal>
<bib_volume></bib_volume>
<bib_number></bib_number>
<bib_pages></bib_pages>
<bib_year>2007</bib_year>
<bib_extra key="Bdsk-url-1">http://onlinelibrary.wiley.com/doi/10.1111/j.1471-1842.2007.00733.x/full</bib_extra>
<bib_extra key="Url">http://onlinelibrary.wiley.com/doi/10.1111/j.1471-1842.2007.00733.x/full</bib_extra>
</doc>
<doc>
<filename></filename>
<relative_filename></relative_filename>
<key>Boyd2010</key>
<notes></notes>
<bib_type>Misc</bib_type>
<bib_doi></bib_doi>
<bib_title>apophenia: Learning to Hide in Plain Sight</bib_title>
<bib_authors>Boyd, Danah</bib_authors>
<bib_journal></bib_journal>
<bib_volume></bib_volume>
<bib_number></bib_number>
<bib_pages></bib_pages>
<bib_year>2010</bib_year>
<bib_extra key="Annote">undefined</bib_extra>
<bib_extra key="Bdsk-url-1">http://www.zephoria.org/thoughts/archives/2010/08/23/social-steganography-learning-to-hide-in-plain-sight.html</bib_extra>
<bib_extra key="Date-modified">2011-05-16 23:30:52 +1000</bib_extra>
<bib_extra key="File">:Volumes/Data/localDataNoBackup/z3235728/Mendeley/Boyd/apophenia/Boyd - 2010 - Social Steganography Learning to Hide in Plain Sight.html:html</bib_extra>
<bib_extra key="Url">http://www.zephoria.org/thoughts/archives/2010/08/23/social-steganography-learning-to-hide-in-plain-sight.html</bib_extra>
</doc>
<doc>
<filename></filename>
<relative_filename></relative_filename>
<key>Brown2008</key>
<notes></notes>
<bib_type>Article</bib_type>
<bib_doi></bib_doi>
<bib_title>Minds on fire: Open education, the long tail, and learning 2.0</bib_title>
<bib_authors>Brown, John Seely and Adler, Richard P.</bib_authors>
<bib_journal>Educause review</bib_journal>
<bib_volume></bib_volume>
<bib_number></bib_number>
<bib_pages></bib_pages>
<bib_year>2008</bib_year>
<bib_extra key="Bdsk-url-1">http://webpages.csus.edu/ sac43949/PDFs/minds%5C_on%5C_fire.pdf</bib_extra>
<bib_extra key="File">:Volumes/Data/localDataNoBackup/z3235728/Mendeley/Brown, Adler/Educause review/Brown, Adler - 2008 - Minds on fire Open education, the long tail, and learning 2.0.pdf:pdf</bib_extra>
<bib_extra key="Url">http://webpages.csus.edu/~sac43949/PDFs/minds\_on\_fire.pdf</bib_extra>
</doc>
<doc>
<filename></filename>
<relative_filename></relative_filename>
<key>Bruffee1986</key>
<notes></notes>
<bib_type>Article</bib_type>
<bib_doi></bib_doi>
<bib_title>Social Construction, Language, and the Authority of Knowledge: A Bibliographical Essay</bib_title>
<bib_authors>Bruffee, Kenneth A.</bib_authors>
<bib_journal>College English</bib_journal>
<bib_volume>48</bib_volume>
<bib_number>8</bib_number>
<bib_pages>773-790</bib_pages>
<bib_year>1986</bib_year>
<bib_extra key="Bdsk-url-1">http://www.jstor.org/stable/376723</bib_extra>
<bib_extra key="Publisher">National Council of Teachers of English</bib_extra>
<bib_extra key="Url">http://www.jstor.org/stable/376723</bib_extra>
</doc>
<doc>
<filename></filename>
<relative_filename></relative_filename>
<key>Carmel1993</key>
<notes></notes>
<bib_type>Article</bib_type>
<bib_doi></bib_doi>
<bib_title>PD and joint application design: a transatlantic comparison</bib_title>
<bib_authors>Carmel, E.</bib_authors>
<bib_journal>Communications of the ACM</bib_journal>
<bib_volume></bib_volume>
<bib_number></bib_number>
<bib_pages></bib_pages>
<bib_year>1993</bib_year>
<bib_extra key="Bdsk-url-1">http://portal.acm.org/citation.cfm?id=153571.163265%5C&dl=GUIDE%5C&dl=ACM%5C&idx=153571%5C&part=periodical%5C&WantType=periodical%5C&title=Communications%20of%20the%20ACM</bib_extra>
<bib_extra key="File">:Volumes/Data/localDataNoBackup/z3235728/Mendeley/Carmel/Communications of the ACM/Carmel - 1993 - PD and joint application design a transatlantic comparison.pdf:pdf</bib_extra>
<bib_extra key="Url">http://portal.acm.org/citation.cfm?id=153571.163265\&dl=GUIDE\&dl=ACM\&idx=153571\&part=periodical\&WantType=periodical\&title=Communications of the ACM</bib_extra>
</doc>
<doc>
<filename></filename>
<relative_filename></relative_filename>
<key>Chandler2001</key>
<notes></notes>
<bib_type>Misc</bib_type>
<bib_doi></bib_doi>
<bib_title>Semiotics for Beginners: Strengths</bib_title>
<bib_authors>Chandler, Daniel</bib_authors>
<bib_journal></bib_journal>
<bib_volume></bib_volume>
<bib_number></bib_number>
<bib_pages></bib_pages>
<bib_year>2001</bib_year>
<bib_extra key="Annote">undefined</bib_extra>
<bib_extra key="Bdsk-url-1">http://www.aber.ac.uk/media/Documents/S4B/sem10.html</bib_extra>
<bib_extra key="Date-modified">2011-05-16 23:30:48 +1000</bib_extra>
<bib_extra key="File">:Volumes/Data/localDataNoBackup/z3235728/Mendeley/Chandler/Unknown/Chandler - 2001 - Semiotics for Beginners Strengths.html:html</bib_extra>
<bib_extra key="Url">http://www.aber.ac.uk/media/Documents/S4B/sem10.html</bib_extra>
</doc>
<doc>
<filename></filename>
<relative_filename></relative_filename>
<key>Chesterton</key>
<notes></notes>
<bib_type>Book</bib_type>
<bib_doi></bib_doi>
<bib_title>Heretics</bib_title>
<bib_authors>Chesterton, G. K.</bib_authors>
<bib_journal></bib_journal>
<bib_volume></bib_volume>
<bib_number></bib_number>
<bib_pages></bib_pages>
<bib_year>1996</bib_year>
<bib_extra key="Annote">undefined</bib_extra>
<bib_extra key="Bdsk-url-1">http://www.gutenberg.org/ebooks/470</bib_extra>
<bib_extra key="Date-modified">2011-05-14 16:36:16 +1000</bib_extra>
<bib_extra key="File">:Volumes/Data/localDataNoBackup/z3235728/Mendeley/Chesterton/Unknown/Chesterton - Unknown - Heretics.html:html</bib_extra>
<bib_extra key="Keywords">free audio books,free books,free ebooks</bib_extra>
<bib_extra key="Publisher">Project Gutenberg</bib_extra>
<bib_extra key="Series"></bib_extra>
<bib_extra key="Url">http://www.gutenberg.org/ebooks/470</bib_extra>
</doc>
<doc>
<filename></filename>
<relative_filename></relative_filename>
<key>Choi2006</key>
<notes></notes>
<bib_type>Article</bib_type>
<bib_doi></bib_doi>
<bib_title>A survey on ontology mapping</bib_title>
<bib_authors>Choi, N.</bib_authors>
<bib_journal>ACM Sigmod Record</bib_journal>
<bib_volume></bib_volume>
<bib_number></bib_number>
<bib_pages></bib_pages>
<bib_year>2006</bib_year>
<bib_extra key="Bdsk-url-1">http://portal.acm.org/citation.cfm?id=1168097</bib_extra>
<bib_extra key="File">:Volumes/Data/localDataNoBackup/z3235728/Mendeley/Choi/ACM Sigmod Record/Choi - 2006 - A survey on ontology mapping.pdf:pdf</bib_extra>
<bib_extra key="Url">http://portal.acm.org/citation.cfm?id=1168097</bib_extra>
</doc>
<doc>
<filename></filename>
<relative_filename></relative_filename>
<key>Chrisman1999</key>
<notes></notes>
<bib_type>Article</bib_type>
<bib_doi></bib_doi>
<bib_title>Trading zones or boundary objects: Understanding incomplete translations of technical expertise</bib_title>
<bib_authors>Chrisman, N.</bib_authors>
<bib_journal>Social Studies of Science (4S) Annual Meeting</bib_journal>
<bib_volume></bib_volume>
<bib_number></bib_number>
<bib_pages></bib_pages>
<bib_year>1999</bib_year>
<bib_extra key="Bdsk-url-1">http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.24.6239%5C&rep=rep1%5C&type=pdf</bib_extra>
<bib_extra key="File">:Volumes/Data/localDataNoBackup/z3235728/Mendeley/Chrisman/Social Studies of Science (4S) Annual Meeting/Chrisman - 1999 - Trading zones or boundary objects Understanding incomplete translations of technical expertise.pdf:pdf</bib_extra>
<bib_extra key="Url">http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.24.6239\&rep=rep1\&type=pdf</bib_extra>
</doc>
<doc>
<filename></filename>
<relative_filename></relative_filename>
<key>Codd1990</key>
<notes></notes>
<bib_type>Book</bib_type>
<bib_doi></bib_doi>
<bib_title>The relational model for database management: version 2</bib_title>
<bib_authors>Codd, E. F.</bib_authors>
<bib_journal></bib_journal>
<bib_volume></bib_volume>
<bib_number></bib_number>
<bib_pages></bib_pages>
<bib_year>1990</bib_year>
<bib_extra key="Bdsk-url-1">http://portal.acm.org/citation.cfm?id=SERIES11430.77708</bib_extra>
<bib_extra key="Date-modified">2011-05-14 16:28:13 +1000</bib_extra>
<bib_extra key="Publisher">Addison-Wesley Longman Publishing Co., Inc</bib_extra>
<bib_extra key="Series"></bib_extra>
<bib_extra key="Url">http://portal.acm.org/citation.cfm?id=SERIES11430.77708</bib_extra>
</doc>
<doc>
<filename></filename>
<relative_filename></relative_filename>
<key>Collins2007</key>
<notes></notes>
<bib_type>Article</bib_type>
<bib_doi></bib_doi>
<bib_title>Trading zones and interactional expertise</bib_title>
<bib_authors>Collins, H.</bib_authors>
<bib_journal>Studies in History and Philosophy of …</bib_journal>
<bib_volume></bib_volume>
<bib_number></bib_number>
<bib_pages></bib_pages>
<bib_year>2007</bib_year>
<bib_extra key="Bdsk-url-1">http://linkinghub.elsevier.com/retrieve/pii/S003936810700060X</bib_extra>
<bib_extra key="Url">http://linkinghub.elsevier.com/retrieve/pii/S003936810700060X</bib_extra>
</doc>
<doc>
<filename></filename>
<relative_filename></relative_filename>
<key>Cunningham1992</key>
<notes></notes>
<bib_type>Article</bib_type>
<bib_doi></bib_doi>
<bib_title>Beyond educational psychology: Steps toward an educational semiotic</bib_title>
<bib_authors>Cunningham, Donald J.</bib_authors>
<bib_journal>Educational Psychology Review</bib_journal>
<bib_volume>4</bib_volume>
<bib_number>2</bib_number>
<bib_pages>165-194</bib_pages>
<bib_year>1992</bib_year>
<bib_extra key="Abstract">In this paper, I argue that educational psychology is deeply embedded in an objectivist epistemology, the consequences of which seriously undermine our ability to inform educational practice. In the remainder of the paper, I provide an introduction to semiotics, the doctrine of signs, and offer four global concepts (the sign, semiosis, inference, and reflexivity) that I believe set semiotics apart from other, more or less related, approaches within psychology and educational psychology (e.g., constructivism). I conclude the paper by responding to some of the more frequently asked questions I have encountered in attempting to define an educational semiotic.</bib_extra>
<bib_extra key="Bdsk-url-1">http://www.springerlink.com/content/pl0328205l718610/</bib_extra>
<bib_extra key="Bdsk-url-2">http://dx.doi.org/10.1007/BF01322343</bib_extra>
<bib_extra key="Doi">10.1007/BF01322343</bib_extra>
<bib_extra key="Issn">1040-726X</bib_extra>
<bib_extra key="Keywords">Behavioral Science</bib_extra>
<bib_extra key="Month">jun</bib_extra>
<bib_extra key="Publisher">Springer Netherlands</bib_extra>
<bib_extra key="Url">http://www.springerlink.com/content/pl0328205l718610/</bib_extra>
</doc>
<doc>
<filename></filename>
<relative_filename></relative_filename>
<key>Czarniawska2003</key>
<notes></notes>
<bib_type>Article</bib_type>
<bib_doi></bib_doi>
<bib_title>Consulting as a Liminal Space</bib_title>
<bib_authors>Czarniawska, B. and Mazza, C.</bib_authors>
<bib_journal>Human Relations</bib_journal>
<bib_volume>56</bib_volume>
<bib_number>3</bib_number>
<bib_pages>267-290</bib_pages>
<bib_year>2003</bib_year>
<bib_extra key="Abstract">The growing literature on management consulting views consultants as allies of management, in temporary positions of power. This article attempts to complement this perspective by assuming a metaphor of consulting as a liminal space. Liminality is a condition where the usual practice and order are suspended and replaced by new rites and rituals. We build on the anthropological analyses of Arnold van Gennep and Victor Turner to find theoretical support for the idea of liminality as applied to the consulting activity. This article is based on our experience as consultants and observers. It collects on-the-job reflections - ours and those of other consultants we have met. These participating observations support the suggestion that consulting can be represented as a liminal space for both consultants and their client organizations.</bib_extra>
<bib_extra key="Bdsk-url-1">http://hum.sagepub.com/cgi/content/abstract/56/3/267</bib_extra>
<bib_extra key="Bdsk-url-2">http://dx.doi.org/10.1177/0018726703056003612</bib_extra>
<bib_extra key="Doi">10.1177/0018726703056003612</bib_extra>
<bib_extra key="Issn">0018-7267</bib_extra>
<bib_extra key="Month">mar</bib_extra>
<bib_extra key="Url">http://hum.sagepub.com/cgi/content/abstract/56/3/267</bib_extra>
</doc>
<doc>
<filename></filename>
<relative_filename></relative_filename>
<key>Dreyfus2004</key>
<notes></notes>
<bib_type>Book</bib_type>
<bib_doi></bib_doi>
<bib_title>A companion to Heidegger</bib_title>
<bib_authors>Dreyfus, Hubert L.</bib_authors>
<bib_journal></bib_journal>
<bib_volume></bib_volume>
<bib_number></bib_number>
<bib_pages></bib_pages>
<bib_year>2004</bib_year>
<bib_extra key="Bdsk-url-1">http://books.google.com/books?id=mhiAcSw201kC%5C&pgis=1</bib_extra>
<bib_extra key="Isbn">1405110929</bib_extra>
<bib_extra key="Pages">230</bib_extra>
<bib_extra key="Publisher">John Wiley and Sons</bib_extra>
<bib_extra key="Series"></bib_extra>
<bib_extra key="Url">http://books.google.com/books?id=mhiAcSw201kC\&pgis=1</bib_extra>
</doc>
<doc>
<filename></filename>
<relative_filename></relative_filename>
<key>Dubois2002</key>
<notes></notes>
<bib_type>Article</bib_type>
<bib_doi></bib_doi>
<bib_title>Systematic combining: an abductive approach to case research</bib_title>
<bib_authors>Dubois, A. and Gadde, L. E.</bib_authors>
<bib_journal>Journal of business research</bib_journal>
<bib_volume></bib_volume>
<bib_number></bib_number>
<bib_pages></bib_pages>
<bib_year>2002</bib_year>
<bib_extra key="Bdsk-url-1">http://linkinghub.elsevier.com/retrieve/pii/S0148296300001958</bib_extra>
<bib_extra key="Url">http://linkinghub.elsevier.com/retrieve/pii/S0148296300001958</bib_extra>
</doc>
<doc>
<filename></filename>
<relative_filename></relative_filename>
<key>Ehn1993</key>
<notes></notes>
<bib_type>Inbook</bib_type>
<bib_doi></bib_doi>
<bib_title>Scandinavian Design: On Participation and Skill</bib_title>
<bib_authors>Ehn, Pelle</bib_authors>
<bib_journal></bib_journal>
<bib_volume></bib_volume>
<bib_number></bib_number>
<bib_pages>319</bib_pages>
<bib_year>1993</bib_year>
<bib_extra key="Abstract">The voices in this collection are primarily those of researchers and developers concerned with bringing knowledge of technological possibilities to bear on informed and effective system design. Their efforts are distinguished from many previous writings on system development by their central and abiding reliance on direct and continuous interaction with those who are the ultimate arbiters of system adequacy; namely, those who will use the technology in their everyday lives and work. A key issue throughout is the question of who does what to whom: whose interests are at stake, who initiates action and for what reason, who defines the problem and who decides that there is one. The papers presented follow in the footsteps of a small but growing international community of scholars and practitioners of participatory systems design. Many of the original European perspectives are represented here as well as some new and distinctively American approaches. The collection is characterized by a rich anddiverse set of perspectives and experiences that, despite their differences, share a distinctive spirit and direction – a more humane, creative, and effective relationship between those involved in technology’s design and use, and between technology and the human activities that motivate the technology.</bib_extra>
<bib_extra key="Bdsk-url-1">http://books.google.com/books?id=pWOEk6Sk4YkC%5C&pgis=1</bib_extra>
<bib_extra key="Chapter">4</bib_extra>
<bib_extra key="Isbn">0805809511</bib_extra>
<bib_extra key="Publisher">Routledge</bib_extra>
<bib_extra key="Subtitle">principles and practices</bib_extra>
<bib_extra key="Url">http://books.google.com/books?id=pWOEk6Sk4YkC\&pgis=1</bib_extra>
</doc>
<doc>
<filename></filename>
<relative_filename></relative_filename>
<key>Festinger1957</key>
<notes></notes>
<bib_type>Book</bib_type>
<bib_doi></bib_doi>
<bib_title>A theory of cognitive dissonance</bib_title>
<bib_authors>Festinger, Leon</bib_authors>
<bib_journal></bib_journal>
<bib_volume></bib_volume>
<bib_number></bib_number>
<bib_pages></bib_pages>
<bib_year>1957</bib_year>
<bib_extra key="Bdsk-url-1">http://books.google.com/books?hl=en%5C&lr=%5C&id=voeQ-8CASacC%5C&pgis=1</bib_extra>
<bib_extra key="Isbn">0804709114</bib_extra>
<bib_extra key="Pages">291</bib_extra>
<bib_extra key="Publisher">Stanford University Press</bib_extra>
<bib_extra key="Series"></bib_extra>
<bib_extra key="Url">http://books.google.com/books?hl=en\&lr=\&id=voeQ-8CASacC\&pgis=1</bib_extra>
</doc>
<doc>
<filename></filename>
<relative_filename></relative_filename>
<key>Floridi2005a</key>
<notes></notes>
<bib_type>Article</bib_type>
<bib_doi></bib_doi>
<bib_title>Data and information quality: an information-theoretic perspective</bib_title>
<bib_authors>Floridi, L.</bib_authors>
<bib_journal>Computing and Information Systems</bib_journal>
<bib_volume></bib_volume>
<bib_number></bib_number>
<bib_pages></bib_pages>
<bib_year>2005</bib_year>
<bib_extra key="Date-added">2011-05-16 22:35:56 +1000</bib_extra>
<bib_extra key="Date-modified">2011-05-16 22:36:12 +1000</bib_extra>
</doc>
<doc>
<filename></filename>
<relative_filename></relative_filename>
<key>Floridi2004</key>
<notes></notes>
<bib_type>Article</bib_type>
<bib_doi></bib_doi>
<bib_title>Outline of a theory of strongly semantic information</bib_title>
<bib_authors>Floridi, L.</bib_authors>
<bib_journal>Minds and Machines</bib_journal>
<bib_volume></bib_volume>
<bib_number></bib_number>
<bib_pages></bib_pages>
<bib_year>2004</bib_year>
<bib_extra key="Date-added">2011-05-16 22:35:18 +1000</bib_extra>
<bib_extra key="Date-modified">2011-05-16 22:35:39 +1000</bib_extra>
</doc>
<doc>
<filename></filename>
<relative_filename></relative_filename>
<key>Floridi2003</key>
<notes></notes>
<bib_type>Article</bib_type>
<bib_doi></bib_doi>
<bib_title>From data to semantic information.</bib_title>
<bib_authors>Floridi, L.</bib_authors>
<bib_journal>Entropy</bib_journal>
<bib_volume></bib_volume>
<bib_number></bib_number>
<bib_pages></bib_pages>
<bib_year>2003</bib_year>
<bib_extra key="Date-added">2011-05-16 22:33:55 +1000</bib_extra>
<bib_extra key="Date-modified">2011-05-16 22:34:31 +1000</bib_extra>
</doc>
<doc>
<filename></filename>
<relative_filename></relative_filename>
<key>Floridi2002</key>
<notes></notes>
<bib_type>Article</bib_type>
<bib_doi></bib_doi>
<bib_title>On the intrinsic value of information objects and the infosphere</bib_title>
<bib_authors>Floridi, L.</bib_authors>
<bib_journal>Ethics and Information Technology</bib_journal>
<bib_volume></bib_volume>
<bib_number></bib_number>
<bib_pages></bib_pages>
<bib_year>2002</bib_year>
<bib_extra key="Bdsk-url-1">http://www.springerlink.com/index/QK4X81V351157323.pdf</bib_extra>
<bib_extra key="Url">http://www.springerlink.com/index/QK4X81V351157323.pdf</bib_extra>
</doc>
<doc>
<filename></filename>
<relative_filename></relative_filename>
<key>FLORIDI2005</key>
<notes></notes>
<bib_type>Article</bib_type>
<bib_doi></bib_doi>
<bib_title>Is Semantic Information Meaningful Data?</bib_title>
<bib_authors>Floridi, L.</bib_authors>
<bib_journal>Philosophy and Phenomenological Research</bib_journal>
<bib_volume>70</bib_volume>
<bib_number>2</bib_number>
<bib_pages>351-370</bib_pages>
<bib_year>2005</bib_year>
<bib_extra key="Bdsk-url-1">http://doi.wiley.com/10.1111/j.1933-1592.2005.tb00531.x</bib_extra>
<bib_extra key="Bdsk-url-2">http://dx.doi.org/10.1111/j.1933-1592.2005.tb00531.x</bib_extra>
<bib_extra key="Doi">10.1111/j.1933-1592.2005.tb00531.x</bib_extra>
<bib_extra key="Issn">0031-8205</bib_extra>
<bib_extra key="Month">mar</bib_extra>
<bib_extra key="Url">http://doi.wiley.com/10.1111/j.1933-1592.2005.tb00531.x</bib_extra>
</doc>
<doc>
<filename></filename>
<relative_filename></relative_filename>
<key>Frodeman2009</key>
<notes></notes>
<bib_type>Article</bib_type>
<bib_doi></bib_doi>
<bib_title>The Seasons of our Discontent</bib_title>
<bib_authors>Frodeman, Robert and Rowland, Jennifer</bib_authors>
<bib_journal>ALIF</bib_journal>
<bib_volume>29</bib_volume>
<bib_number></bib_number>
<bib_pages></bib_pages>
<bib_year>2009</bib_year>
<bib_extra key="Bdsk-url-1">http://csid.unt.edu/files/Frodeman%20final%20-%20Alif.pdf</bib_extra>
<bib_extra key="File">:Volumes/Data/localDataNoBackup/z3235728/Mendeley/Frodeman, Rowland/ALIF/Frodeman, Rowland - 2009 - The Seasons of our Discontent.pdf:pdf</bib_extra>
<bib_extra key="Url">http://csid.unt.edu/files/Frodeman final - Alif.pdf</bib_extra>
</doc>
<doc>
<filename></filename>
<relative_filename></relative_filename>
<key>Galison1997</key>
<notes></notes>
<bib_type>Book</bib_type>
<bib_doi></bib_doi>
<bib_title>Image and logic: A material culture of microphysics</bib_title>
<bib_authors>Galison, P. L.</bib_authors>
<bib_journal></bib_journal>
<bib_volume></bib_volume>
<bib_number></bib_number>
<bib_pages></bib_pages>
<bib_year>1997</bib_year>
<bib_extra key="Bdsk-url-1">http://books.google.com/books?hl=en%5C&lr=%5C&id=6Gcu92U8CwYC%5C&oi=fnd%5C&pg=PR13%5C&dq=Image+and+logic:+A+material+culture+of+microphysics%5C&ots=8VXZgQdHDa%5C&sig=J2jrjTapJ76UrD4lgkhp0Dea1Oc</bib_extra>
<bib_extra key="File">:Volumes/Data/localDataNoBackup/z3235728/Mendeley/Galison/Unknown/Galison - 1997 - Image and logic A material culture of microphysics.html:html</bib_extra>
<bib_extra key="Publisher">University of Chicago Press</bib_extra>
<bib_extra key="Series"></bib_extra>
<bib_extra key="Shorttitle">Image and logic</bib_extra>
<bib_extra key="Url">http://books.google.com/books?hl=en\&lr=\&id=6Gcu92U8CwYC\&oi=fnd\&pg=PR13\&dq=Image+and+logic:+A+material+culture+of+microphysics\&ots=8VXZgQdHDa\&sig=J2jrjTapJ76UrD4lgkhp0Dea1Oc</bib_extra>
</doc>
<doc>
<filename></filename>
<relative_filename></relative_filename>
<key>Garfield1980</key>
<notes></notes>
<bib_type>Article</bib_type>
<bib_doi></bib_doi>
<bib_title>Is Information Retrieval in the Arts and Humanities Inherently Different from That in Science?: The Effect That ISI’S Citation Index for the Arts and Humanities Is Expected to Have on Future Scholarship</bib_title>
<bib_authors>Garfield, Eugene</bib_authors>
<bib_journal>The Library Quarterly</bib_journal>
<bib_volume>50</bib_volume>
<bib_number>1</bib_number>
<bib_pages>40-57</bib_pages>
<bib_year>1980</bib_year>
<bib_extra key="Bdsk-url-1">http://www.jstor.org/stable/4307182</bib_extra>
<bib_extra key="Publisher">The University of Chicago Press</bib_extra>
<bib_extra key="Url">http://www.jstor.org/stable/4307182</bib_extra>
</doc>
<doc>
<filename></filename>
<relative_filename></relative_filename>
<key>Gorman2002</key>
<notes></notes>
<bib_type>Article</bib_type>
<bib_doi></bib_doi>
<bib_title>Levels of expertise and trading zones: A framework for multidisciplinary collaboration</bib_title>
<bib_authors>Gorman, M. E.</bib_authors>
<bib_journal>Social Studies of Science</bib_journal>
<bib_volume></bib_volume>
<bib_number></bib_number>
<bib_pages></bib_pages>
<bib_year>2002</bib_year>
<bib_extra key="Bdsk-url-1">http://www.jstor.org/stable/3183060</bib_extra>
<bib_extra key="Url">http://www.jstor.org/stable/3183060</bib_extra>
</doc>
<doc>
<filename></filename>
<relative_filename></relative_filename>
<key>GREENE1987</key>
<notes></notes>
<bib_type>Article</bib_type>
<bib_doi></bib_doi>
<bib_title>Stakeholder participation in evaluation design: Is it worth the effort?</bib_title>
<bib_authors>GREENE, J.</bib_authors>
<bib_journal>Evaluation and Program Planning</bib_journal>
<bib_volume>10</bib_volume>
<bib_number>4</bib_number>
<bib_pages>379-394</bib_pages>
<bib_year></bib_year>
<bib_extra key="Abstract">Using a utilization-oriented participatory evaluation case study methodology, this research project is investigating (a) the hypothesized link between participation and evaluation use, (b) the theoretical and operational dimensions of participatory evaluation, and (c) the possible conflicts between use and quality within participatory approaches to evaluation. This paper reports on the design phase of two case study evaluations being conducted in cooperation with two small local human service agencies. The participatory design process used is described, and the nature and meaningfulness of stakeholder participation in this process is reviewed. A concluding assessment of the value of stakeholder participation in evaluation design yields a qualified "yes.”, bdsk-url-1 = http://dx.doi.org/10.1016/0149-7189(87)90010-3, doi = 10.1016/0149-7189(87)90010-3, issn = 01497189, url = http://dx.doi.org/10.1016/0149-7189(87)90010-3, year = 1987 </bib_extra>
</doc>
<doc>
<filename></filename>
<relative_filename></relative_filename>
<key>Harper</key>
<notes></notes>
<bib_type>Misc</bib_type>
<bib_doi></bib_doi>
<bib_title>Online Etymology Dictionary</bib_title>
<bib_authors>Harper, Douglas</bib_authors>
<bib_journal></bib_journal>
<bib_volume></bib_volume>
<bib_number></bib_number>
<bib_pages></bib_pages>
<bib_year>2011</bib_year>
<bib_extra key="Annote">undefined</bib_extra>
<bib_extra key="Bdsk-url-1">http://www.etymonline.com/index.php?term=data</bib_extra>
<bib_extra key="Date-modified">2011-05-16 23:30:09 +1000</bib_extra>
<bib_extra key="File">:Volumes/Data/localDataNoBackup/z3235728/Mendeley/Harper/Unknown/Harper - Unknown - Online Etymology Dictionary.html:html</bib_extra>
<bib_extra key="Url">http://www.etymonline.com/index.php?term=data</bib_extra>
</doc>
<doc>
<filename></filename>
<relative_filename></relative_filename>
<key>Howard2011</key>
<notes></notes>
<bib_type>MastersThesis</bib_type>
<bib_doi></bib_doi>
<bib_title>Philosophy and the Development of a Biologically Derived Artificial Intelligence:An Examination of Cognitive and Neurological Methodology</bib_title>
<bib_authors>Howard, Catherine</bib_authors>
<bib_journal></bib_journal>
<bib_volume></bib_volume>
<bib_number></bib_number>
<bib_pages></bib_pages>
<bib_year>2011</bib_year>
<bib_extra key="School">University of New South Wales</bib_extra>
</doc>
<doc>
<filename></filename>
<relative_filename></relative_filename>
<key>Hurley2003</key>
<notes></notes>
<bib_type>Article</bib_type>
<bib_doi></bib_doi>
<bib_title>Post Office Box Addresses: A Challenge for Geographic Information System-Based Studies</bib_title>
<bib_authors>Hurley, Susan E. and Saunders, Theresa M. and Nivas, Rachna and Hertz, Andrew and Reynolds, Peggy</bib_authors>
<bib_journal>Epidemiology</bib_journal>
<bib_volume>14</bib_volume>
<bib_number>4</bib_number>
<bib_pages></bib_pages>
<bib_year>2003</bib_year>
<bib_extra key="Date-added">2011-05-16 23:15:08 +1000</bib_extra>
<bib_extra key="Date-modified">2011-05-16 23:29:19 +1000</bib_extra>
</doc>
<doc>
<filename></filename>
<relative_filename></relative_filename>
<key>James2007</key>
<notes></notes>
<bib_type>Book</bib_type>
<bib_doi></bib_doi>
<bib_title>Pragmatism: A New Name for Some Old Ways of Thinking</bib_title>
<bib_authors>James, William</bib_authors>
<bib_journal></bib_journal>
<bib_volume></bib_volume>
<bib_number></bib_number>
<bib_pages></bib_pages>
<bib_year>2007</bib_year>
<bib_extra key="Abstract">Pragmatism: A New Name for Some Old Ways of Thinking is a book by American psychologist and philosopher William James that focuses on his belief in pragmatism, which is considred to be the ability to forsee practical consequences or real effects as vital components of meaning as well as truth. Pragmatism is a key work for those studying the ideas related the pragmatic movement as well as those who are interested in the writings of William James.</bib_extra>
<bib_extra key="Bdsk-url-1">http://books.google.com/books?id=5ahtEJESjTQC%5C&pgis=1</bib_extra>
<bib_extra key="Bdsk-url-2">http://books.google.com/books?id=5ahtEJESjTQC%5C&pgis=1</bib_extra>
<bib_extra key="Isbn">1599867540</bib_extra>
<bib_extra key="Pages">184</bib_extra>
<bib_extra key="Publisher">Filiquarian Publishing, LLC.</bib_extra>
<bib_extra key="Series"></bib_extra>
<bib_extra key="Url">http://books.google.com/books?id=5ahtEJESjTQC\&pgis=1</bib_extra>
</doc>
<doc>
<filename></filename>
<relative_filename></relative_filename>
<key>Jones</key>
<notes></notes>
<bib_type>Article</bib_type>
<bib_doi></bib_doi>
<bib_title>Rediscovering Communication</bib_title>
<bib_authors>Jones, C.</bib_authors>
<bib_journal>uxmatters.com</bib_journal>
<bib_volume></bib_volume>
<bib_number></bib_number>
<bib_pages></bib_pages>
<bib_year>2007</bib_year>
<bib_extra key="Bdsk-url-1">http://www.uxmatters.com/mt/archives/2007/08/rediscovering-communication.php</bib_extra>
<bib_extra key="Url">http://www.uxmatters.com/mt/archives/2007/08/rediscovering-communication.php</bib_extra>
</doc>
<doc>
<filename></filename>
<relative_filename></relative_filename>
<key>Jones2006</key>
<notes></notes>
<bib_type>Book</bib_type>
<bib_doi></bib_doi>
<bib_title>Internet Slang Dictionary</bib_title>
<bib_authors>Jones, Ryan</bib_authors>
<bib_journal></bib_journal>
<bib_volume></bib_volume>
<bib_number></bib_number>
<bib_pages></bib_pages>
<bib_year>2006</bib_year>
<bib_extra key="Abstract">An authoritative guide to understanding internet slang and netspeak. Internet Slang Dictionary serves as a reference to anybody who becomes confused when looking at instant messages, chat rooms, or forums.This comprehensive compilation internet slang also includes tips for parents and other insights into internet grammar.</bib_extra>
<bib_extra key="Bdsk-url-1">http://books.google.com/books?hl=en%5C&lr=%5C&id=1JmTUI-rrK4C%5C&pgis=1</bib_extra>
<bib_extra key="Isbn">1847287522</bib_extra>
<bib_extra key="Pages">172</bib_extra>
<bib_extra key="Publisher">Lulu.com</bib_extra>
<bib_extra key="Series"></bib_extra>
<bib_extra key="Url">http://books.google.com/books?hl=en\&lr=\&id=1JmTUI-rrK4C\&pgis=1</bib_extra>
</doc>
<doc>
<filename></filename>
<relative_filename></relative_filename>
<key>Kipping2002</key>
<notes></notes>
<bib_type>Inbook</bib_type>
<bib_doi></bib_doi>
<bib_title>The Burden of Otheress: Limits of Consultancy Intervention in Historical Case Studies</bib_title>
<bib_authors>Kipping, Matthias and Armbruster, Thomas</bib_authors>
<bib_journal></bib_journal>
<bib_volume></bib_volume>
<bib_number></bib_number>
<bib_pages>267</bib_pages>
<bib_year>2002</bib_year>
<bib_extra key="Abstract">This book provides insight and concrete knowledge and an international perspective into the growing field of Consulting. Each chapter is based on original research and offers a wide variety of real-life situations from different countries, consulting firms and client corporations. Management Consulting: Emergence and Dynamics of a Knowledge Industry, is divided into three distinctive parts: ’Historical Perspectives on the Consulting Industry’, ’Organizational Perspectives on the Consultancy Firm’, and Relationship Perspectives on the Consultancy Project’. This volume, with the help of an exceptional team of contributors distinguishes and examines consulting at three levels of analysis: industry, organization and project.</bib_extra>
<bib_extra key="Bdsk-url-1">http://books.google.com/books?hl=en%5C&lr=%5C&id=ba%5C_LE10UhagC%5C&pgis=1</bib_extra>
<bib_extra key="Chapter"></bib_extra>
<bib_extra key="Isbn">0199242852</bib_extra>
<bib_extra key="Publisher">Oxford University Press</bib_extra>
<bib_extra key="Subtitle">emergence and dynamics of a knowledge industry</bib_extra>
<bib_extra key="Url">http://books.google.com/books?hl=en\&lr=\&id=ba\_LE10UhagC\&pgis=1</bib_extra>
</doc>
<doc>
<filename></filename>
<relative_filename></relative_filename>
<key>Knobe2007</key>
<notes></notes>
<bib_type>Article</bib_type>
<bib_doi></bib_doi>
<bib_title>Experimental Philosophy</bib_title>
<bib_authors>Knobe, Joshua</bib_authors>
<bib_journal>Philosophy Compass</bib_journal>
<bib_volume>2</bib_volume>
<bib_number>1</bib_number>
<bib_pages>81-92</bib_pages>
<bib_year>2007</bib_year>
<bib_extra key="Bdsk-url-1">http://doi.wiley.com/10.1111/j.1747-9991.2006.00050.x</bib_extra>
<bib_extra key="Bdsk-url-2">http://dx.doi.org/10.1111/j.1747-9991.2006.00050.x</bib_extra>
<bib_extra key="Doi">10.1111/j.1747-9991.2006.00050.x</bib_extra>
<bib_extra key="Issn">1747-9991</bib_extra>
<bib_extra key="Month">jan</bib_extra>
<bib_extra key="Url">http://doi.wiley.com/10.1111/j.1747-9991.2006.00050.x</bib_extra>
</doc>
<doc>
<filename></filename>
<relative_filename></relative_filename>
<key>Lakoff2003</key>
<notes></notes>
<bib_type>Book</bib_type>
<bib_doi></bib_doi>
<bib_title>Metaphors we live by</bib_title>
<bib_authors>Lakoff, G. and Johnson, M.</bib_authors>
<bib_journal></bib_journal>
<bib_volume></bib_volume>
<bib_number></bib_number>
<bib_pages></bib_pages>
<bib_year>2003</bib_year>
<bib_extra key="Bdsk-url-1">http://books.google.com.au/books?hl=en%5C&lr=%5C&id=29gyLFV6VkQC%5C&oi=fnd%5C&pg=PA103%5C&dq=metaphors+we+live+by%5C&ots=Cql5pndygj%5C&sig=RPgEHQlr0xsv-pKZCd6wmK7RMjY</bib_extra>
<bib_extra key="Date-modified">2011-05-14 16:34:52 +1000</bib_extra>
<bib_extra key="File">:Volumes/Data/localDataNoBackup/z3235728/Mendeley/Lakoff, Johnson/Unknown/Lakoff, Johnson - 1980 - Metaphors we live by.pdf:pdf</bib_extra>
<bib_extra key="Publisher">The University of Chicago Press</bib_extra>
<bib_extra key="Series"></bib_extra>
<bib_extra key="Url">http://books.google.com.au/books?hl=en\&lr=\&id=29gyLFV6VkQC\&oi=fnd\&pg=PA103\&dq=metaphors+we+live+by\&ots=Cql5pndygj\&sig=RPgEHQlr0xsv-pKZCd6wmK7RMjY</bib_extra>
</doc>
<doc>
<filename></filename>
<relative_filename></relative_filename>
<key>Larsen</key>
<notes></notes>
<bib_type>Article</bib_type>
<bib_doi></bib_doi>
<bib_title>A formal semantics of data flow diagrams</bib_title>
<bib_authors>Larsen, P. G.</bib_authors>
<bib_journal>Formal aspects of Computing</bib_journal>
<bib_volume></bib_volume>
<bib_number></bib_number>
<bib_pages></bib_pages>
<bib_year>1993</bib_year>
<bib_extra key="Bdsk-url-1">http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.57.5990%5C&rep=rep1%5C&type=pdf</bib_extra>
<bib_extra key="Date-modified">2011-05-14 16:25:39 +1000</bib_extra>
<bib_extra key="File">:Volumes/Data/localDataNoBackup/z3235728/Mendeley/Larsen/Formal aspects of Computing/Larsen - Unknown - A formal semantics of data flow diagrams.pdf:pdf</bib_extra>
<bib_extra key="Url">http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.57.5990\&rep=rep1\&type=pdf</bib_extra>
</doc>
<doc>
<filename></filename>
<relative_filename></relative_filename>
<key>Latour2005</key>
<notes></notes>
<bib_type>Book</bib_type>
<bib_doi></bib_doi>
<bib_title>Reassembling the social: an introduction to actor-network-theory</bib_title>
<bib_authors>Latour, Bruno</bib_authors>
<bib_journal></bib_journal>
<bib_volume></bib_volume>
<bib_number></bib_number>
<bib_pages></bib_pages>
<bib_year>2005</bib_year>
<bib_extra key="Abstract">Reassembling the Social is a fundamental challenge from one of the world’s leading social theorists to how we understand society and the ’social’. Bruno Latour’s contention is that the word ’social’ as used by Social Scientists has become laden with assumptions to the point where it has become a misnomer. When the adjective is applied to a phenomenon, it is used to indicate a stabilized state of affairs, a bundle of ties that in due course may be used to account for another phenomenon. Latour also finds the word used as if it described a type of material, in a comparable way to an adjective such as ’wooden’ or ’steely’. Rather than simply indicating what is already assembled together, it is now used in a way that makes assumptions about the nature of what is assembled. It has become a word that designates two distinct things: a process of assembling: and a type of material, distinct from others. Latour shows why ’the social’ cannot be thought of as a kind of material or domain, and disputes attempts to provide a ’social explanation’ of other states of affairs. While these attempts have been productive (and probably necessary) in the past, the very success of the social sciences mean that they are largely no longer so. At the present stage it is no longer possible to inspect the precise constituents entering the social domain. Latour returns to the original meaning of ’the social’ to redefine the notion and allow it to trace connections again. It will then be possible to resume the traditional goal of the social sciences, but using more refined tools. Drawing on his extensive work examining the ’assemblages’ of nature, Latour finds it necessary to scrutinize thoroughly the exact content of what is assembled under the umbrella of Society. This approach, a ’sociology of associations’ has become known as Actor-Network-Theory, and this book is an essential introduction both for those seeking to understand Actor-Network-Theory, or the ideas of one of its most influential proponents.</bib_extra>
<bib_extra key="Bdsk-url-1">http://books.google.com/books?hl=en%5C&lr=%5C&id=DlgNiBaYo-YC%5C&pgis=1</bib_extra>
<bib_extra key="Isbn">0199256047</bib_extra>
<bib_extra key="Pages">301</bib_extra>
<bib_extra key="Publisher">Oxford University Press</bib_extra>
<bib_extra key="Series"></bib_extra>
<bib_extra key="Url">http://books.google.com/books?hl=en\&lr=\&id=DlgNiBaYo-YC\&pgis=1</bib_extra>
</doc>
<doc>
<filename></filename>
<relative_filename></relative_filename>
<key>Leary2005</key>
<notes></notes>
<bib_type>Book</bib_type>
<bib_doi></bib_doi>
<bib_title>Handbook of self and identity</bib_title>
<bib_authors>Leary, Mark R. and Tangney, June Price</bib_authors>
<bib_journal></bib_journal>
<bib_volume></bib_volume>
<bib_number></bib_number>
<bib_pages></bib_pages>
<bib_year>2005</bib_year>
<bib_extra key="Abstract">The self has emerged as a central construct in many domains of behavioral and social science. This state-of-the-science volume brings together an array of leading authorities to comprehensively review theory and research in this burgeoning area. Coverage includes the content, structure, and organization of the self; processes related to agency, regulation, and self-control; self-evaluation and self-related motivation and emotion; interpersonal and cultural issues; and self-development across evolutionary time and the lifespan. Also examined are ways that the development of the self can go awry, resulting in emotional and behavioral problems.</bib_extra>
<bib_extra key="Bdsk-url-1">http://books.google.com/books?id=vafgWfgxUK8C%5C&pgis=1</bib_extra>
<bib_extra key="Isbn">1593852371</bib_extra>
<bib_extra key="Pages">703</bib_extra>
<bib_extra key="Publisher">Guilford Press</bib_extra>
<bib_extra key="Series"></bib_extra>
<bib_extra key="Url">http://books.google.com/books?id=vafgWfgxUK8C\&pgis=1</bib_extra>
</doc>
<doc>
<filename></filename>
<relative_filename></relative_filename>
<key>Levin-Rozalis2008</key>
<notes></notes>
<bib_type>Article</bib_type>
<bib_doi></bib_doi>
<bib_title>Searching for the unknowable: A process of detection–-Abductive research generated by projective techniques</bib_title>
<bib_authors>Levin-Rozalis, M.</bib_authors>
<bib_journal>International Journal of Qualitative …</bib_journal>
<bib_volume></bib_volume>
<bib_number></bib_number>
<bib_pages></bib_pages>
<bib_year>2008</bib_year>
<bib_extra key="Bdsk-url-1">http://ejournals.library.ualberta.ca/index.php/IJQM/article/viewArticle/4467</bib_extra>
<bib_extra key="Url">http://ejournals.library.ualberta.ca/index.php/IJQM/article/viewArticle/4467</bib_extra>
</doc>