Julia Eclipse Plugin User Manual. Version 2.6.0

Size: px
Start display at page:

Download "Julia Eclipse Plugin User Manual. Version 2.6.0"

Transcription

1 Version 2.6.0

2 Table of Contents Introduction Installation Settings Running Julia Navigating the Results Managing analyses results Extraction of the application under analysis Julia Java Project Wizard Julia Android Project wizard Additional features and tools Compute Metrics

3 Introduction This user guide presents the Eclipse plugin of Julia. Julia is a sta c analyzer that automa cally performs seman c analysis of Java code. The Eclipse plugin allows a user to (i) set up the URL of the Julia Server and her creden als, (ii) select the op ons of the analysis and run it, and (iii) inspect the results. In addi on, this user guide explains step-by-step how to install the plugin. Installation First of all, you need to install the plugin by clicking Help from the bar menu, and then Install New Software. An Install panel will appear. From there, fill the Work with text field with the URL h p://sta c.juliaso.com/eclipseplugin/latest/, then click Add, and select a name A er clicking Ok, in the central part of the Install panel the components of the Julia plugin will appear. Just click Next to go ahead with the installation. 3

4 Click Next in the panel about the install details. Finally, you have to accept the license and click Finish to start the download and installa on of the Julia plugin. At the end of the installation, you will need to restart Eclipse. Settings The menu bar will now contain a new menu Julia : - Analyze with Julia will open the panel to set up and start the analysis, - Show Julia Analysis View will open in the view panel the Julia Analysis view (see "Accessing the results for more details), - Import Analysis from File will allow you to load the results of previous analyses saved in a.xml file, - Retrieve Analysis from Server will allow you to 4

5 load the results of previous analyses, and - Preferences will open a panel to specify the server and the creden als to run the analysis (see below). In the Preferences panel, you can specify the URL of the Julia Analyzer ( for the cloud service), your access and secret key, and you can acquire your list of solu ons and select one of them. Furthermore, in this panel you can also specify the port number for incoming requests (or let the system choose an available port number), which is only necessary during web view naviga on (i.e. flow graphs view). Running Julia You have two ways to run Julia: 1) From the menu bar, click Julia and then "Analyze with Julia" 2) Click the Julia icon 5

6 When star ng the analysis the Julia Analysis wizard will appear. From here, you have to select the projects you want to analyze (le part), the dependencies to include (right part) and the op on to include.proper es files launching the analysis. Then you can click Next. The second step lets you choose what entry points the analysis should consider (for more details see the sec on Extrac on of the applica on under analysis ), the Julia framework against with the analysis will be done, the processing mode to be used for libraries and finally the way the analysis has to threat asser on statements. Then you can click Next. The third and last step before running the analysis is to select the checkers you want to apply; checkers are represented in a tree view (le part) and many of them have some op ons (their children). We strongly encourage to run only the Basic checkers as default, and run more Advanced checkers only if needed. Julia s website contains the exhaus ve explana on of all Julia checkers. Once you select a checker, you may choose to select some of its options too (its children in the tree); the right panel will always help you showing a brief explana on of the currently selected checker/op on in the tree. For each op on, you can select a specific value (e.g., true or false) through a drop down menu at the bo om. In the bottom left part you can Save or load configurations, i.e., entry points and checkers the analysis will apply. Finally, the analysis can be launched by clicking Finish. 6

7 A dialog will tell you how many credits the analysis will cost. If you want to proceed, click Ok and the credit will be deducted from you account. Otherwise, click Cancel and the credits will not be debited. During the analysis, in the bo om Julia view you can monitor the status of the analysis. It will become green once the analysis will be finished. You can monitor the progresses of the analysis in the console. Navigating the Results At the end of the analysis, the view Julia Analyses will show the results. In par cular, in the le part you can access the list of analyses you ran. Once chosen one of them, the central part of the view will display all the warnings in a tree structure. You can then inspect the warnings produced by different checkers, on different packages, etc If you double click on a warning, the line of the source code that produced that warning is displayed. Finally, the right part of the Julia analyses panel shows the details of the warning. The Eclipse code editor contains markers on the le bar to iden fy the code lines that raised a warning. Different colors represent different severi es (red for high, yellow for medium, and green for low severity). 7

8 You can decide to group the warnings in the central panel of the Julia view in different ways. Just click and a dialog showing all the grouping possibili es will appear. You can decide the order and the types of categories you want to apply to group warnings. The warnings will be then displayed with the new grouping in the central panel. In the context of flow analyses (including GDPR checker), the rightmost column of the Julia Analyses View lets you navigate analysis flows. A er selec ng a warning on the tree, you can view its flows clicking on the Show bu on that appears at the end of the analysis proper es; a new dialog will list the flows related to the selected warning allowing to open a single graph in a web browser view. 8

9 The graph can be explored at the desired level: available levels are Package, Class, Method, Source Line or Statement. This view also lets you reach the line of the source code a given node of the graph refers to, this can be done by right clicking on the node itself, only for Line or Statement nodes. Managing analyses results In the le part of the Julia analyses view, you can select among all the analyses you ran. Each me you click on an analysis, the warnings tree will be loaded, and the markers will be updated to the ones of the selected analysis. If you right click the name of the analysis in the le panel, you can Reload from the server the analysis results. This feature is par cularly useful if you exit the IDE while the analysis is running, and you want to load the results later. In addition, from this drop-down menu you can also copy the analysis ID, rename or delete the analysis and open the analysis detail in the Julia Web Console. You can export the result of the analysis: click and select where to save the.xml file. You can import the results of a completed analysis through 1) an.xml file by clicking and selec ng the file you want to import 9

