COMP 3020: Human-Computer Interaction I Fall software engineering for HCI

Size: px
Start display at page:

Download "COMP 3020: Human-Computer Interaction I Fall software engineering for HCI"

Transcription

1

2 COMP 3020: Human-Computer Interaction I Fall 2017 software engineering for HCI James Young, with acknowledgements to Anthony Tang, Andrea Bunt, Pourang Irani, Julie Kientz, Saul Greenberg, Ehud Sharlin, Jake Wobbrock, Dave Hendry, Andy Ko, Jennifer Turns, & Mark Zachry

3 Layout: Challenges Comp

4 Hierarchical Layout A component is positioned relative to its parent Comp

5 Hierarchical Layout Comp

6 Containment Hierarchy Containment hierarchy or interactor tree Components can be contained within other components Used to determine where to send an event Comp

7 Containment Hierarchy Window File menu Middle/Left Panel Widgets Label West 1 Button West 2 Button West 3 Button Bottom Panel. South Bottom Comp

8 Aside: Hierarchy and Events If a button is pressed, does the button get the event, or the encapsulating window, or both? If both, in what order? Comp

9 Hierarchy and Events Bottom-up dispatch (bubbling) (floats up) the lowest in the hierarchy gets it first Widgets get a lot of power, and get first crack at it to act first, cancel an event, or propagate it up E.g., gmail can take events browser usually gets hotkeys Comp

10 Hierarchy and Events Top-down dispatch (capturing) the highest in the hierarchy gets it first, and then it works down Can globally manage your events e.g., a frame can filter which events hit its children. Unknown / less trusted plugin, e.g., website plugin COMP

11 Bubbling vs Capturing Not better or worse, just two different ways Know your system! Some systems, e.g., javascript/jquery, let you choose the order, or turn off propagation completely Comp

12 Layout: Challenges Window arrangement (size and position) is not known when you build interface Display resolution is not known Sometimes the content of window will not be known E.g., web browser at amazon, word lengths (localization), font sizes (accessibility), etc. Comp

13 Layout: Goals Windows are dynamic, can be resized Content may change Through any resize, we wish to: Maintain consistency in interface s presentation Preserve affordances communicated through interface s layout Preserve overall visual layout found to be ideal in user testing Need to dynamically modify allocation of space, locations of objects in interface Comp

14 Maintaining Layout Two broad approaches Manual Automatic/dynamic Comp

15 Manual or Fixed Layout Components are of fixed size and position Each component specifies its size Also specifies its position relative to the container Problems: form or a control that contains other controls Does not handle Advantages: Resizing Automatically generated, or variable interface content Simplicity Comp

16 Dynamic Layout Dynamic layout is a process of: Specifying components Specifying desired constraints for the components and their relationships with respect to one another i.e., Specifying the mathematical relationships between components of the interface Attempting to satisfy those constraints Comp

17 Dynamic Layout Dynamic layout has applications in: User interface design Document layout (eg, TeX) Information visualization Prefuse demo (Jeffrey Heer) Comp

18 Dynamic Layout Example Strategies Intrinsic size Variable intrinsic layout Struts and springs Comp

19 Intrinsic Size Size of component is determined by the size of the children Ask each child for its desired size Grow component until it fits the sum of the sizes Common examples in interfaces? Comp

20 Intrinsic Size Common Example Menus Issues: Doesn t support resizing What about expanding content? Comp

21 Intrinsic Size Intrinsic size layout and expanding content What happens when a menu needs to include additional items? What happens when a users enters more and more text in a text editor pane? Without restrictions on size, containers can grow too large for the available screen space Cascading menus and scrollbars help address these problems Comp

22 Variable Intrinsic Layout Layout determined in bottom-up and top-down phases a) Bottom-up phase: Container asks each child for its preferred, minimum, maximum sizes Values used to partition the container s space Here, the toolbox panel has to layout the children docked into it Asks them first for preferences, then calculates a target layout Comp

23 Variable Intrinsic Layout Layout determined in bottom-up and topdown phases b) Top-down phase: Based on calculations, children are sized and told to lay themselves out in space specified As container size changes, process repeats and children reshape themselves Comp

24 Struts and Springs Layout specified by marking things that should remained fixed vs. those that can stretch Strut defines a fixed length (width/height) Specifies invariant relationships in a layout Spring defines a space that pushes on nearby edges Specifies variable relationships Component A Comp B Spring Strut Comp

25 Struts and Springs Advantage: An easily accessible metaphor for people performing layout Disadvantage: Constraints can be difficult to manage Can end up with over constrained interfaces (e.g., only struts) Comp

26 Pagination / Responsive Design Interface should adapt with small changes. Dramatic reduction in window size requires tailored designs Comp

27 Layout Managers Provided by UI toolkits to simplify layout for the programmer Size and position of children determined by a set of rules / constraints Sometime children can provide size and alignment hints But layout manager has the final say Comp

28 Examples: Java Swing LayoutManagers Comp

29 Examples:.NET Anchoring Comp

30 Examples:.NET Docking TOP LEFT FILL RIGHT BOTTOM Comp

