Visuo-Spatial Programming: Visualising Software Structure to Aid the Integration of Egocentric Software Navigation Into an Al

Total Page:16

File Type:pdf, Size:1020Kb

Visuo-Spatial Programming: Visualising Software Structure to Aid the Integration of Egocentric Software Navigation Into an Al ! Visuo-spatial Programming: Visualising software structure to aid the integration of egocentric software navigation into an allocentric spatial cognitive map that supports software navigation and composition Daniel Robert Bradley BInfTech (Honours), GDipMolBiol, GCResComm A thesis submitted for the degree of Doctor of Philosophy at The University of Queensland in 2016 School of Information Technology and Electrical Engineering Abstract Despite extensive research into the cognitive processes used by programmers to form a functional mental model of software during program comprehension, there has been little research into how the structure of software is represented within long-term spatial memory. It is conjectured that this lack of emphasis on the spatial aspects of code has inadvertently resulted in mainstream software development environments not adequately supporting relative navigation of the software call graph, which results in programmer disorientation. While software understanding tools for visualising object-oriented software have been developed that leverage spatial memory, opening a class to reveal its source code usually obscures the spatial representation and also places the source code in a single common location that has no spatial relationship to the code just navigated from. This is likely to interfere with the integration of spatial information related to individual source code files into a common cognitive map within spatial memory. A key challenge that tool designers face is that, for any non-trivial program, it is impossible to represent all of the source code of a program on the screen at once. Recent prototype environments have used a variety of strategies, including using a semantic zoom that allows classes to be represented with differing amounts of information visible, allowing fragments of classes to be arranged on independent surfaces, and representing individual methods as bubbles that can be grouped within a scrollable workspace. This project has taken a different approach by conferring a spatial structure on source code that is based on its emergent structure, and implementing a visualisation technique that uses this structure to provide a consistent spatial representation of methods. The method-flow visualisation technique has been developed to support short-term spatial memory by placing editor columns within a scrollable flow view that ensures each column maintains a consistent spatial position if scrolled. As the programmer navigates a call graph by following hyperlink-enabled method calls, editor columns are added to the right- hand end of the flow view. At any time, the programmer can scroll the flow view to see previously traversed methods. It is theorised that method-flow allows short-term visuo- spatial memory to be refreshed, and provides more time for methods to be integrated into a cognitive map within spatial memory. Method-flow has been implemented as the Visuocode prototype software development environment and has been both informally and formally evaluated. Formal evaluation consisted of two qualitative think-aloud studies — the first of software navigation, and the second of program composition. Both formal studies asked each participant to perform a number of programming tasks using both Eclipse and Visuocode. During the studies, the screen activity of participants was recorded using screen-capture software, and later analysed to determine the number and type of navigations performed during each session. During both studies, participants performed more relative navigations while using Visuocode than while using Eclipse, and performed more direct and scrolling navigations while using Eclipse than while using Visuocode. While using Eclipse, participants tended to open classes, and then scroll down through them to discover class interrelationships – forming a mental model based on the program’s composition hierarchy. In contrast, while using Visuocode, participants tended to open the outline of a class, and then use method- flow to traverse the call graph to discover how classes interrelated – forming a mental model based on the program’s call graph. Further research is required to determine the advantages and disadvantages of either form of mental model. It is concluded that the method-flow visualisation technique is both intuitive to use, and also useful, as all participants used method-flow extensively during at least one activity. Method-flow was extensively used to navigate code during the software navigation study, and during such navigation no participants were observed to become disoriented while backtracking. During the program composition study, although method-flow was mainly used to refer to Javadoc documentation, Visuocode functioned as an effective environment for composition — two out of the three participants who successfully completed a task did so using Visuocode. One issue with method-flow was identified. While using Visuocode during traversal of the call graph, participants are often not made aware of other methods that are contained within any classes traversed — analogous to a horse that is ‘blinkered’. After their sessions, one participant expressed feeling misled by method-flow, and another mentioned that it took a while for them to get used to not looking at whole source files. In conclusion, while method-flow is considered to be a promising technique for navigating software, the effects caused by being ‘blinkered’ need to better understood. Declaration by author This thesis is composed of my original work, and contains no material previously published or written by another person except where due reference has been made in the text. I have clearly stated the contribution by others to jointly-authored works that I have included in my thesis. I have clearly stated the contribution of others to my thesis as a whole, including statistical assistance, survey design, data analysis, significant technical procedures, professional editorial advice, and any other original research work used or reported in my thesis. The content of my thesis is the result of work I have carried out since the commencement of my research higher degree candidature and does not include a substantial part of work that has been submitted to qualify for the award of any other degree or diploma in any university or other tertiary institution. I have clearly stated which parts of my thesis, if any, have been submitted to qualify for another award. I acknowledge that an electronic copy of my thesis must be lodged with the University Library and, subject to the policy and procedures of The University of Queensland, the thesis be made available for research and study in accordance with the Copyright Act 1968 unless a period of embargo has been approved by the Dean of the Graduate School. I acknowledge that copyright of all material contained in my thesis resides with the copyright holder(s) of that material. Where appropriate I have obtained copyright permission from the copyright holder to reproduce material in this thesis. Publications during candidature Daniel R. Bradley and Ian J. Hayes (2013) Visuocode: a software development environment that supports spatial navigation and composition. In the Proceedings of the 1st IEEE Working Conference on Software Visualization, Eindhoven, 28-29 September, 2013. Publications included in this thesis No publications included Contributions by others to the thesis No contributions by others Statement of parts of the thesis submitted to qualify for the award of another degree None Acknowledgements I would like to thank the University of Queensland for providing me the opportunity and resources to study for a PhD. During my candidature the University allowed me to enrol in and complete a Graduate Certificate in Research Commercialisation, and also provided me with an associated financial grant that I was very grateful for. I would like to thank all the staff and students who provided me with friendship and support during my time at the School of Information Technology and Electrical Engineering. Specifically, I would like to thank the people below, without whom I would not have been able to complete this thesis. I would like to dedicate this thesis to my first primary advisor David Carrington, who originally supported my application as a PhD student, but who sadly passed away during my candidature. I would like to express my thanks to Ralf Muhlberger who took me on as a then part-time research student and gave me valuable guidance that saw me pass my confirmation. I would like to thank Janet Wiles who encouraged and supported me in applying for and receiving a UQ ResTeach scholarship, and Peter Lindsay who provided me with part-time employment at the ARC Centre for Complex Systems — these positions provided me with much needed financial stability during the first several years of the thesis. I would like to gratefully thank Ian Hayes for taking me on and acting as my primary advisor through to submission and conferral — I very much appreciate the patience he has shown, and am thankful for the excellent and thorough feedback he has provided on numerous thesis drafts. I would like to thank Peter Robinson and Ben Matthews for acting as my associate advisors and for providing an extremely useful third perspective when presented with thesis drafts to read. I would also like to thank Stephen Viller for acting as my thesis committee chair, and I would like to thank Michael Bulmer for advice regarding the included statistical results. Finally, I would like
Recommended publications
  • The First Program: Little Crab
    CHAPTER 2 The first program: Little Crab topics: writing code: movement, turning, reacting to the screen edges concepts: source code, method call, parameter, sequence, if-statement In the previous chapter, we discussed how to use existing Greenfoot scenarios: We ­created objects, invoked methods, and played a game. Now we want to start to make our own game. 2.1 The Little Crab scenario The scenario we use for this chapter is called little-crab. You will find this scenario in the book-scenarios folder. The scenario you see should look similar to Figure 2.1. Exercise 2.1 Start Greenfoot and open the little-crab scenario. Place a crab into the world and run the program (click the Run button). What do you observe? (Remember: If the class icons on the right appear striped, you have to compile the project first.) On the right you see the classes in this scenario (Figure 2.2). We notice that there are the usual Greenfoot Actor and World classes, and subclasses called CrabWorld and Crab. The hierarchy (denoted by the arrows) indicates an is-a relationship (also called inher- itance): A crab is an actor, and the CrabWorld is a world. Initially, we will work only with the Crab class. We will talk a little more about the CrabWorld and Actor classes later on. If you have just done the exercise above, then you know the answer to the question “What do you observe?” It is: “nothing.” M02_KOLL4292_02_SE_C02.indd 17 2/3/15 7:39 PM 18 | Chapter 2 ■ The first program: Little Crab Figure 2.1 The Little Crab scenario Figure 2.2 The Little Crab classes The crab does not do anything when Greenfoot runs.
    [Show full text]
  • Hypertext Semiotics in the Commercialized Internet
    Hypertext Semiotics in the Commercialized Internet Moritz Neumüller Wien, Oktober 2001 DOKTORAT DER SOZIAL- UND WIRTSCHAFTSWISSENSCHAFTEN 1. Beurteiler: Univ. Prof. Dipl.-Ing. Dr. Wolfgang Panny, Institut für Informationsver- arbeitung und Informationswirtschaft der Wirtschaftsuniversität Wien, Abteilung für Angewandte Informatik. 2. Beurteiler: Univ. Prof. Dr. Herbert Hrachovec, Institut für Philosophie der Universität Wien. Betreuer: Gastprofessor Univ. Doz. Dipl.-Ing. Dr. Veith Risak Eingereicht am: Hypertext Semiotics in the Commercialized Internet Dissertation zur Erlangung des akademischen Grades eines Doktors der Sozial- und Wirtschaftswissenschaften an der Wirtschaftsuniversität Wien eingereicht bei 1. Beurteiler: Univ. Prof. Dr. Wolfgang Panny, Institut für Informationsverarbeitung und Informationswirtschaft der Wirtschaftsuniversität Wien, Abteilung für Angewandte Informatik 2. Beurteiler: Univ. Prof. Dr. Herbert Hrachovec, Institut für Philosophie der Universität Wien Betreuer: Gastprofessor Univ. Doz. Dipl.-Ing. Dr. Veith Risak Fachgebiet: Informationswirtschaft von MMag. Moritz Neumüller Wien, im Oktober 2001 Ich versichere: 1. daß ich die Dissertation selbständig verfaßt, andere als die angegebenen Quellen und Hilfsmittel nicht benutzt und mich auch sonst keiner unerlaubten Hilfe bedient habe. 2. daß ich diese Dissertation bisher weder im In- noch im Ausland (einer Beurteilerin / einem Beurteiler zur Begutachtung) in irgendeiner Form als Prüfungsarbeit vorgelegt habe. 3. daß dieses Exemplar mit der beurteilten Arbeit überein
    [Show full text]
  • An Affordable Modular Robotic Kit for Integrated Science, Technology, Engineering, and Math Education
    An Affordable Modular Robotic Kit for Integrated Science, Technology, Engineering, and Math Education © PHOTOCREDIT By Ekawahyu Susilo, Jianing Liu, Yasmin Alvarado Rayo, Ashley Melissa Peck, Pietro Valdastri, Justin Montenegro, and Mark Gonyea he demand for graduates in science, technology, Fischertechnik [6], are composed of libraries of engineering, and math (STEM) has steadily prefabricated parts that are not interoperable among kits increased in recent decades. In the United from different vendors. As recently surveyed in Kee [7], States alone, jobs for biomedical engineers are alternatives to these popular kits are either highly modular expected to increase by 62% by 2020, and jobs but very expensive (e.g., Kondo [8], Bioloid [9], Cubelets Tin software development and medical science are [10], K-Junior V2, and Kephera [11]) and unaffordable for expected to increase by 32% and 36%, respectively [1]. the majority of schools, or single-configuration and low- Combined with an insufficient number of students cost robots (e.g., AERObot [12], iRobot [13], and Boe-Bot enrolled in STEM fields, this will result in about 2.4 [14]) with a restricted number of activities possible. An million STEM job vacancies by 2018 [2]. Therefore, affordable solution that provides a number of increasing the number of STEM graduates is currently a interchangeable modules is littleBits [15]. This platform national priority for many IEEEgovernments worldwide. An offersProof a variety of sensing and actuation modules that use effective way to engage young minds in STEM disciplines is magnets to connect, but it lacks programmability, thus to introduce robotic kits into primary and secondary limiting students’ ability to learn about coding.
    [Show full text]
  • Metadefender Core V4.12.2
    MetaDefender Core v4.12.2 © 2018 OPSWAT, Inc. All rights reserved. OPSWAT®, MetadefenderTM and the OPSWAT logo are trademarks of OPSWAT, Inc. All other trademarks, trade names, service marks, service names, and images mentioned and/or used herein belong to their respective owners. Table of Contents About This Guide 13 Key Features of Metadefender Core 14 1. Quick Start with Metadefender Core 15 1.1. Installation 15 Operating system invariant initial steps 15 Basic setup 16 1.1.1. Configuration wizard 16 1.2. License Activation 21 1.3. Scan Files with Metadefender Core 21 2. Installing or Upgrading Metadefender Core 22 2.1. Recommended System Requirements 22 System Requirements For Server 22 Browser Requirements for the Metadefender Core Management Console 24 2.2. Installing Metadefender 25 Installation 25 Installation notes 25 2.2.1. Installing Metadefender Core using command line 26 2.2.2. Installing Metadefender Core using the Install Wizard 27 2.3. Upgrading MetaDefender Core 27 Upgrading from MetaDefender Core 3.x 27 Upgrading from MetaDefender Core 4.x 28 2.4. Metadefender Core Licensing 28 2.4.1. Activating Metadefender Licenses 28 2.4.2. Checking Your Metadefender Core License 35 2.5. Performance and Load Estimation 36 What to know before reading the results: Some factors that affect performance 36 How test results are calculated 37 Test Reports 37 Performance Report - Multi-Scanning On Linux 37 Performance Report - Multi-Scanning On Windows 41 2.6. Special installation options 46 Use RAMDISK for the tempdirectory 46 3. Configuring Metadefender Core 50 3.1. Management Console 50 3.2.
    [Show full text]
  • Blue, Bluej and Greenfoot
    Kent Academic Repository Full text document (pdf) Citation for published version Kölling, Michael (2016) Lessons from the Design of Three Educational Programming Environments: Blue, BlueJ and Greenfoot. International Journal of People-Oriented Programming, 4 (1). pp. 5-32. ISSN 2156-1796. DOI https://doi.org/10.4018/IJPOP.2015010102 Link to record in KAR http://kar.kent.ac.uk/56662/ Document Version Publisher pdf Copyright & reuse Content in the Kent Academic Repository is made available for research purposes. Unless otherwise stated all content is protected by copyright and in the absence of an open licence (eg Creative Commons), permissions for further reuse of content should be sought from the publisher, author or other copyright holder. Versions of research The version in the Kent Academic Repository may differ from the final published version. Users are advised to check http://kar.kent.ac.uk for the status of the paper. Users should always cite the published version of record. Enquiries For any further enquiries regarding the licence status of this document, please contact: [email protected] If you believe this document infringes copyright then please contact the KAR admin team with the take-down information provided at http://kar.kent.ac.uk/contact.html International Journal of People-Oriented Programming January-June 2015, Vol. 4, No. 1 Table of Contents SIKONL C I T L V PF EP iv Steve Goschnick, Swinburne University of Technology, Melbourne, Australia Leon Sterling, Swinburne University of Technology, Melbourne, Australia
    [Show full text]
  • Code Girl Tracey Acosta Santa Clara University
    Santa Clara University Scholar Commons Computer Engineering Senior Theses Engineering Senior Theses 6-1-2015 Code girl Tracey Acosta Santa Clara University Amanda Holl Santa Clara University Paige Rogalski Santa Clara University Follow this and additional works at: https://scholarcommons.scu.edu/cseng_senior Part of the Computer Engineering Commons Recommended Citation Acosta, Tracey; Holl, Amanda; and Rogalski, Paige, "Code girl" (2015). Computer Engineering Senior Theses. 43. https://scholarcommons.scu.edu/cseng_senior/43 This Thesis is brought to you for free and open access by the Engineering Senior Theses at Scholar Commons. It has been accepted for inclusion in Computer Engineering Senior Theses by an authorized administrator of Scholar Commons. For more information, please contact [email protected]. Code Girl by Tracey Acosta Amanda Holl Paige Rogalski Submitted in partial fulfillment of the requirements for the degrees of Bachelor of Science Computer Science and Engineering Bachelor of Science in Web Design and Engineering School of Engineering Santa Clara University Santa Clara, California June 1, 2015 Code Girl Tracey Acosta Amanda Holl Paige Rogalski Computer Science and Engineering Web Design and Engineering Santa Clara University June 1, 2015 ABSTRACT Despite the growing importance of technology and computing, fewer than 1% of women in college today choose to major in computer science.[1] Educational programs and games created to interest girls in computing, such as Girls Who Code and Made With Code, have been successful in engaging girls with interactive and creative learning environments, but they are too advanced for young girls to benefit from. To address the lack of educational, computer science games designed specifically for young girls, we developed a web-based application called Code Girl for girls age five to eight to customize their own avatar using Blockly, an open-source visual coding editor developed by Google.
    [Show full text]
  • An Improved Method for Selection of COTS Components Based on Quality Requirements
    An Improved Method for Selection of COTS Components Based on Quality Requirements Thesis submitted in partial fulfillment of the requirements for the award of degree of Master of Engineering in Software Engineering Submitted By Ravneet Kaur Grewal (800931018) Under the supervision of: Ms. Shivani Goel (Assistant Professor) COMPUTER SCIENCE AND ENGINEERING DEPARTMENT THAPAR UNIVERSITY PATIALA – 147004 June 2011 Acknowledgement I would like to express my sincere gratitude to all who have made possible the fulfillment of this work. Firstly, I would like to thank my guide, Ms. Shivani Goel, Assistant Professor, CSED, Thapar University, Patiala for the time, patience, guidance and invaluable advises she has given me not only while my thesis work but throughout the course. It was a great opportunity to work under her supervision. Then I would like to thank Dr. Maninder Singh, Head of the Department, CSED, Thapar University, Patiala for providing all the facilities and environment. I would also like to thank all my Teachers for their support and invaluable suggestions during the period of my work. I would also like to thank my parents for always supporting me in the tough and happy moments, for their never ending support and inspiration; and especially to my grandfather and my late grandmother for the love and care. Finally, I wish to thank my brother, Arman Singh Grewal and my friends, Arpita Sharma, Ravneet Kaur Chawla, Vaneet Kaur Bhatia, Amandeep Kaur Johar, Vishonika Kaushal , Ipneet Kaur, Sonam Chawla, Aradhana Majithia and Aarti Sharma for being with me through the good and the bad. Ravneet Kaur Grewal (800931018) i Abstract Commercial Off-The-Shelf (COTS) software products have received a lot of attention in the last decade.
    [Show full text]
  • Exploring Student Perceptions About the Use of Visual Programming
    Exploring student perceptions about the use of visual programming environments, their relation to student learning styles and their impact on student motivation in undergraduate introductory programming modules Maira Kotsovoulou (BSc, MSc) July 2019 This thesis is submitted in partial fulfilment of the requirements for the degree of Doctor of Philosophy. Department of Educational Research, Lancaster University, UK. Exploring student perceptions about the use of visual programming environments, their relation to student learning styles and their impact on student motivation in undergraduate introductory programming modules Maira Kotsovoulou (BSc, MSc) This thesis results entirely from my own work and has not been offered previously for any other degree or diploma. The word count is 57,743 excluding references. Signature ........................................................ Maira Kotsovoulou (BSc, MSc) Exploring student perceptions about the use of visual programming environments, their relation to student learning styles and their impact on student motivation in undergraduate introductory programming modules Doctor of Philosophy, July 2019 Abstract My research aims to explore how students perceive the usability and enjoyment of visual/block-based programming environments (VPEs), to what extent their learning styles relate to these perceptions and finally to what extent these tools facilitate student understanding of basic programming constructs and impact their motivation to learn programming. My overall methodological approach is a case study that explores the nature of potential benefits to using a VPE in an introductory programming module, within the specific context of an English-speaking institution of higher learning in Southern Europe. Part 1 of this research is a pilot study, which uses participatory action research as a methodological practice to identify which visual programming environment will be selected for the main study.
    [Show full text]
  • Robot Block-Based Programming
    Robot Block-Based Programming Teaching children how to program an interactive robot using a block-based programming language Robin van der Wal Jannelie de Vries Luka Miljak Marcel Kuipers Bachelor's Thesis Computer Science Delft University of Technology 1 This report is under embargo from July 2017 until February 2018 Delft University of Technology Bachelor end project Robot Block-based Programming Final Report Authors: Robin van der Wal Luka Miljak Jannelie de Vries Marcel Kuipers July 5, 2017 Bachelor Project Committee Coach name: Koen Hindriks Client name: Joost Broekens Cordinator name: Ir. O.W. Visser Abstract Robots play an increasingly large role in society and some material already exists that allows children to program robots in elementary school. However, this material often neglects the interactive capabilities of modern robots. The aim of this project is to teach children how to write interactive programs for a robot. For this purpose, a NAO robot is used, which is a humanoid robot with advanced features. Children can use a web interface to create programs in a Block-Based Programming Language, which is then sent and processed by the robot in an intelligent manner, using an agent-based sys- tem. Over the course of ten weeks, based on research done in the first two weeks, a web interface and an intelligent agent were developed. The BlocklyKids lan- guage implements many concepts you would expect from a programming lan- guage. Using these concepts, children can solve exercises that are presented to them in the web interface. Testing BlocklyKids in the classroom helped in the development of the product.
    [Show full text]
  • Processing and Integration of Sensory Information in Spatial Navigation
    Processing and Integration of Sensory Information in Spatial Navigation Dissertation zur Erlangung des Grades Doktor der Naturwissenschaften (Dr. rer. nat.) im Fachbereich Humanwissenschaften der Universität Osnabrück vorgelegt von Caspar Mathias Goeke Osnabrück, im November 2016 Supervisors 1st Supervisor: Prof. Dr. Peter König University of Osnabrück, Osnabrück, Germany 2nd Supervisor: Prof. Dr. Klaus Gramann Technical University of Berlin, Berlin, Germany 3rd Supervisor: Prof. Dr. Bernhard Riecke Simon Fraser University, Vancouver, Canada Additional Supervisor: Prof. Dr. Gordon Pipa University of Osnabrück, Osnabrück, Germany Curriculum Vitae Caspar Goeke Schepelerstr. 21, [email protected] 49074 Osnabrück +49 157 5521 5307 Germany Journal Articles Goeke, C., König, S. U., Meilinger, T., & König, P. (submitted). Are non- egocentric spatial reference frames compatible with enacted theories? Scientific Reports König, S. U., Schumann, F., Keyser, J., Goeke, C., Krause, C., Wache, S., … Peter, K. (in press). Learning New Sensorimotor Contingencies: Effects of Long- term Use of Sensory Augmentation on the Brain and Conscious Perception. PloS One. Goeke, C. M., Planera, S., Finger, H., & König, P. (2016). Bayesian Alternation during Tactile Augmentation. Frontiers in Behavioral Neuroscience, 10, 187. Goeke, C., Kornpetpanee, S., Köster, M., Fernández-Revelles, A. B., Gramann, K., & König, P. (2015). Cultural background shapes spatial reference frame proclivity. Scientific reports, 5. Goeke, C. M., König, P., & Gramann, K. (2013). Different strategies for spatial updating in yaw and pitch path integration. Front Behav Neurosci,7. Conference Contributions A Bayesian Approach to Multimodal Integration between Augmented and Innate Sensory Modalities, Osnabrück Computational Cognition Alliance Meeting, Osnabrück, Germany 2014 Cultural impact on strategy selection mechanisms, Annual Meeting of Experimental Psychologists, Gießen, Germany, 2014.
    [Show full text]
  • Navwell: a Simplified Virtual-Reality Platform for Spatial Navigation and Memory Experiments
    Behavior Research Methods (2020) 52:1189–1207 https://doi.org/10.3758/s13428-019-01310-5 BRIEF REPORT NavWell: A simplified virtual-reality platform for spatial navigation and memory experiments Sean Commins1 & Joseph Duffin2 & Keylor Chaves2 & Diarmuid Leahy2 & Kevin Corcoran2 & Michelle Caffrey1 & Lisa Keenan1 & Deirdre Finan2 & Conor Thornberry1 Published online: 21 October 2019 # The Psychonomic Society, Inc. 2019 Abstract Being able to navigate, recall important locations, and find the way home are critical skills, essential for survival for both humans and animals. These skills can be examined in the laboratory using the Morris water maze, often considered the gold standard test of animal navigation. In this task, animals are required to locate and recall the location of an escape platform hidden in a pool filled with water. Because animals can not see the platform directly, they must use various landmarks in the environment to escape. With recent advances in technology and virtual reality (VR), many tasks originally used in the animal literature can now be translated for human studies. The virtual water maze task is no exception. However, a number of issues are associated with these mazes, including cost, lack of flexibility, and lack of standardization in terms of experimental designs and procedures. Here we present a virtual water maze system (NavWell) that is readily downloadable and free to use. The system allows for the easy design of experiments and the testing of participants on a desktop computer or fully immersive VR environment. The data from four independent experiments are presented in order to validate the software. From these experiments, a set of procedures for use with a number of well-known memory tests is suggested.
    [Show full text]
  • Ibtihaj Muhammad's
    Featuring 484 Industry-First Reviews of Fiction, Nonfiction, Children'sand YA Books KIRKUSVOL. LXXXVI, NO. 15 | 1 AUGUST 2018 REVIEWS U.S. Olympic medalist Ibtihaj Muhammad’s memoir, Proud, released simultaneously in two versions—one for young readers, another for adults—is thoughtful and candid. It’s also a refreshingly diverse Cinderella story at a time when anti-black and anti-Muslim sentiments are high. p. 102 from the editor’s desk: Chairman Excellent August Books HERBERT SIMON President & Publisher BY CLAIBORNE SMITH MARC WINKELMAN # Chief Executive Officer MEG LABORDE KUEHN [email protected] Photo courtesy Michael Thad Carter courtesy Photo Editor-in-Chief Winners Take All: The Elite Charade of Changing the World by Anana CLAIBORNE SMITH Giridharadas (Aug. 28): “Give a hungry man a fish, and you get to pat [email protected] Vice President of Marketing yourself on the back—and take a tax deduction. It’s a matter of some SARAH KALINA [email protected] irony, John Steinbeck once observed of the robber barons of the Gilded Managing/Nonfiction Editor ERIC LIEBETRAU Age, that they spent the first two-thirds of their lives looting the public [email protected] Fiction Editor only to spend the last third giving the money away. Now, writes politi- LAURIE MUCHNICK cal analyst and journalist Giridharadas, the global financial elite has [email protected] Children’s Editor reinterpreted Andrew Carnegie’s view that it’s good for society for VICKY SMITH [email protected] capitalists to give something back to a new formula: It’s good for busi- Young Adult Editor Claiborne Smith LAURA SIMEON ness to do so when the time is right, but not otherwise….A provocative [email protected] Staff Writer critique of the kind of modern, feel-good giving that addresses symptoms and not causes.” MEGAN LABRISE [email protected] Sweet Little Lies by Caz Frear (Aug.
    [Show full text]