10 2) by clicking Retrieve Analysis from Server from the Julia s Menu bar, and then selec ng the analysis you want to load from the list of the analyses available on server for your current Ac ve Solution. The pdf report of the analysis can be downloaded by clicking Save generated files and then the report you want to download. You can manage the markers from the standard Markers Eclipse view (accessible from Show View of the Window menu bar). From here, you can also delete a marker. This will be removed from the Julia Analyses view as well. Extraction of the application under analysis The Julia analyzer computes a set of methods and constructors that are assumed to be callable from the user of the program under analysis. They are called entry points. This means that the sta c analysis is performed as if the entry points were the only methods that can be called from the user of the code. Of course, if the entry points call other methods, these other methods are analyzed as well, and so on. Julia selects the set of entry points according to three possible alternatives: 1. Only main. With this modality, Julia automa cally selects as entry points the main() methods and all methods that override a library method, such as run() methods of threads or equals() methods. This also includes event handlers of Swing or Android. Moreover, entry points explicitly marked as such by the programmer are considered. 2. All public entries. With this modality, Julia automa cally selects as entry points those selected with the previous modality, plus all public methods and constructors. 3. All accessible. With this modality, Julia behaves as in the previous modality but assumes that non-final methods can be redefined in subclasses. This allows one to analyze classes that are expected to be subclassed by the user of the code. Note, however, that this reduces the precision of the analysis, since most data flow inferences cannot be performed anymore (the code might change its behavior by subclassing). 10

11 Julia Java Project Wizard The Eclipse plugin of Julia comes with a project wizard that helps during the crea on of a java project that acts as container for third-party classes and sources that you would like to put under analysis. Open the Eclipse New Wizard window (Ctrl + N) and select Julia Java Project from the list, then click "Next" Fill the Project Name text and op onally specify a different location for the project, then click "Next" Select the folder for classes and op onally the folder for sources; through the Link classes and Link sources checkboxes you may opt to 11

12 physically copy classes and/or sources within your project or just link them. Moreover, if your classes and sources come from the same folder, you just have to select Sources and classes share the same path once entered classes path. Finally click "Finish" If specified paths really contain expected resources, you will find the new project within the Eclipse workspace; in this example, the sources folder has been created as a link folder 12

13 Note that projects created through this wizard has inten onally no Java Builder associated, therefore no compila on phase will ever be involved le ng class files stay unaltered. Julia Android Project wizard The Julia plugin also lets you create a par cular Eclipse project star ng from either an apk file or the Android Studio/Gradle build output; this way it is possible to submit a Julia analysis in typical Android scenarios without the need of the complete development toolchain installed in your machine (i.e. a release from a separate supplier/department). Open the Eclipse New Wizard window (Ctrl + N) and select Julia Android Project from the list, then click "Next" 13

14 Fill the Project Name text and op onally specify a different location for the project, then click "Next" According to the scenario you are facing with, you may now choose to specify what you want to analyze in two dis nct ways: providing the apk file of your app or specifying the classes folder of the Android build process output. In both these situa ons you must also specify the framework against with the analysis will be done. In the first case, once the apk file has been specifyed, the correct Framework is automa cally preselected deriving it from the contained AndroidManifest.xml. In the second case, you are asked to provide both the path of your classes and the AndroidManifest.xml of the app. Again, once specified, the Framework field will be automa cally filled. Depending on your needs you are always free to choose a different framework version. Finally, you can op onally specify the folder for sources; through the Link sources checkbox you may opt to physically copy sources within your project or just link them. Finally click Finish. Additional features and tools Compute Metrics The Eclipse plugin of Julia provides an utility that let you obtain some metrics before the submit of an analysis, to evaluate in advance the logical and physical source size of your project. 14

15 Right click on a project (from the Package Explorer view) and choose Julia, then Compute Metrics Requested metrics will soon be visualized in a separated window, ready for your evaluation. 15

16 JuliaSoft is an innovative technology company specialized in advanced code analysis solutions. For more information on the technology and our solutions please visit our website at For any information please don t hesitate to contact us: JULIASOFT SRL Management and Coordination by Corvallis Holding S.p.A. Lungadige Galtarossa, Verona, Italy Tel info@juliasoft.com For technical support please write to support@juliasoft.com 16

Julia Eclipse Plugin User Manual Table of Contents

Julia Eclipse Plugin User Manual Table of Contents Julia Eclipse Plugin User Manual Table of Contents Introduction Installation Settings Running Julia Navigating the Results Managing analyses results Extraction of the application under analysis Julia Java

More information

PASSWORD SHIELD. User Manual

PASSWORD SHIELD. User Manual PASSWORD SHIELD User Manual Table of Contents Welcome...3 Compa bility...3 Installa on Guide and Database Crea on...4 Registra on...7 Workspace...8 Control Bu ons...9 File...12 Edit...13 View...14 Tools...15

More information

Digital Analy 韜 cs Installa 韜 on and Configura 韜 on

Digital Analy 韜 cs Installa 韜 on and Configura 韜 on Home > Digital AnalyĀcs > Digital Analy 韜 cs Installa 韜 on and Configura 韜 on Digital Analy 韜 cs Installa 韜 on and Configura 韜 on Introduc 韜 on Digital Analy 韜 cs is an e automate applica 韜 on that assists

More information

PC PRIVACY SHIELD. User Manual. PC Privacy Shield

PC PRIVACY SHIELD. User Manual. PC Privacy Shield PC PRIVACY SHIELD User Manual Table of Contents Welcome...3 Compa bility...3 Installa on and First Scan...5 Registra on...7 Status Screen...8 Ac ve Cleaning...9 Features Bar...9 Scan and Clean...10 User