31 Layout: Web Early layouts used tables Problems: HTML describes data, not presentation HTML becomes messy At least 3 elements for one cell Can be difficult to get creative layouts Resizing / changing quickly becomes a mess Comp

32 Comp

33 Comp

34 Layout: Web Divs group content together hierarchically Use CSS properties like padding, margin, etc. to place content Can use % to support dynamic resizing Comp

35 Comp

36 Layout: MSIII project expectations Layout should not rely on specific window size (markers may use any size) Layout should resize gracefully (to a certain degree) Bottom line: don t completely ignore resizing, but do not emphasize this aspect in your prototyping Comp

37 Today s Messages: Layout Good layout involves both design and computational concerns Design Concerns Leveraging properties of perception to create structure Considering content and intended meaning when making grouping and alignment decisions Creating hierarchies to facilitate scanning, navigation, etc. Using grids to help organize screens and promote consistency Computational Concerns Algorithms needed to maintain optimal visual layout (as defined above) across multiple window sizes Algorithms differ in their complexity and flexibility Comp

COMP 3020: Human-Computer Interaction I Fall 2017

COMP 3020: Human-Computer Interaction I Fall 2017 COMP 3020: Human-Computer Interaction I Fall 2017 Layout James Young, with acknowledgements to Anthony Tang, Andrea Bunt, Pourang Irani, Julie Kientz, Saul Greenberg, Ehud Sharlin, Jake Wobbrock, Dave

More information

COMP 3020: Human-Computer Interaction I Fall 2017

COMP 3020: Human-Computer Interaction I Fall 2017 COMP 3020: Human-Computer Interaction I Fall 2017 Usability and User Experience Goals James Young, with acknowledgements to Anthony Tang, Andrea Bunt, Pourang Irani, Julie Kientz, Saul Greenberg, Ehud

More information

Announcements. Assignment 1 is posted. This is an individual assignment. Please read through it and bring any questions to class on Wed

Announcements. Assignment 1 is posted. This is an individual assignment. Please read through it and bring any questions to class on Wed Announcements Assignment 1 is posted Due Sept 23 by 5:00pm on UMLearn This is an individual assignment Please read through it and bring any questions to class on Wed COMP 3020 2 Help! I can t see stuff

More information

COMP 3020: Human-Computer Interaction I

COMP 3020: Human-Computer Interaction I reddit.com 1 2 COMP 3020: Human-Computer Interaction I Fall 2017 Prototype Lifetime James Young, with acknowledgements to Anthony Tang, Andrea Bunt, Pourang Irani, Julie Kientz, Saul Greenberg, Ehud Sharlin,

More information

NSERC, NSERC Aboriginal, Faculty of Science, Jack Prior and H.D Gesser Undergraduate Student Research Awards

NSERC, NSERC Aboriginal, Faculty of Science, Jack Prior and H.D Gesser Undergraduate Student Research Awards NSERC, NSERC Aboriginal, Faculty of Science, Jack Prior and H.D Gesser Undergraduate Student Research Awards DEADLINE: Friday, January 19, 2018 1st, 2nd, 3rd and 4th year Science undergraduate students..

More information

You can use this app to build a causal Bayesian network and experiment with inferences. We hope you ll find it interesting and helpful.

You can use this app to build a causal Bayesian network and experiment with inferences. We hope you ll find it interesting and helpful. icausalbayes USER MANUAL INTRODUCTION You can use this app to build a causal Bayesian network and experiment with inferences. We hope you ll find it interesting and helpful. We expect most of our users

More information

Lionbridge Connector for Hybris. User Guide

Lionbridge Connector for Hybris. User Guide Lionbridge Connector for Hybris User Guide Version 2.1.0 November 24, 2017 Copyright Copyright 2017 Lionbridge Technologies, Inc. All rights reserved. Published in the USA. March, 2016. Lionbridge and

More information

Documenting Patient Immunization. New Brunswick 2018/19

Documenting Patient Immunization. New Brunswick 2018/19 Documenting Patient Immunization New Brunswick 2018/19 Table of Contents Documenting Patient Immunization New Brunswick...3 Immunization Module Features...4 Configuration...5 Marketing Message Setup...6

More information

Clay Tablet Connector for hybris. User Guide. Version 1.5.0

Clay Tablet Connector for hybris. User Guide. Version 1.5.0 Clay Tablet Connector for hybris User Guide Version 1.5.0 August 4, 2016 Copyright Copyright 2005-2016 Clay Tablet Technologies Inc. All rights reserved. All rights reserved. This document and its content

More information

Documenting Patient Immunization. Ontario 2018/19

Documenting Patient Immunization. Ontario 2018/19 Documenting Patient Immunization Ontario 2018/19 Table of Contents Documenting Patient Immunization Ontario...3 Immunization Module Features...4 Configuration...5 Marketing Message Setup...6 Paper Mode...9

More information

Why Human-Centered Design Matters

Why Human-Centered Design Matters Reading Review: Article Why Human-Centered Design Matters -Dave Thomsen, Wanderful Media HUMAN CENTERED DESIGN a human-centered approach fuels the creation of products that resonate more deeply with an

