The Universe of Discourse Design with Visible Context
|
|
|
- Bathsheba Harrell
- 10 years ago
- Views:
Transcription
1 The Universe of Discourse Design with Visible Context Rational GUI Andrew U. Frank TU Wien, Department of Geoinformation Gusshausstrasse 27-29/E127.1 A-1040 Vienna, Austria for course Haskell practice SS 09 possibly journal article for visual languages GZ 4753, words 3671, svn Introduction Design of a Graphical User Interface is mostly limited to a description of operations for the user and information provided to the user. Coherence is at best achieved by guidelines. The many possible sequences of actions of users and their information needs are not considered in the design and are, therefore, often resulting in errors. Translation to program code is again dicult and eectively many of the artefacts of coding becomes confusingly visible to the user. The resulting code is hard to read and expensive to maintain. Evers, Achten, and Kuper (2005) have pointed out that the current diculties of coding GUI result from graphics API interfaces that are too low in the level of abstraction. They show that the low level of abstraction in the API can be recognized as single design decisions result in repeated and distributed code, with the potential to inconsistency and problems while changing the code. The optimal structure for a functional API for graphics is an open research question; the wxhaskell team has for intermediate level of abstraction to allow experimentation to nd the correct abstractions. TV [], Fruit [], and wxgeneric [] are current experiments using wxhaskell; Fudget (Hallgren et al. 1995) are older proposals. Lindstroem (2008) and others have identied composability as a crucial property of conceptual GUI elements in Fudgets (Hallgren et al. 1995). Dierent proposals address dierent types of interactions. The very impressive TV [Elliot] approach uses a pipe concept to connect GUI units using arrows [], leading to a GUI style which combines the input and output of units, which provide data processing and graphical representation; inputs by the user propagate: the program reacts to user actions. This style of reactive GUI follows 1
2 Shneiderman's principle of immediate feedback to user actions (Shneiderman 1997). Elliot uses it mostly to create graphical (artistic) processes. I try here to show how a similar approach can be used in an administrative application. The interaction of a user with a program can be compared with a conversation between humans (Nardi 1993). The analogy produces a rational framework for the design of a GUI. The analogy with conversations stresses the importance of reactiv: the immediate reaction of my partner in a conversation even if it is only a silent nod with head is crucial. Novel is here primarily the explicit introduction of a universe of discourse for the conversation. The explicitly represented Universe of Discourse (UoD) is where the user's input is deposited, detected by the program and the reactions of the program and the reactions of the program result in changes of the UoD, which are then posted to the screen. The categorical viewpoint used leads to a formal denition of transparency of a GUI, which I think is novel and useful. The resulting code is better structured and smaller than previous programs (at least for the test case). The contribution is structured as follows: section 2 explores the analogy between human conversation and human computer interaction and introduces the universe of discourse (UoD). Section 3 formalizes the idea, investigating primarily mappings, using mathematical category theory. Section 4 introduces the case study and section 5 discusses the resulting code. 2 Conversations 2.1 Conversational Implicature and Relevance Theory Grice in his seminal work on conversational implicatures gave maxims of conversation to stress the necessary cooperation between speaker and listener (Grice 1989). His maxims presuppose an agreement between speakers about the code used to express meaning. Sperber and Wilson's relevance theory (2004) expanding on Grice's principle of relevance argues that the context, including common sense knowledge, claries the encoding in vocabulary terms. In actual conversations the participants adjust their terminology rapidly to a small set of terms with meaning xed for the duration of the conversation and possibly future conversations between the same partners. A person in a conversation picks up the terms with the meaning used by the other. Many experiments with children have demonstrated well developed abilities of humans to acquire new words and meaning for a reviewer see (Tomasello 2003). In adult conversation one may encounter explicit statements like Oh, I see, you mean a person if you say PAX, to conrm an agreement on terminology. Teaching consists to a large degree of transferring terminology with intended meaning to the students; conversations with (public) agencies feel often rigid when the partner in the conversation insists on his terminology and is not willing to adapt to mine. The meaning of the terminology in a conversation is communicated with implicit reference to the context of the conversation. The context of a conversation 2
3 is crucial for understanding. The approach followed here is to make the context of the conversation between human and computer explicit in the program and visible for the user and the programmer. The experience with rst Apple Macintosh and later Windows often shows that programs that can be seen and explored, i.e., where the context is visible at all times, can be used without explicit learning and reading of user manuals. Features that are not visible require expensive learning eorts. It is important that the context of a conversation is limited and therewith limiting the interpretation of the words used to refer to objects. The restriction to the context makes it possible that the structures expressed syntactically and semantically in the utterances are mapable despite initial discordances in the meanings. 2.2 What Is the Shared Context of a Human Computer Interaction? In analogy to natural conversations I see the human and the computer as having a conversation with a shared context. The shared context consists of the objects that can be referenced in the conversation and the operation applicable to change them or to change the relations between them. The interface screen must show the current state of objects and the operations applicable; the now standard desktop view with menus demonstrates the success of this rule, but the rigidity of the computer program forces all adaptations on the user. The context must be limited to real world objects already meaningful to the user and not forcing her to learn about internal aspects of the program. It should not include aspects internal to the program, but not a reection of real world facts. 3 The Transparent GUI A user manipulates a dataset in a computer through an interface. The dataset stands for some computer external reality, perhaps a model of a complex process, but perhaps as mundane as a letter, later printed. This will be termed model. The intention of the user is (Figure 1) to see and change the model she perceives by function p and changes with actions a. The user is forced to act through the GUI program (Figure 2). Thus the intended functions p and a are: p = q f a = c b. A GUI is well-designed if it gives the user the impression that she manipulates directly the objects of interest. This means the GUI is transparent to the user and the user can concentrate on his work and is not disturbed by artifacts of the GUI. The user intends action a to change state of the model m0 to state m1 m1 = o m0. The user intension 3
4 Figure 1: The user's intention is to manipulate a model of some part of reality Figure 2: The user is forced to manipulate the model through the GUI Figure 3: 4
5 Figure 4: Figure 5: The UoD represents the shared, interpreted context becomes This gives the Transparency Condition, which is formally dened as commutativity in Figure 4: A GUI (a = c b, p = f q) is transparent if: m1 = o (mo) no = (c b) m n1 = o' (no) m1 = (f q) n1 m1 = (f q o c b) mo. or o = f q o c b. 3.1 The Internal Representation of Context The model is usually more extensive than what the present user focuses on in the conversation. The objects and operation currently in focus will be termed Universe of Discourse of the conversation (UoD). This UoD is the part of the model that is in focus during the interaction. The computer makes the context visible to the user on the screen (or other HCI device) and expects user inputs regarding the object and operation from the user (Figure 5). Comparing Figure 5 with Figure 2 indicates where diculties in the programming of the interaction occurs: Figure 2 shows the ordinary situation; the program manages the relation between the visible screen and the stored model. Actions of the user must be interpreted to determine which operations to apply to the model; this interpretation may fail. For example with a click on the screen the user intends to select one object he sees on the screen but the program may nd other (non-visible ones) in the model. Which one is meant by the user? 5
6 Figure 2 shows how the introduction of a UoD breaks the relation f between objects visible to the user and the model in two relations g and h, reducing a complex relation to two simpler functions. 3.2 Analysis of the Function Involved The function f is the composition of g and h f = g h and likewise c = e d Mapping Model UoD The user selects some subset from the model she is interested in and this subset is mapped to the UoD; this mapping can be for example a SQL statement. The UoD maintains the identication links between entities in the UoD and in the model Mapping UoD to Screen g is the function that translates the stored UoD to a visible screen. It may have additional parameters for style, user preferences, etc., which must be constant for a conversation. g is a function, as the state of UoD determine what is shown on the screen. g: UoD screen The screen is seen as a unit with many dierent states; parts of the screen are not considered individually. p = e f = e g h a = d g = d k l Mapping Screen to Human Mind The human exibility and potential to learn allow this mapping to became a function from screen state to interpreted model Mapping Human to Action The user selects an action o to change the interpreted model. The immediate feedback as this change can be observed will, over time, help her to learn what the actions produce and adapt to the interpretation of objects and operations shown on the screen by the program Mapping Action to UoD This is the most dicult problem: interpreting the actions the user intends and communicates. Action consists of operations and objects operated on. Two forms 6
7 Figure 6: The mappings in a GUI using the UoD approach for commands are possible rst verb (operation) then object (e.g., open my- le.txt) or rst selection of the object and then the operation (e.g., myle.txt open). The selection of operations determines what objects (and how many) must be selected. Alternatively, the selection of an object determines the operations possible. In either cafse the possible selections are limited to the UoD. If the user intends other objects as targets for objects, it is rst necessary to bring them into the UoD Mapping to UoD Model The UoD must only oer operations possible to execute in the model. 3.3 Conclusion The programmer is asked to provide the 4 mappings g, h, k, l, which are listed above; They must be functions to achieve that the GUI appears transparent to the user as she has the illusion of directly manipulating the model visible on the screen. F Transparent GUI can be read as a diagram of mappings (Figure 5) and o = g h o k l. f = g h c = e d The complex relation c, which is the mapping from screen action to computation is broken into g h, which can be restricted to functions. The restrictions are communicated to the user by visible feedback. Programming is divide into two parts, namely one of managing the screen (g and k) and one of changing the state of UoD (h and l). 4 Case Study: managing a shared repository of documents Applications where the user manipulates a coherent and compact model are easy to program, even without an explicit concept of UoD (e.g., a le manager for local les). The application that brings together data from three dierent 7
8 Figure 7: The UoD unies the data from dierent sources sources: A team with each person having a computer, which is not always connected needs to organize a shared repository for documents. There was already a database with a description of dockets and their numbers (GZ) rst only used as an entry in the archive of paper les accumulated over years. To extend this for computer les, a version management system (SVN) was installed on a mirrored disk attached to a server and regularly copied to external storage. In this system information on dockets are in three places: the database with GZ numbers and descriptors, the folders on individual computers and the shared repository. User operations on these three locations must be coordinated and a single GUI was desirable. This means, the user sees a unied model with which she interacts; the UoD shows this model (Figure 7). The database for docket numbers (GZ) serves to nd documents for a variety of keywords and allows also to enter the state of a docket (e.g., paper draft, paper submitted, etc.). The convention for folder names is that they start with the GZ number followed by whatever name is meaningful for this user (e.g., one user may add the name of the original creator whereas I do not want to have my name in all folder names). The user keeps all GZ folders in a work directory on their personal computer. Folder names (except for the leading GZ number) do not necessarily agree on dierent computers. 5 Design and CodingF 5.1 UoD Data The user focuses at once one docket, for which the information is: GZ (docket number) Descriptor (descriptive text for the docket content) Name of SVN folder Name of local folder The wider context of 8
9 GZ database connection Local work directory SVN connection Is shown as preferences Operations The UoD includes the operations to get information or to change something and get feedback: get :: gz info nd :: keywords info new gz :: descriptor info with new gz change : changed descriptor info change-preferences : preferences preferences The following operations do not give the user feedback in the UoD, but some conrmation about details of executing the operation. checkout ::.. update :: insert :: comitt :: In the module UoD.hs Figure 8denition for operation tokens, button (or menu) text and tooltips are entered together with the data type denitions. The generation of the alphanumeric GUI is then automatic using wxgen. The operations for change-preferences, preferences in a separate window are Edit preferences Save/commit Missing: Description of semantics of operations List of possible error conditions. Open questions: 1. How to have more inuence on the appearance of the data presented through wxgen? 2. How to deal with graphical presentations? 3. How to have the descriptions of the UoD closer to or merged with a description or semantics? 4. How to enter constraints on data? WxGen oers some facilities that need to be explored. 5. How to build a fully generic GUI to interact with the preference? Currently the data description for preferences must be imported. 9
10 Figure The Static Appearance of the GUI The GUI has a window with a title and some instructions at the top. Then the elds of the UoD, the buttons for the operations and a eld for posting details of operations (Figure 8). [gure missing] The denition of variables for the preferences and the UoD are also necessary. Question: How much of this code can be generalized and reused? Dierent applications would only require dierent text entries, describing the application only. 5.3 The Dynamic GUI The actions are started by pressing an action button after having lled the corresponding eld in the UoD. This is a data entry then action paradigm. Question. 1. Can a return in an entry eld start an action? How to add this to the generated UoD entry? 2. If a button is pressed and no data entered then show a dialog data entry panel. This would give an operation then data entry paradigm. Processing an action starts with the entry from read and the UoD variable updated. Then a case statement separates the actions to call the pertinent actions on the database, the SVN repository or the work directory. The operations called are specic for the applications and do not contain GUI aspects; they are not of interest here. The operations update the UoD variable if appropriate. After the specic operations have completed, the screen is updated. In this application, all values functionally depend on the GZ. It is therefore appropriate to retrieve from each of the three sources the particulars and show them in the UoD. The only special case is the search for GZ given a list of keywords. The result from the SQL query is entered into a list and the user selects with double click. Then the UoD is updated with the selected GZ. The list remains visible and another item could be selected to correct the rst selection. Questions: 1. Could a description of the operations as functions with parameters be used to produce the code for actions? 2. Add an error treatment using the moved transformer ErrorT. 5.4 Part_of Relation Many UoD contain objects at multiple hierarchical level; for example the operations discussed in the case are focused on folders, but the add command takes a 10
11 Figure 10: The folder consists of les a part_of relation le and adds it to the versioned part of the folder. Part_of Relations are visible in the ontology: [gure missing] In order to refer to part_of an object (here called subobjects), which is necessary for operations where an argument is a sub-object; the GUI must provide a tool to select subobjects. This is typically a selection from a list. It is therefore possible to translate part_of relation systematically to the GUI. 5.5 Error Handling Interactive programs may fail for a variety of reasons and it is important to inform the user about the reason for failing and possible actions for correction. Remember, however, that interfaces where no failures are possible are even better and code that prevents user errors is desirable. Errors are detected at one point in the code and information to the user are produced where the screen is handled. The simplest error handling approach sucient for the present purpose is to have the application routines signal failure with a descriptive text and adding a handler for such exceptions at the GUI. At the place the error is detected a call to fail error string is included (in monadic do code). The handler is simply taking the error string and shows it in the display window. Open questions: 1. How to deal with DB errors? Is another error data type used? 2. Should exceptions be used to deal with the sub-operations (i.e., selection of sub-objects, in the example les as parts of the folder)? Reactive Computing The use of a GUI brings the GUI for an administrative process closer to the examples given for reactive GUI design. Despite the appearance of the GUI similar to a form to enter data, the logic is not one of data entry and the corresponding tools are not appropriate (e.g., wxgeneric). Data entry in forms is a special case of a GUI, but the application considered here is not subsumed under this. The following test shows this. In a forms application there is typically a pair of buttons, ok and cancel, which start processing after the data are entered. 11
12 Figure 11: Entering the user preferences id such a forms part in the case study, but the major interface start processing when the user enters a GZ number or a keyword and units return, presses a button of a list. Conceptually the GUI can be reduced to deposit the changed data and the desired operations in the UoD and the application process is executing the operations and applies updates the UoD. The GUI then propagates the updated UoD data to the screen (Figure 11). Questions: 1. Is this feasible even for the selections from list for aggregates 2. Does this give a structure that leads to generalization? Conclusion The introduction of a stored UoD to which all interactions refer has streamlined the code. Most of the code is generic and reusable for a new application. The next test will be with an application using a graphic interface to see whether the same overall structures and code can be used. References Evers, S., P. Achten and J. Kuper (2004). A Functional Programming Technique for Forms in Graphical User Interfaces. Implementation and Application of Functional Languages 16th International Workshop, IFL 2004, Lübeck, Germany, Springer. Grice, P. (1989). Studies in the Way of Words. Cambridge, Mass., Harvard University Press. Hallgren, T. and M. Carlsson (1995). Programming with Fudgets. Advanced Functional Programming. J. Jeuring and E. Meijer. Berlin, Springer-Verlag. Lecture Notes in Computer Science 925: Shneiderman, B. (1997). Designing the User Interface - Strategies for Eective Human-Computer Interaction. Reading, MA, Addison-Wesley. Sperber, D. and D. Wilson (2004). Relevance Theory. Handbook of Pragmatics. G. Ward and L. Horn. Oxford, Blackwell: Tomasello, M. (2003). Constructing a Language: A Usage-Based Theory of Language Acquisition. Cambridge, Massachusetts, and London, England, Harvard University Press. 12
Fall 2011. Andrew U. Frank, October 23, 2011
Fall 2011 Andrew U. Frank, October 23, 2011 TU Wien, Department of Geoinformation and Cartography, Gusshausstrasse 27-29/E127.1 A-1040 Vienna, Austria [email protected] Part I Introduction 1 The
Excel Companion. (Profit Embedded PHD) User's Guide
Excel Companion (Profit Embedded PHD) User's Guide Excel Companion (Profit Embedded PHD) User's Guide Copyright, Notices, and Trademarks Copyright, Notices, and Trademarks Honeywell Inc. 1998 2001. All
SPSS: Getting Started. For Windows
For Windows Updated: August 2012 Table of Contents Section 1: Overview... 3 1.1 Introduction to SPSS Tutorials... 3 1.2 Introduction to SPSS... 3 1.3 Overview of SPSS for Windows... 3 Section 2: Entering
Ontological Representations of Software Patterns
Ontological Representations of Software Patterns Jean-Marc Rosengard and Marian F. Ursu University of London http://w2.syronex.com/jmr/ Abstract. This paper 1 is based on and advocates the trend in software
Source Code Translation
Source Code Translation Everyone who writes computer software eventually faces the requirement of converting a large code base from one programming language to another. That requirement is sometimes driven
The preliminary design of a wearable computer for supporting Construction Progress Monitoring
The preliminary design of a wearable computer for supporting Construction Progress Monitoring 1 Introduction Jan Reinhardt, TU - Dresden Prof. James H. Garrett,Jr., Carnegie Mellon University Prof. Raimar
Calculation Example Rolling Bearings According to to DIN ISO 281
Calculation Example Rolling Bearings According to to DIN ISO 281 Release July 2013 c 2013 GWJ Technology GmbH Rebenring 31 38106 Braunschweig Tel.: +49 (0) 531 129 399-0 Contents 0.1 Calculation Examples:
The Power of Analysis Framework
All too often, users must create real-time planning and analysis reports with static and inconsistent sources of information. Data is locked in an Excel spreadsheet or a rigidly customized application
Data Integration with Talend Open Studio Robert A. Nisbet, Ph.D.
Data Integration with Talend Open Studio Robert A. Nisbet, Ph.D. Most college courses in statistical analysis and data mining are focus on the mathematical techniques for analyzing data structures, rather
Community Edition. Master Data Management 3.X. Administrator Guide
Community Edition Talend Master Data Management 3.X Administrator Guide Version 3.2_a Adapted for Talend MDM Studio v3.2. Administrator Guide release. Copyright This documentation is provided under the
MATLAB @ Work. MATLAB Source Control Using Git
MATLAB @ Work MATLAB Source Control Using Git Richard Johnson Using source control is a key practice for professional programmers. If you have ever broken a program with a lot of editing changes, you can
Turning ClearPath MCP Data into Information with Business Information Server. White Paper
Turning ClearPath MCP Data into Information with Business Information Server White Paper 1 Many Unisys ClearPath MCP Series customers have Enterprise Database Server (DMSII) databases to support a variety
programming languages, programming language standards and compiler validation
Software Quality Issues when choosing a Programming Language C.J.Burgess Department of Computer Science, University of Bristol, Bristol, BS8 1TR, England Abstract For high quality software, an important
Zoom Plug-ins for Adobe
= Zoom Plug-ins for Adobe User Guide Copyright 2010 Evolphin Software. All rights reserved. Table of Contents Table of Contents Chapter 1 Preface... 4 1.1 Document Revision... 4 1.2 Audience... 4 1.3 Pre-requisite...
Whisler 1 A Graphical User Interface and Database Management System for Documenting Glacial Landmarks
Whisler 1 A Graphical User Interface and Database Management System for Documenting Glacial Landmarks Whisler, Abbey, Paden, John, CReSIS, University of Kansas [email protected] Abstract The Landmarks
IBM Operational Decision Manager Version 8 Release 5. Getting Started with Business Rules
IBM Operational Decision Manager Version 8 Release 5 Getting Started with Business Rules Note Before using this information and the product it supports, read the information in Notices on page 43. This
SYSTEMS AND SOFTWARE REQUIREMENTS SPECIFICATION (SSRS) TEMPLATE. Version A.4, January 2014 FOREWORD DOCUMENT CONVENTIONS
SYSTEMS AND SOFTWARE REQUIREMENTS SPECIFICATION (SSRS) TEMPLATE Version A.4, January 2014 FOREWORD This document was written to provide software development projects with a template for generating a System
NASA Workflow Tool. User Guide. September 29, 2010
NASA Workflow Tool User Guide September 29, 2010 NASA Workflow Tool User Guide 1. Overview 2. Getting Started Preparing the Environment 3. Using the NED Client Common Terminology Workflow Configuration
Parameter Fields and Prompts. chapter
Parameter Fields and Prompts chapter 23 Parameter Fields and Prompts Parameter and prompt overview Parameter and prompt overview Parameters are Crystal Reports fields that you can use in a Crystal Reports
WHO STEPS Surveillance Support Materials. STEPS Epi Info Training Guide
STEPS Epi Info Training Guide Department of Chronic Diseases and Health Promotion World Health Organization 20 Avenue Appia, 1211 Geneva 27, Switzerland For further information: www.who.int/chp/steps WHO
The Import & Export of Data from a Database
The Import & Export of Data from a Database Introduction The aim of these notes is to investigate a conceptually simple model for importing and exporting data into and out of an object-relational database,
Developing Physical Solutions for InfoSphere Master Data Management Server Advanced Edition v11. MDM Workbench Development Tutorial
Developing Physical Solutions for InfoSphere Master Data Management Server Advanced Edition v11 MDM Workbench Development Tutorial John Beaven/UK/IBM 2013 Page 1 Contents Overview Machine Requirements
A Software Tool for. Automatically Veried Operations on. Intervals and Probability Distributions. Daniel Berleant and Hang Cheng
A Software Tool for Automatically Veried Operations on Intervals and Probability Distributions Daniel Berleant and Hang Cheng Abstract We describe a software tool for performing automatically veried arithmetic
PTC Integrity Eclipse and IBM Rational Development Platform Guide
PTC Integrity Eclipse and IBM Rational Development Platform Guide The PTC Integrity integration with Eclipse Platform and the IBM Rational Software Development Platform series allows you to access Integrity
M3039 MPEG 97/ January 1998
INTERNATIONAL ORGANISATION FOR STANDARDISATION ORGANISATION INTERNATIONALE DE NORMALISATION ISO/IEC JTC1/SC29/WG11 CODING OF MOVING PICTURES AND ASSOCIATED AUDIO INFORMATION ISO/IEC JTC1/SC29/WG11 M3039
Microsoft Query, the helper application included with Microsoft Office, allows
3 RETRIEVING ISERIES DATA WITH MICROSOFT QUERY Microsoft Query, the helper application included with Microsoft Office, allows Office applications such as Word and Excel to read data from ODBC data sources.
Microsoft Access 2007
How to Use: Microsoft Access 2007 Microsoft Office Access is a powerful tool used to create and format databases. Databases allow information to be organized in rows and tables, where queries can be formed
Introduction to Database Systems
Introduction to Database Systems A database is a collection of related data. It is a collection of information that exists over a long period of time, often many years. The common use of the term database
What to Do If You Fail the PMP Exam
What to Do If You Fail the PMP Exam What s in the ebook? This guide will teach you everything you need to know about what to do if you fail the PMP exam, including strategy, identifying your weaknesses
An Iterative Usability Evaluation Procedure for Interactive Online Courses
An Iterative Usability Evaluation Procedure for Interactive Online Courses by Laurie P. Dringus ABSTRACT The Internet and World Wide Web (W3) have afforded distance learners simple links to access information.
Exercises Engenharia de Software (cod. 5386 & 6633 )
Exercises Engenharia de Software (cod. 5386 & 6633 ) Departamento de Informática Universidade da Beira Interior Ano lectivo 2010/2011 These exercises are taken from Software Engineering, 9th edition, Pearson
Screen Design : Navigation, Windows, Controls, Text,
Overview Introduction Fundamentals of GUIs - methods - Some examples Screen : Navigation, Windows, Controls, Text, Evaluating GUI Performance 1 Fundamentals of GUI What kind of application? - Simple or
Introduction to XML Applications
EMC White Paper Introduction to XML Applications Umair Nauman Abstract: This document provides an overview of XML Applications. This is not a comprehensive guide to XML Applications and is intended for
CHAPTER 4: BUSINESS ANALYTICS
Chapter 4: Business Analytics CHAPTER 4: BUSINESS ANALYTICS Objectives Introduction The objectives are: Describe Business Analytics Explain the terminology associated with Business Analytics Describe the
Iotivity Programmer s Guide Soft Sensor Manager for Android
Iotivity Programmer s Guide Soft Sensor Manager for Android 1 CONTENTS 2 Introduction... 3 3 Terminology... 3 3.1 Physical Sensor Application... 3 3.2 Soft Sensor (= Logical Sensor, Virtual Sensor)...
Managing large sound databases using Mpeg7
Max Jacob 1 1 Institut de Recherche et Coordination Acoustique/Musique (IRCAM), place Igor Stravinsky 1, 75003, Paris, France Correspondence should be addressed to Max Jacob ([email protected]) ABSTRACT
UML for C# Modeling Basics
UML for C# C# is a modern object-oriented language for application development. In addition to object-oriented constructs, C# supports component-oriented programming with properties, methods and events.
What's New In DITA CMS 4.0
What's New In DITA CMS 4.0 WWW.IXIASOFT.COM / DITACMS v. 4.0 / Copyright 2014 IXIASOFT Technologies. All rights reserved. Last revised: December 11, 2014 Table of contents 3 Table of contents Chapter
Rational Reporting. Module 3: IBM Rational Insight and IBM Cognos Data Manager
Rational Reporting Module 3: IBM Rational Insight and IBM Cognos Data Manager 1 Copyright IBM Corporation 2012 What s next? Module 1: RRDI and IBM Rational Insight Introduction Module 2: IBM Rational Insight
Evaluation of Students' Modeling and Programming Skills
Evaluation of Students' Modeling and Programming Skills Birgit Demuth, Sebastian Götz, Harry Sneed, and Uwe Schmidt Technische Universität Dresden Faculty of Computer Science Abstract. In winter semester
WA Manager Alarming System Management Software Windows 98, NT, XP, 2000 User Guide
WA Manager Alarming System Management Software Windows 98, NT, XP, 2000 User Guide Version 2.1, 4/2010 Disclaimer While every effort has been made to ensure that the information in this guide is accurate
Oracle Database 10g: Introduction to SQL
Oracle University Contact Us: 1.800.529.0165 Oracle Database 10g: Introduction to SQL Duration: 5 Days What you will learn This course offers students an introduction to Oracle Database 10g database technology.
Call Recorder Oygo Manual. Version 1.001.11
Call Recorder Oygo Manual Version 1.001.11 Contents 1 Introduction...4 2 Getting started...5 2.1 Hardware installation...5 2.2 Software installation...6 2.2.1 Software configuration... 7 3 Options menu...8
Chapter 1 Databases and Database Users
Chapter 1 Databases and Database Users Copyright 2011 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Chapter 1 Outline Introduction An Example Characteristics of the Database Approach Actors
EMC Documentum Repository Services for Microsoft SharePoint
EMC Documentum Repository Services for Microsoft SharePoint Version 6.5 SP2 Installation Guide P/N 300 009 829 A01 EMC Corporation Corporate Headquarters: Hopkinton, MA 01748 9103 1 508 435 1000 www.emc.com
A Framework of Context-Sensitive Visualization for User-Centered Interactive Systems
Proceedings of 10 th International Conference on User Modeling, pp423-427 Edinburgh, UK, July 24-29, 2005. Springer-Verlag Berlin Heidelberg 2005 A Framework of Context-Sensitive Visualization for User-Centered
Copyright 2011 Pearson Education, Inc. Publishing as Pearson Addison-Wesley. Chapter 1 Outline
Chapter 1 Databases and Database Users Copyright 2011 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Introduction Chapter 1 Outline An Example Characteristics of the Database Approach Actors
CHAPTER 1: CLIENT/SERVER INTEGRATED DEVELOPMENT ENVIRONMENT (C/SIDE)
Chapter 1: Client/Server Integrated Development Environment (C/SIDE) CHAPTER 1: CLIENT/SERVER INTEGRATED DEVELOPMENT ENVIRONMENT (C/SIDE) Objectives Introduction The objectives are: Discuss Basic Objects
æ A collection of interrelated and persistent data èusually referred to as the database èdbèè.
CMPT-354-Han-95.3 Lecture Notes September 10, 1995 Chapter 1 Introduction 1.0 Database Management Systems 1. A database management system èdbmsè, or simply a database system èdbsè, consists of æ A collection
2 SQL in iseries Navigator
2 SQL in iseries Navigator In V4R4, IBM added an SQL scripting tool to the standard features included within iseries Navigator and has continued enhancing it in subsequent releases. Because standard features
Frequency, definition Modifiability, existence of multiple operations & strategies
Human Computer Interaction Intro HCI 1 HCI's Goal Users Improve Productivity computer users Tasks software engineers Users System Cognitive models of people as information processing systems Knowledge
Web Intelligence User Guide
Web Intelligence User Guide Office of Financial Management - Enterprise Reporting Services 4/11/2011 Table of Contents Chapter 1 - Overview... 1 Purpose... 1 Chapter 2 Logon Procedure... 3 Web Intelligence
Chapter 2 Database System Concepts and Architecture
Chapter 2 Database System Concepts and Architecture Copyright 2011 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Chapter 2 Outline Data Models, Schemas, and Instances Three-Schema Architecture
Introduction to Windows XP Operating System
Introduction to Windows XP Operating System Introduction to Windows XP Operating System Document Syllabus Course Description: This workshop will introduce basic Windows operating system concepts. Using
Publishing Reports in Tableau
Requesting Tableau System Access... 2 Terms and Definitions... 2 License Levels... 2 User Rights... 2 Permissions... 2 Viewer... 3 Interactor... 3 Editor... 3 Publisher... 3 Project Leader... 4 Custom...
1 File Processing Systems
COMP 378 Database Systems Notes for Chapter 1 of Database System Concepts Introduction A database management system (DBMS) is a collection of data and an integrated set of programs that access that data.
Specific Information for installation and use of the database Report Tool used with FTSW100 software.
Database Report Tool This manual contains: Specific Information for installation and use of the database Report Tool used with FTSW100 software. Database Report Tool for use with FTSW100 versions 2.01
System Software. 2.1 The Operating System (OS) %%describe the characteristics of different types
System Software 2 Revision Objectives After you have studied this chapter, you should be able to: %%describe the purpose of operating systems %%describe the characteristics of different types of operating
DataPA OpenAnalytics End User Training
DataPA OpenAnalytics End User Training DataPA End User Training Lesson 1 Course Overview DataPA Chapter 1 Course Overview Introduction This course covers the skills required to use DataPA OpenAnalytics
SignalDraw: GUI Tool For Generating Pulse Sequences
SignalDraw: GUI Tool For Generating Pulse Sequences Konstantin Berlin Department of Computer Science University of Maryland College Park, MD 20742 [email protected] December 9, 2005 Abstract Generating
Tutorial Reference Manual. Java WireFusion 4.1
Tutorial Reference Manual Java WireFusion 4.1 Contents INTRODUCTION...1 About this Manual...2 REQUIREMENTS...3 User Requirements...3 System Requirements...3 SHORTCUTS...4 DEVELOPMENT ENVIRONMENT...5 Menu
File Management Where did it go? Teachers College Summer Workshop
File Management Where did it go? Teachers College Summer Workshop Barbara Wills University Computing Services Summer 2003 To Think About The Beginning of Wisdom is to Call Things by the Right Names --
White Paper: Designing Resourceful Graphical User Interfaces (GUIs) for Healthcare Applications
Accelerate Development Reduce Time to Product Automate Critical Tasks White Paper: Designing Resourceful Graphical User Interfaces (GUIs) for Healthcare Applications The ASHVINS GROUP, Inc. 6161 Blue Lagoon
Oracle Database: SQL and PL/SQL Fundamentals NEW
Oracle University Contact Us: + 38516306373 Oracle Database: SQL and PL/SQL Fundamentals NEW Duration: 5 Days What you will learn This Oracle Database: SQL and PL/SQL Fundamentals training delivers the
Oracle Database: SQL and PL/SQL Fundamentals
Oracle University Contact Us: 1.800.529.0165 Oracle Database: SQL and PL/SQL Fundamentals Duration: 5 Days What you will learn This course is designed to deliver the fundamentals of SQL and PL/SQL along
TestManager Administration Guide
TestManager Administration Guide RedRat Ltd July 2015 For TestManager Version 4.57-1 - Contents 1. Introduction... 3 2. TestManager Setup Overview... 3 3. TestManager Roles... 4 4. Connection to the TestManager
Change Management for Rational DOORS User s Guide
Change Management for Rational DOORS User s Guide Before using this information, read the general information under Appendix: Notices on page 58. This edition applies to Change Management for Rational
Distributed Version Control with Mercurial and git
OpenStax-CNX module: m37404 1 Distributed Version Control with Mercurial and git Hannes Hirzel This work is produced by OpenStax-CNX and licensed under the Creative Commons Attribution License 3.0 Abstract
BID2WIN Workshop. Advanced Report Writing
BID2WIN Workshop Advanced Report Writing Please Note: Please feel free to take this workbook home with you! Electronic copies of all lab documentation are available for download at http://www.bid2win.com/userconf/2011/labs/
FileMaker 11. ODBC and JDBC Guide
FileMaker 11 ODBC and JDBC Guide 2004 2010 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker is a trademark of FileMaker, Inc. registered
International Journal of Scientific & Engineering Research, Volume 4, Issue 11, November-2013 5 ISSN 2229-5518
International Journal of Scientific & Engineering Research, Volume 4, Issue 11, November-2013 5 INTELLIGENT MULTIDIMENSIONAL DATABASE INTERFACE Mona Gharib Mohamed Reda Zahraa E. Mohamed Faculty of Science,
EMC Documentum Composer
EMC Documentum Composer Version 6.5 User Guide P/N 300 007 217 A02 EMC Corporation Corporate Headquarters: Hopkinton, MA 01748 9103 1 508 435 1000 www.emc.com Copyright 2008 EMC Corporation. All rights
Relational Database Basics Review
Relational Database Basics Review IT 4153 Advanced Database J.G. Zheng Spring 2012 Overview Database approach Database system Relational model Database development 2 File Processing Approaches Based on
WA1802 SOA for Architects Using WebSphere ESB. Student Labs. Web Age Solutions Inc.
WA1802 SOA for Architects Using WebSphere ESB Student Labs Web Age Solutions Inc. 1 Table of Contents Lab 7 - Service Composition Pattern...3 2 Lab 7 - Service Composition Pattern Service composition is
Falcon Document Management Software VDOT Training Guide For the Windows Document Manager to be used in conjunction with PowerScope
Falcon Document Management Software VDOT Training Guide For the Windows Document Manager to be used in conjunction with PowerScope Version 1.0 1 The Falcon/DMS Document Manager (Introduction) The Document
Component, Model and Library Concepts. Components - the Basic Building Blocks. Modified by on 2-Jul-2014
Component, Model and Library Concepts Modified by on 2-Jul-2014 This article explains Altium Designer components, models and libraries, and their relationships. Approaches for identifying and managing
TechTips. Connecting Xcelsius Dashboards to External Data Sources using: Web Services (Dynamic Web Query)
TechTips Connecting Xcelsius Dashboards to External Data Sources using: Web Services (Dynamic Web Query) A step-by-step guide to connecting Xcelsius Enterprise XE dashboards to company databases using
Web-Based Genomic Information Integration with Gene Ontology
Web-Based Genomic Information Integration with Gene Ontology Kai Xu 1 IMAGEN group, National ICT Australia, Sydney, Australia, [email protected] Abstract. Despite the dramatic growth of online genomic
METADATA-DRIVEN QLIKVIEW APPLICATIONS AND POWERFUL DATA INTEGRATION WITH QLIKVIEW EXPRESSOR
METADATA-DRIVEN QLIKVIEW APPLICATIONS AND POWERFUL DATA INTEGRATION WITH QLIKVIEW EXPRESSOR A QlikView Technical Brief Document March 2013 qlikview.com Introduction This technical brief highlights a subset
Bloomberg 1 Database Extension for EViews
Bloomberg 1 Database Extension for EViews Overview The Bloomberg Database Extension is a new feature for EViews 8.1 that adds easy access to Bloomberg s extensive collection of market and economic data
Using the TASKING Software Platform for AURIX
Using the TASKING Software Platform for AURIX MA160-869 (v1.0rb3) June 19, 2015 Copyright 2015 Altium BV. All rights reserved. You are permitted to print this document provided that (1) the use of such
Button, Button, Whose got the Button?
,, Whose got the?,, Whose got the? (Patterns for breaking client/server relationships) By Robert C. Martin Introduction How many design patterns does it take to turn on a table lamp? This question was
Visual Studio.NET Database Projects
Visual Studio.NET Database Projects CHAPTER 8 IN THIS CHAPTER Creating a Database Project 294 Database References 296 Scripts 297 Queries 312 293 294 Visual Studio.NET Database Projects The database project
Common European Framework of Reference for Languages: learning, teaching, assessment. Table 1. Common Reference Levels: global scale
Common European Framework of Reference for Languages: learning, teaching, assessment Table 1. Common Reference Levels: global scale C2 Can understand with ease virtually everything heard or read. Can summarise
AIMMS User s Guide - Advanced Data Management
AIMMS User s Guide - Advanced Data Management This file contains only one chapter of the book. For a free download of the complete book in pdf format, please visit www.aimms.com or order your hardcopy
Architecture Design & Sequence Diagram. Week 7
Architecture Design & Sequence Diagram Week 7 Announcement Reminder Midterm I: 1:00 1:50 pm Wednesday 23 rd March Ch. 1, 2, 3 and 26.5 Hour 1, 6, 7 and 19 (pp.331 335) Multiple choice Agenda (Lecture)
BI solutions with Visio Graphical visualizations with Visio, SharePoint and Visio Services
BI solutions with Visio Graphical visualizations with Visio, SharePoint and Visio Services More or less every user of Microsoft office in an organization knows Visio or gets to know it sooner or later.
Semantic Search in Portals using Ontologies
Semantic Search in Portals using Ontologies Wallace Anacleto Pinheiro Ana Maria de C. Moura Military Institute of Engineering - IME/RJ Department of Computer Engineering - Rio de Janeiro - Brazil [awallace,anamoura]@de9.ime.eb.br
Gladinet Cloud Backup V3.0 User Guide
Gladinet Cloud Backup V3.0 User Guide Foreword The Gladinet User Guide gives step-by-step instructions for end users. Revision History Gladinet User Guide Date Description Version 8/20/2010 Draft Gladinet
National Fire Incident Reporting System (NFIRS 5.0) NFIRS Data Entry/Validation Tool Users Guide
National Fire Incident Reporting System (NFIRS 5.0) NFIRS Data Entry/Validation Tool Users Guide NFIRS 5.0 Software Version 5.6 1/7/2009 Department of Homeland Security Federal Emergency Management Agency
Using SQL Server Management Studio
Using SQL Server Management Studio Microsoft SQL Server Management Studio 2005 is a graphical tool for database designer or programmer. With SQL Server Management Studio 2005 you can: Create databases
Fireworks 3 Animation and Rollovers
Fireworks 3 Animation and Rollovers What is Fireworks Fireworks is Web graphics program designed by Macromedia. It enables users to create any sort of graphics as well as to import GIF, JPEG, PNG photos