More information

Networking for Wide Format Printers

Networking for Wide Format Printers Networking for Wide Format Printers Table of Contents Configure PC before RIP Installa on... 1 Verifying Your Network Se ngs for Mac Communica on... 3 Changing Your Network Adapter for Mac Communica on...

More information

REGION: NORTH AMERICA

REGION: NORTH AMERICA R U M A REGION: NORTH AMERICA R U M A Chapter Issue Date 1 Introduc on 05/21/2012 2 Install and Upgrade Minimum Hardware Requirements Android Opera ng System and Wi Fi Se ngs Installing Revoquest the First

More information

DIRECT SUPPLIER P RTAL INSTRUCTIONS

DIRECT SUPPLIER P RTAL INSTRUCTIONS DIRECT SUPPLIER P RTAL INSTRUCTIONS page I IMPORTANT Please complete short Online Tutorials and Quiz at www.supplierportal.coles.com.au/dsd TABLE of Contents 1 Ingredients 2 Log In 3 View a Purchase Order

More information

User Guide for Undergraduate & Postgraduate Students using the Ethics Online Approval System

User Guide for Undergraduate & Postgraduate Students using the Ethics Online Approval System User Guide for Undergraduate & Postgraduate Students using the Ethics Online Approval System Ethical approval must be obtained for all research projects prior to the commencement of the research. Northumbria

More information

WEB TEACHER GUIDE. ebackpack provides a separate Student Guide through our support site at

WEB TEACHER GUIDE. ebackpack provides a separate Student Guide through our support site at ebackpack Web Teacher Guide Page 1 of 21 WEB TEACHER GUIDE This guide will cover basic usage of ebackpack for a teacher (assignments, storage, homework review, collaboration, and Act As support). If you

More information

OPTIONAL EXERCISE 1: CREATING A FUSION PROJECT PART A

OPTIONAL EXERCISE 1: CREATING A FUSION PROJECT PART A Exercise Objec ves In the previous exercises, you were provided a full Fusion LIDAR dataset. In this exercise, you will begin with raw LIDAR data and create a new Fusion project one that will be as complete

More information

EXERCISE 2: GETTING STARTED WITH FUSION