More information

You can use this app to build a causal Bayesian network and experiment with inferences. We hope you ll find it interesting and helpful.

You can use this app to build a causal Bayesian network and experiment with inferences. We hope you ll find it interesting and helpful. icausalbayes USER MANUAL INTRODUCTION You can use this app to build a causal Bayesian network and experiment with inferences. We hope you ll find it interesting and helpful. We expect most of our users

More information

QuantiPhi for RL78 and MICON Racing RL78

QuantiPhi for RL78 and MICON Racing RL78 QuantiPhi for RL78 and MICON Racing RL78 Description: Using cutting-edge model-based design tools, you will design a strategy for a Renesas MICON car, a miniature, autonomous electric vehicle. You will

More information

Getting the Design Right Daniel Luna, Mackenzie Miller, Saloni Parikh, Ben Tebbs

Getting the Design Right Daniel Luna, Mackenzie Miller, Saloni Parikh, Ben Tebbs Meet the Team Getting the Design Right Daniel Luna, Mackenzie Miller, Saloni Parikh, Ben Tebbs Mackenzie Miller: Project Manager Daniel Luna: Research Coordinator Saloni Parikh: User Interface Designer

More information

Assessing Modes of Interaction

Assessing Modes of Interaction Project 2 Assessing Modes of Interaction Analysis of exercise equipment Overview For this assignment, we conducted a preliminary analysis of two similar types of elliptical trainers. We are able to find

More information

Corporate Online. Using Term Deposits

Corporate Online. Using Term Deposits Corporate Online. Using Term Deposits About this Guide About Corporate Online Westpac Corporate Online is an internet-based electronic platform, providing a single point of entry to a suite of online transactional

More information

Elluminate and Accessibility: Receive, Respond, and Contribute

Elluminate and Accessibility: Receive, Respond, and Contribute Elluminate and Accessibility: Receive, Respond, and Contribute More than 43 million Americans have one or more physical or mental disabilities. What s more, as an increasing number of aging baby boomers

More information

PedCath IMPACT User s Guide

PedCath IMPACT User s Guide PedCath IMPACT User s Guide Contents Overview... 3 IMPACT Overview... 3 PedCath IMPACT Registry Module... 3 More on Work Flow... 4 Case Complete Checkoff... 4 PedCath Cath Report/IMPACT Shared Data...

More information

What s New in itero Scanner 4.0

What s New in itero Scanner 4.0 What s New in itero Scanner 4.0 New User Interface itero has a new user interface with a completely new look and feel. The new user interface is designed to: - Maximizes the use of available screen space

More information

The University of Texas MD Anderson Cancer Center Division of Quantitative Sciences Department of Biostatistics. CRM Suite. User s Guide Version 1.0.

The University of Texas MD Anderson Cancer Center Division of Quantitative Sciences Department of Biostatistics. CRM Suite. User s Guide Version 1.0. The University of Texas MD Anderson Cancer Center Division of Quantitative Sciences Department of Biostatistics CRM Suite User s Guide Version 1.0.0 Clift Norris, John Venier, Ying Yuan, and Lin Zhang

More information

Cloud Condensation Nuclei Counter (CCN) Module

Cloud Condensation Nuclei Counter (CCN) Module Particle Analysis and Display System (PADS): Cloud Condensation Nuclei Counter (CCN) Module Operator Manual DOC-0190 A-1 PADS 2.5.6, CCN Module 2.5.1 5710 Flatiron Parkway, Unit B Boulder, CO 80301 USA

More information

USER GUIDE: NEW CIR APP. Technician User Guide

USER GUIDE: NEW CIR APP. Technician User Guide USER GUIDE: NEW CIR APP. Technician User Guide 0 Table of Contents 1 A New CIR User Interface Why?... 3 2 How to get started?... 3 3 Navigating the new CIR app. user interface... 6 3.1 Introduction...

More information

Visual Design. Simplicity, Gestalt Principles, Organization/Structure

Visual Design. Simplicity, Gestalt Principles, Organization/Structure Visual Design Simplicity, Gestalt Principles, Organization/Structure Many examples are from Universal Principles of Design, Lidwell, Holden, and Butler 1 Why discuss visual design? You need to present

More information

Improving Data Entry of CD4 Counts. March 2012

Improving Data Entry of CD4 Counts. March 2012 Improving Data Entry of CD4 Counts March 2012 Welcome! The State Office of AIDS (OA) is continuing to work with providers to improve the quality of data that is collected and entered into ARIES. Today

More information

11. NATIONAL DAFNE CLINICAL AND RESEARCH DATABASE

11. NATIONAL DAFNE CLINICAL AND RESEARCH DATABASE 11. NATIONAL DAFNE CLINICAL AND RESEARCH DATABASE The National DAFNE Clinical and Research database was set up as part of the DAFNE QA programme (refer to section 12) to facilitate Audit and was updated

More information

User Interface Design Analysis precor efx 425 elliptical i300: HCI/D - Tom Mitchell Fall 2015

User Interface Design Analysis precor efx 425 elliptical i300: HCI/D - Tom Mitchell Fall 2015 User Interface Design Analysis precor efx 425 elliptical i300: HCI/D - Tom Mitchell Fall 2015 - Keana Mowery - - Andrew Leguina - - Alex Montgomery - overview // In this project our analyzed the user experience

More information

1. PERSON-CENTRED ASSESSMENT AND PLANNING

1. PERSON-CENTRED ASSESSMENT AND PLANNING 1. PERSON-CENTRED ASSESSMENT AND PLANNING This set of activities asks you to explain and demonstrate how you work with individuals to assess their care needs and preferences and agree their care plan.

More information

IPM 12/13 T1.2 Limitations of the human perceptual system

IPM 12/13 T1.2 Limitations of the human perceptual system IPM 12/13 T1.2 Limitations of the human perceptual system Licenciatura em Ciência de Computadores Miguel Tavares Coimbra Acknowledgements: Most of this course is based on the excellent course offered by

More information

Human Abilities: Vision, Memory and Cognition. Oct 14, 2016

Human Abilities: Vision, Memory and Cognition. Oct 14, 2016 Human Abilities: Vision, Memory and Cognition Oct 14, 2016 Milestone I How many users? Depends Fall 2016 COMP 3020 2 Midterm True or false Multiple choice Short answer Fall 2016 COMP 3020 3 Midterm sample

More information

Sound Interfaces Engineering Interaction Technologies. Prof. Stefanie Mueller HCI Engineering Group

Sound Interfaces Engineering Interaction Technologies. Prof. Stefanie Mueller HCI Engineering Group Sound Interfaces 6.810 Engineering Interaction Technologies Prof. Stefanie Mueller HCI Engineering Group what is sound? if a tree falls in the forest and nobody is there does it make sound?

More information

Intro to HCI evaluation. Measurement & Evaluation of HCC Systems

Intro to HCI evaluation. Measurement & Evaluation of HCC Systems Intro to HCI evaluation Measurement & Evaluation of HCC Systems Intro Today s goal: Give an overview of the mechanics of how (and why) to evaluate HCC systems Outline: - Basics of user evaluation - Selecting

More information

CS 544 Human Abilities

CS 544 Human Abilities CS 544 Human Abilities Human Information Processing Memory, Chunking & Phrasing, Modes Acknowledgement: Some of the material in these lectures is based on material prepared for similar courses by Saul

More information

Microphone Input LED Display T-shirt

Microphone Input LED Display T-shirt Microphone Input LED Display T-shirt Team 50 John Ryan Hamilton and Anthony Dust ECE 445 Project Proposal Spring 2017 TA: Yuchen He 1 Introduction 1.2 Objective According to the World Health Organization,

More information

ProScript User Guide. Pharmacy Access Medicines Manager

ProScript User Guide. Pharmacy Access Medicines Manager User Guide Pharmacy Access Medicines Manager Version 3.0.0 Release Date 01/03/2014 Last Reviewed 11/04/2014 Author Rx Systems Service Desk (T): 01923 474 600 Service Desk (E): servicedesk@rxsystems.co.uk

More information

Creating YouTube Captioning

Creating YouTube Captioning Creating YouTube Captioning Created June, 2017 Upload your video to YouTube Access Video Manager Go to Creator Studio by clicking the option from your account icon located in the topright corner of the

More information

Information Design. Information Design

Information Design. Information Design Information Design Goal: identify methods for representing and arranging the objects and actions possible in a system in a way that facilitates perception and understanding Information Design Define and

More information

Demo Mode. Once you have taken the time to navigate your RPM 2 app in "Demo mode" you should be ready to pair, connect, and try your inserts.

Demo Mode. Once you have taken the time to navigate your RPM 2 app in Demo mode you should be ready to pair, connect, and try your inserts. Demo Mode RPM 2 is supported with a "demonstration (Demo) mode" that easily allows you to navigate the app. Demo mode is intended for navigation purposes only. Data in Demo mode are simply random data

More information

COGS 121 HCI Programming Studio. Week 03

COGS 121 HCI Programming Studio. Week 03 COGS 121 HCI Programming Studio Week 03 Direct Manipulation Principles of Direct Manipulation 1. Continuous representations of the objects and actions of interest with meaningful visual metaphors. 2. Physical

More information

User Interface. Colors, Icons, Text, and Presentation SWEN-444

User Interface. Colors, Icons, Text, and Presentation SWEN-444 User Interface Colors, Icons, Text, and Presentation SWEN-444 Color Psychology Color can evoke: Emotion aesthetic appeal warm versus cold colors Colors can be used for Clarification, Relation, and Differentiation.

More information

Computer Science 101 Project 2: Predator Prey Model

Computer Science 101 Project 2: Predator Prey Model Computer Science 101 Project 2: Predator Prey Model Real-life situations usually are complicated and difficult to model exactly because of the large number of variables present in real systems. Computer

More information

Agents with Attitude: Exploring Coombs Unfolding Technique with Agent-Based Models