EXERCISE 2: GETTING STARTED WITH FUSION Exercise Objec ves In this exercise, you ll be using the fully prepared example data to explore the basics of FUSION. Prerequisites Successful comple on of Exercise 1 (Download and Install FUSION and the

More information

RefWorks User Quick Start Guide VERSION 5.0

RefWorks User Quick Start Guide VERSION 5.0 RefWorks User Quick Start Guide VERSION 5.0 LOGGING IN Access www.refworks.com/refworks and then enter your personal Login Name and Password. (First- me users need to sign up for an individual account

More information

User Guide for Staff and Postgraduate Research Students using the Ethics Online Approval System

User Guide for Staff and Postgraduate Research Students using the Ethics Online Approval System User Guide for Staff and Postgraduate Research Students using the Ethics Online Approval System Ethical approval must be obtained for all research projects prior to the commencement of the research. Northumbria

More information

BT SIP Trunk CRF User Guide - BT Sales / Originator + Specialist

BT SIP Trunk CRF User Guide - BT Sales / Originator + Specialist BT SIP Trunk CRF User Guide - BT Sales / Originator + Specialist The following informa on provides an overview of how to use and complete the SIP Trunk elements of the BT System CRF portal. 1. Introduc

More information

DFM Concurrent Costing

DFM Concurrent Costing Die Casting Analysis Start a new analysis For the purposes of this tutorial we will es mate the cost per part of manufacturing 200,000 of the disk drive casings shown here: front The material is to be

More information

Quick Reference Guide for Blackboard Elluminate Virtual Classroom Part 1

Quick Reference Guide for Blackboard Elluminate Virtual Classroom Part 1 Quick Reference Guide for Blackboard Elluminate Virtual Classroom Part 1 Virtual Classroom Elluminate Live! is a real-time (synchronous) virtual classroom environment that has been integrated with the

More information

LPC PORTAL. Student User Guide

LPC PORTAL. Student User Guide LPC PORTAL Student User Guide Table of Contents Login Instruc ons.. 3 Access Your Schedule.. 3 Search for Classes..... 4 Transcript.... 4 Update Your Personal Informa on... 5 Registra on Instruc ons. 6

More information

Mend for Eclipse quick start guide local analysis

Mend for Eclipse quick start guide local analysis The Semmle Mend for Eclipse plugin allows users to view Semmle results in Eclipse. This document describes how to install and use the plugin for local analysis. You can install the plugin using a Semmle

More information

RefWorks User Quick Start Guide VERSION 6.0

RefWorks User Quick Start Guide VERSION 6.0 RefWorks User Quick Start Guide VERSION 6.0 LOGGING IN Access www.cityu.edu.hk/lib/eres/refworks/. Click Log in RefWorks button. Enter your name, CityU ID and Library PIN. Enter Login Name and Password

More information

electronic license applications user s guide Contents What you need Page 1 Get started Page 3 Paper Non-Resident Licensing Page 10

electronic license applications user s guide Contents What you need Page 1 Get started Page 3 Paper Non-Resident Licensing Page 10 applications Contents What you need Page 1 Get started Page 3 Paper Non-Resident Licensing Page 10 Welcome to the Na onal Insurance Producer Registry s applications The give producers the ability to quickly

More information

INTRODUCTION... 3 INSTALLATION GUIDE FOR ECLIPSE 3.1 AND INSTALLATION GUIDE FOR ECLIPSE 3.3 TO

INTRODUCTION... 3 INSTALLATION GUIDE FOR ECLIPSE 3.1 AND INSTALLATION GUIDE FOR ECLIPSE 3.3 TO INTRODUCTION... 3 INSTALLATION GUIDE FOR ECLIPSE 3.1 AND 3.2... 4 INSTALLATION GUIDE FOR ECLIPSE 3.3 TO 4.3... 23 INSTALLATION GUIDE FOR ECLIPSE 4.4 OR HIGHER... 37 ECLIPSE VIEWERS... 41 DEVICES... 41

More information

Q. How do I start using Mānoa Guardian? A. Go to the App Store or Google Play on your mobile device and download the app. Search for Rave Guardian.

Q. How do I start using Mānoa Guardian? A. Go to the App Store or Google Play on your mobile device and download the app. Search for Rave Guardian. How it Works Q: Why use? A. is designed to allow users quick and easy contact with UH Mānoa Department of Public Safety (DPS) officers, and has addi onal features for increasing safety on campus. Using,

More information

ADMIN TRAINING GUIDE FEBRUARY 22, 2017 STAFFING SYSTEM NIGHT OWL PRODUCTIONS ENTERPRISE SYSTEMS & SERVICES KENNESAW STATE UNIVERSITY

ADMIN TRAINING GUIDE FEBRUARY 22, 2017 STAFFING SYSTEM NIGHT OWL PRODUCTIONS ENTERPRISE SYSTEMS & SERVICES KENNESAW STATE UNIVERSITY ADMIN TRAINING GUIDE FEBRUARY 22, 2017 STAFFING SYSTEM NIGHT OWL PRODUCTIONS ENTERPRISE SYSTEMS & SERVICES KENNESAW STATE UNIVERSITY Table of Contents Welcome to Night Owl Produc ons!... 3 Accessing Night

More information

In 2018 the Council has modernized the website. Most of the func- onality of the old site has remained with a fresh new look and naviga on.

In 2018 the Council has modernized the website. Most of the func- onality of the old site has remained with a fresh new look and naviga on. In 2018 the Council has modernized the website. Most of the func- onality of the old site has remained with a fresh new look and naviga on. Above is the current Home page which incorporates rota ng images

More information

Permits User s Guide. Submit Application. Upload Files & Pay Fees. Plan Review Process. Final PreScreen. Project Approval. Electronic Plan Review

Permits User s Guide. Submit Application. Upload Files & Pay Fees. Plan Review Process. Final PreScreen. Project Approval. Electronic Plan Review New Castle County Land Use Permits Sec on Electronic Plan Review Permits User s Guide Submit Application Upload Files & Pay Fees Plan Review Process Final PreScreen Project Approval Rev. 06/2018 2 l eplans

More information

Remote Ticket Entry. System/User Requirements

Remote Ticket Entry. System/User Requirements North Carolina 811, Inc. 2300 West Meadowview Rd Suite 227 Greensboro, North Carolina 27407 336.855.5760 Remote Ticket Entry An internet based cket entry system, Remote Ticket Entry (RTE), allows excavators

More information

XSEDE Iden ty Management Use Cases

XSEDE Iden ty Management Use Cases XSEDE Iden ty Management Use Cases January 6, 2017 Version 1.3 These use cases describe how researchers, scien sts, and other community members register themselves with the XSEDE system, manage their profile

More information

1 / Develop a User Process

1 / Develop a User Process Develop a User Process Introduction The User process program allows you to install into the DFM Concurrent Cos ng so ware your own cost model for a manufacturing process. For this tutorial, an imaginary

More information

New n Member Polygon and Grid Maintenance

New n Member Polygon and Grid Maintenance North Carolina 811, Inc. 2300 W. Meadowview Rd Suite 227 Greensboro, North Carolina 27407 New n Member Polygon and Grid Maintenance Users Manual Updated: August 5, 2016 Table of Contents Introduc on Overview

More information

RoboDC_urcap convert DXF file into robot trajectories, from the robot interface! URcaps are plugins to extends Universal Robot fonc onnali es.

RoboDC_urcap convert DXF file into robot trajectories, from the robot interface! URcaps are plugins to extends Universal Robot fonc onnali es. http://www.pygmatec.com/robodc/doc/ Docs» RoboDC RoboDC Urcap URcap created by Pygmatec. Before using RoboDc, you acknowledge that you have read these Terms of Use and agree to the terms of the License

More information

SIRE Solution Suite. Better Outcomes. Active Review Administration and User Manual. A Publication Of

SIRE Solution Suite. Better Outcomes. Active Review Administration and User Manual. A Publication Of Active Review Administration and User Manual SIRE Solution Suite An Official Manual of SIRE Technologies Document and Legislative Management Software Version 6.3 A Publication Of Better Outcomes. 2 SIRE

More information

AccessPilot Lock Software

AccessPilot Lock Software AccessPilot Lock Software User Manual TimePilot Corporation 340 McKee Street, Batavia, Illinois 60510 www.crossoverlock.com TimePilot Corporation, all rights reserved. Table of Contents Foreword... 3 Hardware

More information

Physician Reference Guide Paragon Clinician Hub Version 13.0

Physician Reference Guide Paragon Clinician Hub Version 13.0 Physician Reference Guide Paragon Clinician Hub Version 13.0 Table of Contents Table of Contents Clinician Hub 13.0 4 5 Clinician Hub 13.0 6 7 Key Features Clinician Hub 13.0 How to Unlock an Applica on

More information

Girl Scouts of San Jacinto Counci Troop Initial Order Guide

Girl Scouts of San Jacinto Counci Troop Initial Order Guide Girl Scouts of San Jacinto Counci 2019 Troop Initial Order Guide 1 Getting Ready! Troop Informa on Set your troop s proceed plan. Log in to Smart Cookies and go to My Troop, then Troop Informa on to change

More information

In order to update you will have to uninstall the current version and install the newer version using the same procedure.

In order to update you will have to uninstall the current version and install the newer version using the same procedure. Installing the 3M Cloud Library app on your Kindle Fire DISCLAIMER These instructions are to be used as a reference only. Please note that by downloading the 3M Cloud Library app you assume all risk of

More information

Windows user guide for version 3.3

Windows user guide for version 3.3 1 Windows user guide for version 3.3 2 Contents 1. Installation...4 1.1. How to install BABEL on your Windows desktop...4 2. Getting started...5 2.1. First run...5 2.2. Password setup...5 2.3. Key import...5

More information

KG-TOWER Software Download and Installation Instructions

KG-TOWER Software Download and Installation Instructions KG-TOWER Software Download and Installation Instructions Procedures are provided for three options to download and install KG-TOWER software version 5.1. Download to a temporary folder and install immediately.

More information

Riso Comcolor Series

Riso Comcolor Series Riso Comcolor Series Ge ng Started Guide No. 1 Ini al Setup Administrator Func ons Administrator Setup Default Se ngs User Names and Passwords Setup IC Card Control System Configura on Riso (UK) Limited

More information

Cost Share Authoriza on / Matching Support Form

Cost Share Authoriza on / Matching Support Form Cost Share Authoriza on / Matching Support Form Instruc ons for Users Updated: 9/01/2017 Process Overview PI or Department Coordinator completes Cost Share Authoriza on / Matching Support Form on BanWeb

More information

1. TriPOS update instructions to support TLS1.2

1. TriPOS update instructions to support TLS1.2 Content page 1. TriPOS update instructions to support TLS1.2 2 2. Web Browser configuration to support TLS 1.2 to make sure Vantiv Hosted Payments 3 Platform works properly. How I know my web browser supports

More information

EXERCISE 4: CALCULATE LIDAR METRICS

EXERCISE 4: CALCULATE LIDAR METRICS Exercise Objec ves There are three parts to this exercise. Part 1 describes the process to extract metrics from the fixed radius plot subsets created in the last exercise. Part 2 describes how to extract

More information

FIREFOX MENU REFERENCE This menu reference is available in a prettier format at

FIREFOX MENU REFERENCE This menu reference is available in a prettier format at FIREFOX MENU REFERENCE This menu reference is available in a prettier format at http://support.mozilla.com/en-us/kb/menu+reference FILE New Window New Tab Open Location Open File Close (Window) Close Tab

More information

SeedSense 2017 So ware Release Notes

SeedSense 2017 So ware Release Notes SeedSense 2017 So ware Release Notes 1. System Wide Changes 1.1 Updated the opera ng system on Gen2 20/20 displays 1.2 Added a 6 item mode to the home screen 1.3 Changed the default se ng to the Display

More information

Registering Your D1 with the System (Windows 2000)

Registering Your D1 with the System (Windows 2000) Registering Your D1 with the System (Windows 2000) Before You Begin Confirm that your OHCI-compliant IEEE 1394 board or card has been correctly recognized by the system. If the board or card has been correctly

More information

List of Known Toolbox Problems

List of Known Toolbox Problems List of Known Toolbox Problems 17 November 2009 These are all the known bugs and missing features of the TLA + Toolbox reported as of 17 November 2009. 1. New Feature Add way to tell if the spec on which

More information

Car Video Recorder. RoadRunner 535W. User Manual

Car Video Recorder. RoadRunner 535W. User Manual Car Video Recorder About this user manual This user manual is specially designed to detail the device s func ons and features. - Please read this manual before using the device to ensure safe and proper

More information

Special Topic: Automated Report Recipients 5. Crea ng a New Region 6 Adding Districts to Regions 8

Special Topic: Automated Report Recipients 5. Crea ng a New Region 6 Adding Districts to Regions 8 TT Tracker Set-up 3 Project Modifica ons 3 Access Country Project 3 Create Web Users 4 Special Topic: Automated Report Recipients 5 Create Program Loca ons (Coverage Areas) 6 Crea ng a New Region 6 Adding

More information

Managing a Website in the EDUPE Environment

Managing a Website in the EDUPE Environment Site Access To access the Edupe environment, you must enter the following URL address: https://devry.edupe.net:8300 You will encounter the following screen: Select Continue to this website (not recommended)

More information

HCA Tech Note 120. Configuring the Control UI Home Page. Option 1: HCA constructs the home page

HCA Tech Note 120. Configuring the Control UI Home Page. Option 1: HCA constructs the home page Configuring the Control UI Home Page HCA contains two different user interfaces: One interface called the Development UI - where all design elements and tools are available and you can make changes, and

More information

Creating Pages with the CivicPlus System

Creating Pages with the CivicPlus System Creating Pages with the CivicPlus System Getting Started...2 Logging into the Administration Side...2 Icon Glossary...3 Mouse Over Menus...4 Description of Menu Options...4 Creating a Page...5 Menu Item

More information

What is MyDtxt? 2 Why use MyDtxt? 2 Ge ng started and crea ng an account 2 How do I text my customers? 3. How do I get feedback from my customers?

What is MyDtxt? 2 Why use MyDtxt? 2 Ge ng started and crea ng an account 2 How do I text my customers? 3. How do I get feedback from my customers? TABLE OF CONTENTS What is MyDtxt? 2 Why use MyDtxt? 2 Ge ng started and crea ng an account 2 How do I text my customers? 3 Crea ng keywords Sending messages to your members How do I get feedback from my

More information

Sonatype CLM - IDE User Guide. Sonatype CLM - IDE User Guide

Sonatype CLM - IDE User Guide. Sonatype CLM - IDE User Guide Sonatype CLM - IDE User Guide i Sonatype CLM - IDE User Guide Sonatype CLM - IDE User Guide ii Contents 1 Introduction 1 2 Installing Sonatype CLM for Eclipse 2 3 Configuring Sonatype CLM for Eclipse 5

More information

How to Install and Setup VoIPOffice Communicator for Mac

How to Install and Setup VoIPOffice Communicator for Mac Page 1 of 10 How to Install and Setup VoIPOffice Communicator for Mac (Software Release 3.8.10) This guide will show you how to install and setup VoIPOffice Communicator for Mac. Click the button below

More information

ScanKey. User s Manual Version: Page 1 of 19

ScanKey. User s Manual Version: Page 1 of 19 ScanKey User s Manual Version: 2014.1 Page 1 of 19 Table of Contents Chapter 1 - Installation... 3 1-1 Installation Precautions...3 1-2 Security Setup...4 1-3 Installing ScanKey...5 Chapter 2 Operation...

More information

Downloading & Installing Audacity

Downloading & Installing Audacity Downloading Audacity 1. Open your web browser. 2. Navigate to the following URL: http://audacity.sourceforge.net/download/ 3. The system displays the Download page for Audacity. 4. Select your operating

More information

How Do I Inspect Error Logs in Warehouse Builder?

How Do I Inspect Error Logs in Warehouse Builder? 10 How Do I Inspect Error Logs in Warehouse Builder? Scenario While working with Warehouse Builder, the designers need to access log files and check on different types of errors. This case study outlines

More information

2014 INSTRUCTIONS FOR RE-ENROLLING FAMILIES

2014 INSTRUCTIONS FOR RE-ENROLLING FAMILIES University of California Division of Agriculture and Natural Resources 4-H Youth Development Program 4hOnline Guide for Youth and Adults For Alameda County 2014 INSTRUCTIONS FOR RE-ENROLLING FAMILIES 4hOnline

More information

SPECTRA CONNECT CONTROLLER - AVAILABLE OCT 2017

SPECTRA CONNECT CONTROLLER - AVAILABLE OCT 2017 SPECTRA CONNECT CONTROLLER - AVAILABLE OCT 2017 PRODUCT FEATURES Control, monitor, and operate your watermaker remotely from your phone, tablet, computer or from the local touchscreen Access your Spectra

More information

Microso 埘 Exam Dumps PDF for Guaranteed Success

Microso 埘 Exam Dumps PDF for Guaranteed Success Microso 埘 70 698 Exam Dumps PDF for Guaranteed Success The PDF version is simply a copy of a Portable Document of your Microso 埘 70 698 ques ons and answers product. The Microso 埘 Cer fied Solu on Associa

More information

Flint - Eclipse Based IDE User Manual

Flint - Eclipse Based IDE User Manual 1 E M B I E N T E C H N O L O G I E S Flint - Eclipse Based IDE User Manual Embien Technologies No 3, Sankarapandian Street, Madurai, India 625017 www.embien.com 2 3 Table of Contents 1 Introduction...

More information

Module 3: Working with C/C++

Module 3: Working with C/C++ Module 3: Working with C/C++ Objective Learn basic Eclipse concepts: Perspectives, Views, Learn how to use Eclipse to manage a remote project Learn how to use Eclipse to develop C programs Learn how to

More information

Guide for Windows users with Internet Explorer and Firefox

Guide for Windows users with Internet Explorer and Firefox Velocity@ocbc Guide for Windows users with Internet Explorer and Firefox Version 2.0 070513 1 of 18 Check the Java version 1. Launch a browser and go to http://www.java.com/en/download/installed.jsp?detect=jre

More information

Mobile Inventory Tracking & Sales Management Software. Installation Procedure

Mobile Inventory Tracking & Sales Management Software. Installation Procedure Mobile Inventory Tracking & Sales Management Software Installation Procedure Tecom Group, Inc. 2016 Hello! Thank you for choosing HandiFox an award-winning Inventory Tracking and Sales Management solution.

More information

At the shell prompt, enter idlde

At the shell prompt, enter idlde IDL Workbench Quick Reference The IDL Workbench is IDL s graphical user interface and integrated development environment. The IDL Workbench is based on the Eclipse framework; if you are already familiar

More information

Sync User Guide. Powered by Axient Anchor

Sync User Guide. Powered by Axient Anchor Sync Powered by Axient Anchor TABLE OF CONTENTS End... Error! Bookmark not defined. Last Revised: Wednesday, October 10, 2018... Error! Bookmark not defined. Table of Contents... 2 Getting Started... 7

More information

iphone Troubleshoo ng Guide

iphone Troubleshoo ng Guide Service Department iphone Troubleshoo ng Guide Normal Restart Power Bu on To restart iphone, first turn iphone off by pressing and holding the Sleep/Wake bu on un l a red slider appears. Slide your finger

More information

TANKLOGIX PORTAL TICKET MANAGEMENT 3.2 AUTHOR: GREG BAGLEY

TANKLOGIX PORTAL TICKET MANAGEMENT 3.2 AUTHOR: GREG BAGLEY TANKLOGIX PORTAL TICKET MANAGEMENT 3.2 AUTHOR: GREG BAGLEY CONTENTS INTRODUCTION... 3 PORTAL NAVIGATION... 3 Disposals > Ticket Management 3.2... 3 PAGE FEATURES... 3 TITLE AREA PAGE TOP... 4 SITES...

More information

Buyer s Guide. Contents. This guide will review how to shop, create requisi ons and track your requisi ons, orders and invoices

Buyer s Guide. Contents. This guide will review how to shop, create requisi ons and track your requisi ons, orders and invoices Buyer s Guide This guide will review how to shop, create requisi ons and track your requisi ons, orders and invoices Contents Buyer s Guide... 1 Logging In & Buyer s Role... 3 Key Concepts... 4 My Account

More information

Consulting Service Delivery in Office 365

Consulting Service Delivery in Office 365 Consulting Service Delivery in Office 365 User Guide For Network Consultants User Guide Content 1. Introduction 2. Minimum System Requirements 3. How to start 4. How to connect to Office 365 for the first

More information

GRS Enterprise Synchronization Tool

GRS Enterprise Synchronization Tool GRS Enterprise Synchronization Tool Last Revised: Thursday, April 05, 2018 Page i TABLE OF CONTENTS Anchor End User Guide... Error! Bookmark not defined. Last Revised: Monday, March 12, 2018... 1 Table

More information

SoCalGas ENVOY. Troubleshooting Envoy Getting Started

SoCalGas ENVOY. Troubleshooting Envoy Getting Started SoCalGas ENVOY Troubleshooting Envoy Getting Started TABLE OF CONTENTS 1 Troubleshooting Envoy... 3 1.1 Browser Not Supported Error upon Accessing Login Page... 3 1.2 Tabbed Browser Settings for Internet

More information

Colligo Engage Outlook App 7.1. Connected Mode - User Guide

Colligo Engage Outlook App 7.1. Connected Mode - User Guide 7.1 Connected Mode - User Guide Contents Colligo Engage Outlook App 1 Benefits 1 Key Features 1 Platforms Supported 1 Installing and Activating Colligo Engage Outlook App 2 Checking for Updates 3 Updating

More information

Release Notes June 15, Date: 15-Jun :49 URL:

Release Notes June 15, Date: 15-Jun :49 URL: Release Notes 2.7.0 June 15, 2017 Date: 15-Jun-2017 14:49 URL: https://esito-conf.inmeta.com/display/rn/release+notes+2.7.0 Table of Contents 1 News and Changes 3 1.1 The Dialog Editor Palette 3 1.2 Fast

More information

WORKSWELL WIRIS PRO QUICK START GUIDE. FW Version: Release date: 22 nd March, Revision : 1.2 EN

WORKSWELL WIRIS PRO QUICK START GUIDE. FW Version: Release date: 22 nd March, Revision : 1.2 EN WORKSWELL WIRIS PRO QUICK START GUIDE FW Version: 1.0.0 Release date: 22 nd March, 2019 Revision : 1.2 EN Standard Package Content Confirm that the package contains the items listed below: WIRIS Pro camera

More information

Oracle General Navigation Overview

Oracle General Navigation Overview Oracle 11.5.9 General Navigation Overview 1 Logging On to Oracle Applications You may access Oracle, by logging onto the ATC Applications Login System Status page located at www.atc.caltech.edu/support/index.php

More information

Integra ng New Technologies and Teaching Strategies to Support Student Success

Integra ng New Technologies and Teaching Strategies to Support Student Success Instruc onal C Changes iin eecourses Integra ng New Technologies and Teaching Strategies to Support Student Success LMS Overview The generic name for the LMS is s ll ecourses. However, the product that

More information

Servoy Stuff Browser Suite FAQ

Servoy Stuff Browser Suite FAQ Servoy Stuff Browser Suite FAQ Please read carefully: the following contains important information about the use of the Browser Suite in its current version. What is it? It is a suite of native bean components

More information

Guide for Windows users with Internet Explorer and Firefox

Guide for Windows users with Internet Explorer and Firefox Velocity@ocbc Guide for Windows users with Internet Explorer and Firefox Version 5.0 171013 1 of 14 Uninstall prior Java versions 1. Log in to an administrator account. Go to Start > Control Panel 2. Click

More information

Workspace Desktop Edition Deployment Guide. Installing The Workspace SIP Endpoint

Workspace Desktop Edition Deployment Guide. Installing The Workspace SIP Endpoint Workspace Desktop Edition Deployment Guide Installing The Workspace SIP Endpoint 11/20/2017 Installing The Workspace SIP Endpoint [Modified: 8.5.109.16, 8.5.114.08] The Workspace SIP Endpoint is an optional

More information

QUICK START GUIDE. How Do I Get Started? Step #1 - Your Account Setup Wizard. Step #2 - Meet Your Back Office Homepage

QUICK START GUIDE. How Do I Get Started? Step #1 - Your Account Setup Wizard. Step #2 - Meet Your Back Office Homepage QUICK START GUIDE Here is a tool that will help you generate prospects and follow up with them using your web browser. Your Lead Capture system has Personal Sites, Contact Management, Sales Tools and a

More information

Lab 3: Using Worklight Server and Environment Optimization Lab Exercise

Lab 3: Using Worklight Server and Environment Optimization Lab Exercise Lab 3: Using Worklight Server and Environment Optimization Lab Exercise Table of Contents Lab 3 Using the Worklight Server and Environment Optimizations... 3-4 3.1 Building and Testing on the Android Platform...3-4

More information

What s new in IBM Operational Decision Manager 8.9 Standard Edition

What s new in IBM Operational Decision Manager 8.9 Standard Edition What s new in IBM Operational Decision Manager 8.9 Standard Edition Release themes User empowerment in the Business Console Improved development and operations (DevOps) features Easier integration with

More information

Eclipse/Websphere. Page 1 Copyright 2004 GPL License. All rights reserved.

Eclipse/Websphere. Page 1 Copyright 2004 GPL License. All rights reserved. 1. Installing plugin with Eclipse's update manager If you are using Eclipse 3.0 or higher you can use the update manager to automatically download and install the QJ-Pro plugin. Start Eclipse, go to the

More information

Contents. Anaplan Connector for MuleSoft

Contents. Anaplan Connector for MuleSoft SW Version 1.1.2 Contents 1 Overview... 3 2 Mulesoft Prerequisites... 4 3 Anaplan Prerequisites for the Demos... 5 3.1 export demo mule-app.properties file...5 3.2 import demo mule-app.properties file...5

More information

EDTracker Pro Wired. User Guide

EDTracker Pro Wired. User Guide EDTracker Pro Wired User Guide ENG Document Issue 1.0 Introduction Thank you for purchasing your EDTracker Pro Wired head tracker. We hope that it becomes an invaluable addi on to your gaming experience

More information

Streamlining Your Work with Macros. Workshop Manual

Streamlining Your Work with Macros. Workshop Manual Microsoft Excel 2010 401 Advanced Workshop Streamlining Your Work with Macros Workshop Manual Presented by David Newbold, Jennifer Tran and Katie Spencer 06/23/11 1 Excel 401 Macro Exercise Workbook Class

More information

Creating a screen capture using the My Media Screen Recorder tool in D2L s News or Content areas

Creating a screen capture using the My Media Screen Recorder tool in D2L s News or Content areas Creating a screen capture using the My Media Screen Recorder tool in D2L s News or Content areas Before you begin: IMPORTANT! You MUST installed a recent version of Java/Flash on your computer. If you

More information

Anchor User Guide. Presented by: Last Revised: August 07, 2017

Anchor User Guide. Presented by: Last Revised: August 07, 2017 Anchor User Guide Presented by: Last Revised: August 07, 2017 TABLE OF CONTENTS GETTING STARTED... 1 How to Log In to the Web Portal... 1 How to Manage Account Settings... 2 How to Configure Two-Step Authentication...

More information

PACS ADMIN. Quick Reference Guide

PACS ADMIN. Quick Reference Guide Quick Reference Guide PACS ADMIN Creating Domain Users.......................................................... Adding NOVARAD Users......................................................... Adding Console

More information

TT Tracker Basics 4 Accessing and Comple ng Forms 7

TT Tracker Basics 4 Accessing and Comple ng Forms 7 Mobile Worker Manual TT Tracker Basics 4 Accessing and Comple ng Forms 7 Session Management 7 Pa ent Registra on 9 Pa ent Treatment Management 13 Record Evalua on 15 Record Surgery 17 Record Pa ent Follow-ups

More information

VidBuilderFX. Open the VidBuilderFX app on your computer and login to your account of VidBuilderFX.

VidBuilderFX. Open the VidBuilderFX app on your computer and login to your account of VidBuilderFX. VidBuilderFX General Walkthrough: Open the VidBuilderFX app on your computer and login to your account of VidBuilderFX. After successful login, a dialogue box will appear which asks you to connect with

More information

How to Host WebEx Meetings

How to Host WebEx Meetings How to Host WebEx Meetings Instructions for ConnSCU Faculty and Staff using ConnSCU WebEx Table of Contents How Can Faculty and Staff Use WebEx?... 3 Inviting Meeting Participants... 3 Tips before Starting

More information

Guide to fix the problem with Problets

Guide to fix the problem with Problets Guide to fix the problem with Problets COP 2512 - IT Programming Fundamentals In order to fix the problem of not being able to run Problets on your web browser, please follow the following steps: 1. Make

More information

Importing source database objects from a database

Importing source database objects from a database Importing source database objects from a database We are now at the point where we can finally import our source database objects, source database objects. We ll walk through the process of importing from

More information

MULTIMEDIA AND ANIMATION

MULTIMEDIA AND ANIMATION MULTIMEDIA AND ANIMATION CURRICULUM HTML Document Overview The Structure Tags Components of the HTML Code Ge ng Started With HTML Wri ng the Code Head Elements HTML Tags HEAD Tags Title Tags Body Tag Displaying

More information

Lab - System Restore in Windows 8

Lab - System Restore in Windows 8 Lab - System Restore in Windows 8 Introduction In this lab, you will create a restore point and use it to restore your computer. Recommended Equipment A computer running Windows 8 Step 1: Create a restore

More information

Kinetic Switch APP User Manual

Kinetic Switch APP User Manual Kinetic Switch APP User Manual General Safety Instruc ons Please read this manual thoroughly before first use and keep it in a safe place for future reference. The safety precau ons enclosed herein reduce

More information

Last Updated: FRC 2019 BETA

Last Updated: FRC 2019 BETA Last Updated: 08-01-2018 FRC 2019 BETA Table of Contents VS Code (C++/Java IDE)...3 Alpha Test Info...4 Installing VS Code...5 VS Code Basics and WPILib in VS Code... 15 Creating a new WPILib project in

More information

8.0.6 New Features Guide Auto Window/Level Adjustments

8.0.6 New Features Guide Auto Window/Level Adjustments 8.0.6 New Features Guide Improvements to the feature allow users to quickly and easily set for images. These adjustments will be automatically and consistently applied to similar images. Window/Level Adjustments

More information

Android User Guide. for version 5.3

Android User Guide. for version 5.3 Android User Guide for version 5.3 Contents 1. Installation... 3 1.1. How to install Babelnet... 3 1.2. Enter Babelnet in the search field.... 3 1.3. Safety precautions when using Babelnet on your Android...

More information