Agents with Attitude: Exploring Coombs Unfolding Technique with Agent-Based Models Int J Comput Math Learning (2009) 14:51 60 DOI 10.1007/s10758-008-9142-6 COMPUTER MATH SNAPHSHOTS - COLUMN EDITOR: URI WILENSKY* Agents with Attitude: Exploring Coombs Unfolding Technique with Agent-Based

More information

MYFITNESSPAL: SETTING UP AN ACCOUNT

MYFITNESSPAL: SETTING UP AN ACCOUNT MYFITNESSPAL: SETTING UP AN ACCOUNT MYFITNESSPAL: SETTING UP AN ACCOUNT METHOD 1: FROM THE WEBSITE Setting up a MyFitnessPal account is a simple process. You can do it either from the website on your Mac

More information

New Exercise Features:

New Exercise Features: M New Features!!! New Exercise Features: Over 600 new exercises (2700+ TOTAL) Ortho, Pilates, Yoga, Power/Agility, Medicine Ball, Balance, functional exercise and more! New Education Topics, Exercise Theory

More information

MyDispense OTC exercise Guide

MyDispense OTC exercise Guide MyDispense OTC exercise Guide Version 5.0 Page 1 of 23 Page 2 of 23 Table of Contents What is MyDispense?... 4 Who is this guide for?... 4 How should I use this guide?... 4 OTC exercises explained... 4

More information

Data Management, Data Management PLUS User Guide

Data Management, Data Management PLUS User Guide Data Management, Data Management PLUS User Guide Table of Contents Introduction 3 SHOEBOX Data Management and Data Management PLUS (DM+) for Individual Users 4 Portal Login 4 Working With Your Data 5 Manually

More information

Version February 2016

Version February 2016 Version 3.1 29 February 2016 Health and Safety Unit 1 Table of Contents 1. Setting up your computer workstation... 3 Step 1: Adjusting yourself to the correct height... 3 Step 2 Adjusting your Chair...

More information

Managing Immunizations

Managing Immunizations Managing Immunizations In this chapter: Viewing Immunization Information Entering Immunizations Editing Immunizations Entering a Lead Test Action Editing a Lead Test Action Entering Opt-Out Immunizations

More information

Food allergen labelling and information requirements under the EU Food Information for Consumers Regulation No. 1169/2011:

Food allergen labelling and information requirements under the EU Food Information for Consumers Regulation No. 1169/2011: Food allergen labelling and information requirements under the EU Food Information for Consumers Regulation No. 1169/2011: Version 6.05 of Saffron has been developed to take into account the upcoming legislation

More information

LibreHealth EHR Student Exercises

LibreHealth EHR Student Exercises LibreHealth EHR Student Exercises 1. Exercises with Test Patients created by students a. Create a new Encounter using the Bronchitis form (template) i. While your patient s chart is open, go to either

More information

Content Part 2 Users manual... 4

Content Part 2 Users manual... 4 Content Part 2 Users manual... 4 Introduction. What is Kleos... 4 Case management... 5 Identity management... 9 Document management... 11 Document generation... 15 e-mail management... 15 Installation

More information

User Manual. RaySafe i2 dose viewer

User Manual. RaySafe i2 dose viewer User Manual RaySafe i2 dose viewer 2012.03 Unfors RaySafe 5001048-A All rights are reserved. Reproduction or transmission in whole or in part, in any form or by any means, electronic, mechanical or otherwise,

More information

MedsCheck Reviews. Ontario

MedsCheck Reviews. Ontario MedsCheck Reviews Ontario Contents Configuration... 1 Configuring Electronic Signatures... 1 Configuring Electronic MedsCheck Reviews... 2 Creating an ODB MedsCheck Consent Record... 3 Electronic MedsCheck

More information

Agile Product Lifecycle Management for Process

Agile Product Lifecycle Management for Process Nutrition Surveillance Management User Guide Release 5.2.1 Part No. E13901-01 September 2008 Copyrights and Trademarks Copyright 1995, 2008, Oracle Corporation and/or its affiliates. All rights reserved.

More information

Cognitive Strategies and Eye Movements for Searching Hierarchical Displays

Cognitive Strategies and Eye Movements for Searching Hierarchical Displays Cognitive Strategies and Eye Movements for Searching Hierarchical Displays Anthony J. Hornof Tim Halverson University of Oregon Sponsored by ONR Three Main Points A hierarchical display motivates specific

More information

ADVANCED VBA FOR PROJECT FINANCE Near Future Ltd. Registration no

ADVANCED VBA FOR PROJECT FINANCE Near Future Ltd. Registration no ADVANCED VBA FOR PROJECT FINANCE f i n a n c i a l f o r e c a s t i n G 2017 Near Future Ltd. Registration no. 10321258 www.nearfuturefinance.com info@nearfuturefinance.com COURSE OVERVIEW This course

More information

Results from a survey of NetAssess users Alan Mead Aon Consulting.

Results from a survey of NetAssess users Alan Mead Aon Consulting. Results from a survey of NetAssess users Alan Mead Aon Consulting alan_d_mead@aoncons.com Lots of Internet hype corresponding HR interest in using web technology Increasing requests for web-based version

More information

Dementia Direct Enhanced Service

Dementia Direct Enhanced Service Vision 3 Dementia Direct Enhanced Service England Outcomes Manager Copyright INPS Ltd 2015 The Bread Factory, 1A Broughton Street, Battersea, London, SW8 3QJ T: +44 (0) 207 501700 F:+44 (0) 207 5017100

More information

Visual Analysis of Goal-Directed Network Defense Decisions 20 July 2011

Visual Analysis of Goal-Directed Network Defense Decisions 20 July 2011 Visual Analysis of Goal-Directed Network Defense Decisions 20 July 2011 Chris Horn Anita D Amico VizSec 2011 Pittsburgh, PA Overview Visual analytic system for working with data describing computer network

More information

Cerner COMPASS ICD-10 Transition Guide

Cerner COMPASS ICD-10 Transition Guide Cerner COMPASS ICD-10 Transition Guide Dx Assistant Purpose: To educate Seton clinicians regarding workflow changes within Cerner COMPASS subsequent to ICD-10 transition. Scope: Basic modules and functionality

More information

Overview, page 1 Shortcut Keys for Cisco Unity Connection Administration, page 1 Other Unity Connection Features, page 4

Overview, page 1 Shortcut Keys for Cisco Unity Connection Administration, page 1 Other Unity Connection Features, page 4 Overview, page 1 Shortcut Keys for Cisco Unity Connection Administration, page 1 Other Unity Connection Features, page 4 Overview Cisco Unity Connection supports various shortcut s and features that provides

More information

Research of Menu Item Grouping Techniques for Dynamic Menus Jun-peng GAO 1,a, Zhou-yang YUAN 1 and Chuan-yi LIU 1,b,*

Research of Menu Item Grouping Techniques for Dynamic Menus Jun-peng GAO 1,a, Zhou-yang YUAN 1 and Chuan-yi LIU 1,b,* 2016 International Conference on Control and Automation (ICCA 2016) ISBN: 978-1-60595-329-8 Research of Menu Item Grouping Techniques for Dynamic Menus Jun-peng GAO 1,a, Zhou-yang YUAN 1 and Chuan-yi LIU

More information

Users. Perception and Cognition

Users. Perception and Cognition Users Perception and Cognition This lecture relies on Designing with the Mind in Mind by Jeff Johnson, The Humane Interface by Jef Raskin, and other sources. 1 Ergonomics and Human Factors Designing devices

More information

About REACH: Machine Captioning for Video

About REACH: Machine Captioning for Video About REACH: Machine Captioning for Video REACH is a machine captioning service provided as a part of Kaltura. Starting July 1, 2018, REACH automatically captions and tags all new videos created with Kaltura

More information

[HEALTH MAINTENANCE AND INVITATIONS/REMINDERS] June 2, 2014

[HEALTH MAINTENANCE AND INVITATIONS/REMINDERS] June 2, 2014 Health Maintenance tab is located on the left side menu. Health Maintenance will assist with Meaningful Use, Stage 2 objectives. Meaningful Use, objective #6 states the following: Use clinical support

More information

TMWSuite. DAT Interactive interface

TMWSuite. DAT Interactive interface TMWSuite DAT Interactive interface DAT Interactive interface Using the DAT Interactive interface Using the DAT Interactive interface... 1 Setting up the system to use the DAT Interactive interface... 1

More information

Psy201 Module 3 Study and Assignment Guide. Using Excel to Calculate Descriptive and Inferential Statistics

Psy201 Module 3 Study and Assignment Guide. Using Excel to Calculate Descriptive and Inferential Statistics Psy201 Module 3 Study and Assignment Guide Using Excel to Calculate Descriptive and Inferential Statistics What is Excel? Excel is a spreadsheet program that allows one to enter numerical values or data

More information

PBSI-EHR Off the Charts!

PBSI-EHR Off the Charts! PBSI-EHR Off the Charts! Enhancement Release 3.2.1 TABLE OF CONTENTS Description of enhancement change Page Encounter 2 Patient Chart 3 Meds/Allergies/Problems 4 Faxing 4 ICD 10 Posting Overview 5 Master

More information

HCI Lecture 1: Human capabilities I: Perception. Barbara Webb

HCI Lecture 1: Human capabilities I: Perception. Barbara Webb HCI Lecture 1: Human capabilities I: Perception Barbara Webb Key points: Complexity of human, computer and task interacting in environment: which part should change? Human constraints, e.g. Fitts law for

More information

Lecture 13: Controlled Experiments. Fall UI Design and Implementation 1

Lecture 13: Controlled Experiments. Fall UI Design and Implementation 1 Lecture 13: Controlled Experiments Fall 2003 6.893 UI Design and Implementation 1 UI Hall of Fame or Shame? Source: Madleina Scheidegger Fall 2003 6.893 UI Design and Implementation 2 For today s UI Hall

More information

Medtech32 Diabetes Get Checked II Advanced Form Release Notes

Medtech32 Diabetes Get Checked II Advanced Form Release Notes Medtech32 Diabetes Get Checked II Advanced Form Release Notes These Release Notes contain important information for all Medtech32 Users. Please ensure that they are circulated amongst all your staff. We

More information

Development of Attractiveness Walkthrough

Development of Attractiveness Walkthrough Development of Attractiveness Walkthrough Aliaksei Miniukovich University of Trento, Trento, Italy miniukovich@disi.unitn.it Abstract. In this paper, I describe the development of Attractiveness Walkthrough

More information

The Hospital Anxiety and Depression Scale Guidance and Information

The Hospital Anxiety and Depression Scale Guidance and Information The Hospital Anxiety and Depression Scale Guidance and Information About Testwise Testwise is the powerful online testing platform developed by GL Assessment to host its digital tests. Many of GL Assessment

More information

1. Automatically create Flu Shot encounters in AHLTA in 2 mouse clicks. 2. Ensure accurate DX and CPT codes used for every encounter, every time.

1. Automatically create Flu Shot encounters in AHLTA in 2 mouse clicks. 2. Ensure accurate DX and CPT codes used for every encounter, every time. In clinics around the MHS, upwards of 70% of all flu shot workload credit is lost because the encounters are not documented within AHLTA. Let the Immunization KAT s PASBA approved coding engine do the

More information

ONCOKOMPAS 131 INTERMEZZO

ONCOKOMPAS 131 INTERMEZZO 130 INTERMEZZO ONCOKOMPAS 131 INTERMEZZO ONCOKOMPAS: AN ehealth SELF-MANAGEMENT APPLICATION TO MONITOR HEALTH RELATED QUALITY OF LIFE, PROVIDE PERSONALIZED ADVICE AND SUPPORTIVE CARE OPTIONS 132 INTERMEZZO

More information

WELSH INFORMATION STANDARDS BOARD

WELSH INFORMATION STANDARDS BOARD WELSH INFORMATION STANDARDS BOARD DSC Notice: DSCN 2018 / 06 Date of Issue: 8 th August 2018 Welsh Health Circular / Official Letter: (2015) 053 Subject: CT Maturity Matrix Sponsor: Chris Newbrook, Head

More information

healthdirect Symptom Checker Communications Toolkit

healthdirect Symptom Checker Communications Toolkit healthdirect Symptom Checker Communications Toolkit Contents Introduction... 3 Welcome... 3 About Healthdirect Australia... 3 Background... 3 healthdirect Symptom Checker... 4 What is the healthdirect

More information

Plato's Ambisonic Garden

Plato's Ambisonic Garden Plato's Ambisonic Garden Item type Authors Presentation Lennox, Peter Downloaded 14-Dec-2017 13:55:46 Item License Link to item http://creativecommons.org/licenses/by-nd/4.0/ http://hdl.handle.net/10545/347159

More information

DMA will take your dental practice to the next level

DMA will take your dental practice to the next level DMA will take your dental practice to the next level A membership payment plan created by dentists for dentists and patients Traditionally dentists have only been able to grow their practices by a mix

More information

MEANING AND PURPOSE. ADULT PEDIATRIC PARENT PROXY PROMIS Item Bank v1.0 Meaning and Purpose PROMIS Short Form v1.0 Meaning and Purpose 4a

MEANING AND PURPOSE. ADULT PEDIATRIC PARENT PROXY PROMIS Item Bank v1.0 Meaning and Purpose PROMIS Short Form v1.0 Meaning and Purpose 4a MEANING AND PURPOSE A brief guide to the PROMIS Meaning and Purpose instruments: ADULT PEDIATRIC PARENT PROXY PROMIS Item Bank v1.0 Meaning and Purpose PROMIS Short Form v1.0 Meaning and Purpose 4a PROMIS

More information

ClinCheck Fact Sheet.

ClinCheck Fact Sheet. ClinCheck Fact Sheet. Introducing new features of ClinCheck Pro with 3D Controls and ClinCheck Web Powered by your needs to optimize your treatment planning journey. This fact sheet provides an overview

More information

Autocount GIRO plugin enable you to upload your E-banking payment instruction in a

Autocount GIRO plugin enable you to upload your E-banking payment instruction in a Introduction Autocount GIRO plugin enable you to upload your E-banking payment instruction in a batch base on your Payment Voucher instruction in Autocount accounting system. It eliminates the need for

More information

Invitation to the 2016 Skate-a-thon

Invitation to the 2016 Skate-a-thon Invitation to the 2016 Skate-a-thon For our players Dear Werewolves Player, We are launching our 2nd Skate-a-thon which will take place on Saturday 9 July from 1.30pm to 2.30pm. This is the Werewolves

More information

Bowel Cancer Screening for Scotland

Bowel Cancer Screening for Scotland Vision 3 Bowel Cancer Screening for Scotland (BoSS) Copyright INPS Ltd 2014 The Bread Factory, 1A Broughton Street, Battersea, London, SW8 3QJ T: +44 (0) 207 501700 F:+44 (0) 207 5017100 W: www.inps.co.uk

More information

Page # Perception and Action. Lecture 3: Perception & Action. ACT-R Cognitive Architecture. Another (older) view

Page # Perception and Action. Lecture 3: Perception & Action. ACT-R Cognitive Architecture. Another (older) view Perception and Action Lecture 3: Perception & Action Cognition is a lot, but not enough! We want models to perceive stimuli in the outside world respond by acting in the outside world This gives us a more

More information

Set Up SOS Video Chat and Screen-Sharing

Set Up SOS Video Chat and Screen-Sharing Set Up SOS Video Chat and Screen-Sharing Salesforce, Spring 17 @salesforcedocs Last updated: March 11, 2017 Copyright 2000 2017 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark

More information

Stepwise method Modern Model Selection Methods Quantile-Quantile plot and tests for normality

Stepwise method Modern Model Selection Methods Quantile-Quantile plot and tests for normality Week 9 Hour 3 Stepwise method Modern Model Selection Methods Quantile-Quantile plot and tests for normality Stat 302 Notes. Week 9, Hour 3, Page 1 / 39 Stepwise Now that we've introduced interactions,

More information

WRAP and Peer Support

WRAP and Peer Support WRAP and Peer Support with Mary Ellen Copeland, PhD and Jane Winterling, ALWF What we are discussing today is very important. This is a bottom lineanswer for many, many people who have been suffering for

More information

GHABP Scoring/ Administration instructions GHABP Complete questionnaire. Buy full version here - for $7.00

GHABP Scoring/ Administration instructions GHABP Complete questionnaire. Buy full version here - for $7.00 This is a Sample version of the Glasgow Hearing Aid Benefit Profile- KIT (GHABP- KIT). The full version of Disability Assessment For Dementia (DAD) comes without sample watermark.. The full complete KIT

More information

Estimating national adult prevalence of HIV-1 in Generalized Epidemics

Estimating national adult prevalence of HIV-1 in Generalized Epidemics Estimating national adult prevalence of HIV-1 in Generalized Epidemics You are now ready to begin using EPP to generate HIV prevalence estimates for use in the Spectrum program. Introduction REMEMBER The

More information

Where No Interface Has Gone Before: What Can the Phaser Teach Us About Label Usage in HCI?

Where No Interface Has Gone Before: What Can the Phaser Teach Us About Label Usage in HCI? Where No Interface Has Gone Before: What Can the Phaser Teach Us About Label Usage in HCI? Franklin P. Tamborello, II Phillip H. Chung Michael D. Byrne Rice University Department of Psychology 61 S. Main,

More information

GLOOKO DREAMED FOR ANDROID USER GUIDE

GLOOKO DREAMED FOR ANDROID USER GUIDE GLOOKO DREAMED FOR ANDROID USER GUIDE November 2018 IFU-0017 02 TABLE OF CONTENTS TABLE OF CONTENTS GENERAL INFORMATION... 2 Product Description... 2 Glooko Intended Use... 2 Dreamed Intended Use... 2

More information

SIM 16/17 T1.2 Limitations of the human perceptual system

SIM 16/17 T1.2 Limitations of the human perceptual system SIM 16/17 T1.2 Limitations of the human perceptual system Hélder Filipe Pinto de Oliveira Acknowledgements: Most of this course is based on the excellent course offered by Prof. Kellogg Booth at the British

More information

Copyright 2009 by SFK LLC. All rights reserved.

Copyright 2009 by SFK LLC. All rights reserved. Copyright 2009 by SFK LLC. All rights reserved. Reproduction or distribution in any way shape, or form is forbidden. No part of this book is to be reproduced, stored in a retrieval system or transmitted

More information

Posture Monitor. User Manual. Includes setup, guidelines and troubleshooting information for your Posture Monitor App

Posture Monitor. User Manual. Includes setup, guidelines and troubleshooting information for your Posture Monitor App Posture Monitor User Manual Includes setup, guidelines and troubleshooting information for your Posture Monitor App All rights reserved. This manual shall not be copied, in whole or in part, without the

More information

Year Strategy. Our purpose is to end homelessness

Year Strategy. Our purpose is to end homelessness Year Strategy 2013 2018 Our purpose is to end homelessness 5 Year Strategy 2013 2018 Our purpose is to end homelessness Our aims We want to do more for more homeless people in more places across the UK

More information

Use the following checklist to ensure that video captions are compliant with accessibility guidelines.

Use the following checklist to ensure that video captions are compliant with accessibility guidelines. Table of Contents Purpose 2 Objective 2 Scope 2 Technical Background 2 Video Compliance Standards 2 Section 508 Standards for Electronic and Information Technology... 2 Web Content Accessibility Guidelines

More information

Unit 1: Introduction to the Operating System, Computer Systems, and Networks 1.1 Define terminology Prepare a list of terms with definitions

Unit 1: Introduction to the Operating System, Computer Systems, and Networks 1.1 Define terminology Prepare a list of terms with definitions AR Computer Applications I Correlated to Benchmark Microsoft Office 2010 (492490) Unit 1: Introduction to the Operating System, Computer Systems, and Networks 1.1 Define terminology 1.1.1 Prepare a list

More information