Any other Projects or assignments the student may be working on this week:

Size: px
Start display at page:

Download "Any other Projects or assignments the student may be working on this week:"

Transcription

1 Student CRP Form The purpose of this form is to accommodate a means for students to organize weekly project goals and to provide their results in a clear and measurable way. The CRP form will provide a means for the student to: Clearly identify weekly goals for a project Report if the week's goals were successful Provide any results for the week Start Date: 10/5/09 End Date: 10/09/09 Project Title: IronPython to Labview Connection Parent Project If Applicable: Success: YES / NO Any other Projects or assignments the student may be working on this week: 1) Database Group Project 2) Parallel- Questions From Book 3) Assist With HUD Project 4) Database Large Paper Assignment Goals for the week: Use the built in capability of RealXtend to connect to the Labview programming environment.

2 Purpose: Results and Findings: Task 1a) Download and install RealXtend version.5 Download RealXtend version.5 from the RealXtend downloads webpage. The RealXtend download webpage can be found at: You may also use the link below for direct access to the server download Task 1b) Create the IronPython Script for RealXtend to use to facilitate communication between RealXtend and Labview Step1) Locate the RealXtend folder and open it. Step 2) Open the rexserver folder

3 Step 3) Locate and Open the ScriptEngine Folder Step 4) Located and open the PythonScript Folder

4 Step 5) Located and open the Samples Folder Step 6) Open the init.py file using your prefered IronPython IDE. *If you do not have a IronPython IDE, one can be downloaded by following the link below: To Open a IronPython file using IDLE, right-click on the file and select edit with IDLE. Two windows will pop up. One will be the main shell window, and the other will be the python script. **If you would like to follow an Introduction to how to use IDLE for Python scripting,

5 Step 7) At the bottom of init.py, add import testobject2, and then save the file.

6 Step 8) In the folder containing the the sample python scripts, right click on the filed named testobject and choose copy. Next right click on a open portion in the file window and then choose paste.

7 Step 9) Now right click on the newly created file and choose to rename the file to testobject2.

8

9

10 Step 10) Right click on the newly renamed testobject2 and choose to Edit with IDLE.

11 Step 11) Highlight everything everything in the testobject2.py window and delete it. Copy and paste the following python script into the window and then save the file. import rxactor import rxavatar import sys import clr asm = clr.loadassemblybyname('opensim.region.scriptengine.shared') Vector3 = asm.opensim.region.scriptengine.shared.lsl_types.vector3 import random import math import socket class Test2(rxactor.Actor): def GetScriptClassName(): return "testobject2.test2" def EventCreated(self): super(self. class,self).eventcreated() self.tickcount = 0 self.mytimer = self.createrextimer(4,18) self.mytimer.ontimer += self.handletimer print "testobject2.test2 EventCreated" def EventDestroyed(self): print "testobject2.test2 EventDestroyed" del self.mytimer self.mytimer = None super(self. class,self).eventdestroyed() def EventTouch(self,vAvatar): if(self.mytimercount > 0): self.llshout(0,"test already running...") return #self.llshout(0,"starting test 2") self.currenttest = 0 self.agentid = vavatar.agentid

12 self.mytimer.start() self.llshout(0,"connecting to LabView") s= socket.socket(socket.af_inet,socket.sock_stream) s.connect((" ",6342)) while 1: received = s.recv(1024) received = received.strip() if received: print received s.send("the message you sent was: ") s.send(received) self.llshout(0,"ouch! I just received "+ received) loc = self.llgetpos() + Vector3(1,1,1) self.llsetpos(loc) self.rexsettexturemediaurl(received, 1) def EventTick(self,vDeltaTime): self.tickcount += 1 textstr = "Tickcount:" + str(self.tickcount) + " delta:" + str(vdeltatime) self.llshout(0,textstr) def HandleTimer(self): self.currenttest = self.currenttest+1

13 Step 12) Congratulate yourself for adding an awesome function to the RealXtend IronPython library.

14 Task 1c) Launch the RealXtend Server and ready an object for communication with RealXtend. Step 1) Located the folder where you unzipped the RealXtend beneath the waves file. Find the file called StartStandAloneRexServer, and double click it. Three console windows will pop up and start rapidly scrolling text. The only one of these windows you will be concerned with the the one titled rexserver/opensim

15 This window will be where you can see some output from the Labview to RealXtend communication. Once we have the both the Labview and the RealXtend sides working, it will also let us know if we have any errors with the IronPython file we edited earlier. *note- You must wait until the server winow stops scrolling text before you launch the RealXtend viewer. Failure to wait will cause very difficult to catch bugs. Step 2) Downloaded and install the RealXtend Viewer. It can be found at or by following the direct link: Step 3) Open the viewer and log in using the following credentials: Name: Password: test

16 Step 4) An opening flash movie should start shortly. You can click NEXT to skip the movie. Step 5) Build an object in the realxtend environment Step 6) Right click on the object and choose edit Step 7) Now click on the rex tab and then the Misc tab

17 Step 8) Input the class name as testobject2.test2 and press ENTER Task 2 Open and configure a Labview window for accepting messages from a PC communication PORT. Step 1) Open the VI- TCP Communicator - Passive.vi The VI- TCP Communicator can be found by opening LabView and clicking on find examples. On the top left side of the NI Example Finder Window you will see that the Browse Tab is selected. Right underneath the Browse tab you will see a bubble that says browse according to. Select Directory structure. Then select the comm folder. You will find the TCP.lb

18 folder. Open the folder and then select the TCP communicator - Passive.vi. Note- The Passive communicator waits for a connection on a specific IP port. If no connection is detected in 10 seconds it times out. If a connection is detected it then waits for you to type some text into the Input Line text box. Once you hit enter, the text that was typed is sent to the PC port specified in the port text window. Task 3 Connect LabView to RealXtend With both RealXtend and the Passive Vi open, run the Passive VI in continuous mode. The Passive communicator starts listening on the port specified. Within 10 seconds, click the object inside of RealXtend that we added the class name to earlier. By running the Labview VI and then clicking the object in RealXtend, we have opened up a line a communication between the two. You can now send messages from Labview to an object inside of RealXtend. Type "Hello RealXtend" in the Input Line text box on the Labview TCP Communicator VI and press ENTER. If you have everything configured properly, you will see the message you sent using the VI in the Server console window. The object in RealXtend will also notify you that it has received input. Congradulations! You have just opened a communication pathway from Labview to RealXtend! Example Of what you will see in the environment

19 From LabView to the RealXtend Server Window

20 Appendix Example of IronPython Communication with Labview My first message sent from Labview to IronPython

21 My first message sent to IronPython and the reeceived from IronPython **this picture contains my first functioning python socket script.

22 My First Message sent from Labview to RealXtend

Writing and Running Programs

Writing and Running Programs Introduction to Python Writing and Running Programs Working with Lab Files These instructions take you through the steps of writing and running your first program, as well as using the lab files in our

More information

CSE 101 Introduction to Computers Development / Tutorial / Lab Environment Setup

CSE 101 Introduction to Computers Development / Tutorial / Lab Environment Setup CSE 101 Introduction to Computers Development / Tutorial / Lab Environment Setup Purpose: The purpose of this lab is to setup software that you will be using throughout the term for learning about Python

More information

Pilot Quick Start Guide for Students

Pilot Quick Start Guide for Students Pilot Quick Start Guide for Students Table of Contents Opening a Course from the My Pilot Page... 1 Accessing Course Content Inline Viewer... 2 Downloading from Content... 3 Send Content to Binder... 4

More information

How to Create an e-book. A Step-by-Step Illustrated Guide

How to Create an e-book. A Step-by-Step Illustrated Guide How to Create an e-book A Step-by-Step Illustrated Guide 1 Table of Contents Introduction...3 Inserting or Changing an Image...6 Formatting the Default Paragraphs...14 Adding a Table of Contents...18 Setting

More information

Custom PDF Generator for LabVIEW Version 3 Quick Start User Guide

Custom PDF Generator for LabVIEW Version 3 Quick Start User Guide DT-116525 Issue 4 Custom PDF Generator for LabVIEW Version 3 Quick Start User Guide Start Creating High Quality Reports Today Contents Important Notes on Upgrading... 3 Installation... 4 Finding the Functions...

More information

Homework #7 Google Cloud Platform

Homework #7 Google Cloud Platform Homework #7 Google Cloud Platform This semester we are allowing all students to explore cloud computing as offered by the Google Cloud Platform. Using the instructions below one can establish a website

More information

MySQL On Crux Part II The GUI Client

MySQL On Crux Part II The GUI Client DATABASE MANAGEMENT USING SQL (CIS 331) MYSL ON CRUX (Part 2) MySQL On Crux Part II The GUI Client MySQL is the Structured Query Language processor that we will be using for this class. MySQL has been

More information

Enolsoft PDF to Word with OCR Tutorial

Enolsoft PDF to Word with OCR Tutorial Enolsoft PDF to Word with OCR Tutorial 1 Table of Contents Table of Contents... 2 I. About Enolsoft PDF to Word with OCR... 3 II. Activating the Application... 4 III. Application Operating... 5 i. Add

More information

User guide NotifySCM Installer

User guide NotifySCM Installer User guide NotifySCM Installer TABLE OF CONTENTS 1 Overview... 3 2 Office 365 Users synchronization... 3 3 Installation... 5 4 Starting the server... 17 2 P a g e 1 OVERVIEW This user guide provides instruction

More information

Set Up your ipad. Page 1 of 5. Before we begin, please familiarize yourself with your ipad s buttons.

Set Up your ipad. Page 1 of 5. Before we begin, please familiarize yourself with your ipad s buttons. Set Up your ipad Page 1 of 5 V2.0 These instructions will show you how to set up your ipad, access your email account, and create your Apple ID. Please follow these instructions carefully to experience

More information

Hardware: Acquiring Data and Communicating with Instruments

Hardware: Acquiring Data and Communicating with Instruments Hardware: Acquiring Data and Communicating with Instruments 4 Acquiring a Signal This chapter introduces you to the Express VIs you use to acquire data and communicate with instruments on Windows. These

More information

Setting up Outlook Express to access your boxes

Setting up Outlook Express to access your  boxes Setting up Outlook Express to access your email boxes Basically there are 2 stages to this process the third only necessary if you use BT Internet as your Internet Service Provider (ISP) 1) Setting up

More information

Lab 3-1 Lab Installing Kofax Capture 10

Lab 3-1 Lab Installing Kofax Capture 10 In the following lab instructions, you re going to install and license Kofax Capture, turn on User Tracking, review the product documentation, and prepare your system for the lab exercises in this course.

More information

User Guide Version 2.0

User Guide Version 2.0 User Guide Version 2.0 Page 2 of 8 Summary Contents 1 INTRODUCTION... 3 2 SECURESHELL (SSH)... 4 2.1 ENABLING SSH... 4 2.2 DISABLING SSH... 4 2.2.1 Change Password... 4 2.2.2 Secure Shell Connection Information...

More information

Center for Faculty Development and Support. Google Docs Tutorial

Center for Faculty Development and Support. Google Docs Tutorial Center for Faculty Development and Support Google Docs Tutorial Table of Contents Overview... 3 Learning Objectives... 3 Access Google Drive... 3 Introduction... 4 Create a Google Document... 4 Upload

More information

General Guidelines: SAS Analyst

General Guidelines: SAS Analyst General Guidelines: SAS Analyst The Analyst application is a data analysis tool in SAS for Windows (version 7 and later) that provides easy access to basic statistical analyses using a point-and-click

More information

Campus Solutions Faculty Guide Section 2 - Faculty Center

Campus Solutions Faculty Guide Section 2 - Faculty Center Financial Management Human Resources Campus Solutions Campus Solutions Faculty Guide Section 2 - Faculty Center Updates Date Action Page(s) 04/13/12 Created 05/14/12 Entire document updated. all 05/15/12

More information

Installing and Updating GEMS

Installing and Updating GEMS Installing and Updating GEMS To download and install GEMS for the first time to the hard drive of any desktop or to a network server, see Full Program Installation Desktop or Network. If you currently

More information

Getting started with the Spyder IDE

Getting started with the Spyder IDE Getting started with the Spyder IDE Claudius Gräbner 1,2 1 Johannes Kepler University 2 ZOE. Institute for Future-Fit Economies Version 1.0 of July 18, 2018 Abstract Here I provide you with some basic

More information

Cloud Computing II. Exercises

Cloud Computing II. Exercises Cloud Computing II Exercises Exercise 1 Creating a Private Cloud Overview In this exercise, you will install and configure a private cloud using OpenStack. This will be accomplished using a singlenode

More information

Provisioning Lumeta SPECTRE via AWS Sign in to the Amazon Web Services console at

Provisioning Lumeta SPECTRE via AWS Sign in to the Amazon Web Services console at Thank you for choosing Lumeta SPECTRE! This document provides the essentials you ll need to make sense of your network in real time from the Amazon Web Services (AWS) cloud, including: 1) How to instantiate

More information

Document Management System User Guide

Document Management System User Guide Document Management System User Guide Rev. Feb. 21, 2013 TABLE OF CONTENTS LASERFICHE WEBLINK GUIDE... 1 INTRODUCTION... 3 CONNECTING TO THE WEBSITE... 3 WEBLINK LOG IN... 3 BROWSING... 4 SEARCHING...

More information

Storing Your Exercise Files

Storing Your Exercise Files Storing Your Exercise Files This appendix contains an overview for using this book with various file storage media, such as a USB flash drive or hard drive. Detailed instructions for downloading and unzipping

More information

For this walkthrough in Drupal I will be using the Office of Strategic Communications webpage. First, if you are off campus you must connect to the

For this walkthrough in Drupal I will be using the Office of Strategic Communications webpage. First, if you are off campus you must connect to the For this walkthrough in Drupal I will be using the Office of Strategic Communications webpage. First, if you are off campus you must connect to the NJIT network via VPN. Then open up Google Chrome or Firefox.

More information

Law Technology Team (LTT) Offices: OM Hours: 8:30am 5:30pm Panopto D2L Guide

Law Technology Team (LTT) Offices: OM Hours: 8:30am 5:30pm   Panopto D2L Guide Panopto D2L Guide For additional training, please contact FITS@depaul.edu OR https://support.panopto.com Contents Adding Panopto to your D2L course... 2 Downloading and Installing Panopto Recorder... 3

More information

CLONING A VIRTUAL MACHINE IN "MICROSOFT VIRTUAL PC 2007"

CLONING A VIRTUAL MACHINE IN MICROSOFT VIRTUAL PC 2007 CLONING A VIRTUAL MACHINE IN "MICROSOFT VIRTUAL PC 2007" HIGH-LEVEL EXECUTIVE SUMMARY: In "Microsoft Virtual PC 2007", you cannot copy a virtual machine directly. In "Microsoft Virtual PC 2007", you can

More information

Welcome to noiselab Express 1.0

Welcome to noiselab Express 1.0 Welcome to noiselab Express 1.0 Basic Operation Download and install the program. The program automatically unzips and installs. If you don t have a license code, you can run the program in demo mode for

More information

Steps for Inserting and Editing a Document in Kurzweil

Steps for Inserting and Editing a Document in Kurzweil Steps for Inserting and Editing a Document in Kurzweil A. Insert document in Kurzweil 1. open your document 2. select, File, Print 3. Select the KESI Virtual printer 4. Select printer properties and make

More information

SIS offline. Getting Started

SIS offline. Getting Started SIS offline We highly recommend using Firefox version 3.0 or newer with the offline SIS. Internet Explorer is specifically not recommended because of its noncompliance with internet standards. Getting

More information

CS 112: Intro to Comp Prog

CS 112: Intro to Comp Prog CS 112: Intro to Comp Prog Importing modules Branching Loops Program Planning Arithmetic Program Lab Assignment #2 Upcoming Assignment #1 Solution CODE: # lab1.py # Student Name: John Noname # Assignment:

More information

Cisco TelePresence Management Suite Extension for Microsoft Exchange

Cisco TelePresence Management Suite Extension for Microsoft Exchange Cisco TelePresence Management Suite Extension for Microsoft Exchange Administrator Guide Software version 2.2 D14197.06 February 2011 Contents Contents... 2 Introduction... 4 Pre-Installation Information...

More information

Introduction to Moodle

Introduction to Moodle Introduction to Moodle Preparing for a Moodle Staff Development Session... 2 Logging in to Moodle... 2 Adding an image to your profile... 4 Navigate to and within a course... 6 Content of the basic template

More information

QRM Installation Guide Windows

QRM Installation Guide Windows 1 The Compatible with LabVIEW logo is a trademark of National Instruments Corporation and is used under a license from National Instruments Corporation. 1 2 Contents 1 Document Change History... 3 2 Documents

More information

Sherlock Tutorial Getting Started

Sherlock Tutorial Getting Started Sherlock Tutorial Getting Started Background Sherlock is a Java-based application that allows users to analyze the reliability of circuit card assemblies based on their design files. Sherlock has been

More information

1) Log on to the computer using your PU net ID and password.

1) Log on to the computer using your PU net ID and password. CS 150 Lab Logging on: 1) Log on to the computer using your PU net ID and password. Connecting to Winter: Winter is the computer science server where all your work will be stored. Remember, after you log

More information

Setup Hit the start button in the bottom left corner of your screen and select Outlook 2016.

Setup Hit the start button in the bottom left corner of your screen and select Outlook 2016. Student Device Setup Instructions Power on your device by pressing the Power button in the upper right hand side. Either swipe up on the touchscreen or Tap the touchpad to get to the login screen. Click

More information

Code Autocomplete Manual

Code Autocomplete Manual Code Autocomplete Manual Release 2.0.0 Jacques Lucke July 02, 2016 Contents 1 Setup 3 1.1 Installation................................................ 3 1.2 Check the Installation..........................................

More information

NovaBACKUP xsp Version 13.1 Upgrade Guide

NovaBACKUP xsp Version 13.1 Upgrade Guide NovaBACKUP xsp Version 13.1 Upgrade Guide NovaStor / July 2012 2012 NovaStor, all rights reserved. All trademarks are the property of their respective owners. Features and specifications are subject to

More information

Retrieve Download File from CSDI Installation Instructions

Retrieve Download File from CSDI Installation Instructions Retrieve Download File from CSDI Installation Instructions Rev. 12-001 FOOD & NUTRITION MANAGEMENT SYSTEMS This instruction sheet provides instructions for installing our Retrieve Download File from CSDI

More information

Edmodo for Teachers Guide (Taken directly from Edmodo s site.)

Edmodo for Teachers Guide (Taken directly from Edmodo s site.) Edmodo for Teachers Guide (Taken directly from Edmodo s site.) Table of Contents: 1. Teacher Sign Up 2. Create a Group 3. Manage Your Groups 4. Small Group 5. Co-Teaching 6. Student Sign up 7. Post a Message

More information

MERAK SOFTWARE INSTRUCTIONS

MERAK  SOFTWARE INSTRUCTIONS MERAK EMAIL SOFTWARE INSTRUCTIONS Starting your Web Browser Open the program Internet Explorer. In the Address Bar, type the following: http://www.epsb.com, then hit the enter key or click on Go at the

More information

RunClick Webinar and Video Conferencing Software. User Manual

RunClick Webinar and Video Conferencing Software. User Manual RunClick Webinar and Video Conferencing Software User Manual Visit RunClick.com for more details 1 Page Table of Contents Installation and Activation of RunClick Part 1: WordPress Fresh Installation Process

More information

LEVEL 1 Site Administrator Grants permissions and manages access, manages main homepage.

LEVEL 1 Site Administrator Grants permissions and manages access, manages main homepage. USING JOOMLA LEVEL 2 (TRAINING) OVERVIEW This document is designed to provide guidance and training for incorporating your department s content into to the Joomla Content Management System (CMS). Each

More information

Getting Started with Python and the PyCharm IDE

Getting Started with Python and the PyCharm IDE New York University School of Continuing and Professional Studies Division of Programs in Information Technology Getting Started with Python and the PyCharm IDE Please note that if you already know how

More information

Group s Kingdom Rock PowerPoint (PPT) Spotlight VBS: PC Version

Group s Kingdom Rock PowerPoint (PPT) Spotlight VBS: PC Version Group s Kingdom Rock PowerPoint (PPT) Spotlight VBS: PC Version IMPORTANT: To use this PowerPoint presentation, you must have the full version of Microsoft PowerPoint installed on your computer. What s

More information

YourClassPage.com - Classpage Editor Guide. 10 Quick Ways For Maintaining Your Classpage!

YourClassPage.com - Classpage Editor Guide. 10 Quick Ways For Maintaining Your Classpage! [ Print ] [ Close Window ] YourClassPagcom - Classpage Editor Guide NOTE: The Classpage Editor is a single web form. To go between fields of information on the form, use your mouse and click on the fields,

More information

Upgrade Tool Guide. July

Upgrade Tool Guide. July Upgrade Tool Guide July 2015 http://www.liveaction.com 4.X to 5.0 The Upgrade Guide from 4.X to 5.0 consists of three parts: Upgrading the LiveAction Server Upgrading the LiveAction Node Upgrading the

More information

CMS Shado 9. Quick Start Guide

CMS Shado 9. Quick Start Guide CMS Shado 9 Quick Start Guide 1 Logging In 3 Shado Central Interface 4 Sections, Pages and Containers 7 Sections 7 Pages 7 Containers 7 The Site Tree 8 Edit Content on a Page 9 Editing Container Content

More information

BackupVault Desktop & Laptop Edition. USER MANUAL For Microsoft Windows

BackupVault Desktop & Laptop Edition. USER MANUAL For Microsoft Windows BackupVault Desktop & Laptop Edition USER MANUAL For Microsoft Windows Copyright Notice & Proprietary Information Blueraq Networks Ltd, 2017. All rights reserved. Trademarks - Microsoft, Windows, Microsoft

More information

Lab 11-1 Lab User Profiles and Tracking

Lab 11-1 Lab User Profiles and Tracking In the following lab instructions, you will be setting up groups, users, and passwords to require password-protected login to Kofax Capture modules. Rights will be assigned to the groups and users that

More information

Installation Guide. Last Revision: Oct 03, Page 1-

Installation Guide. Last Revision: Oct 03, Page 1- Installation Guide Last Revision: Oct 03, 2005 -Page 1- Contents Before You Begin... 2 Installation Overview... 2 Installation for Microsoft Windows 2000, Windows 2003, and Windows XP Professional... 3

More information

Enolsoft PDF Converter with OCR Tutorial

Enolsoft PDF Converter with OCR Tutorial Enolsoft PDF Converter with OCR Tutorial 1 Table of Contents Table of Contents... 2 I. About Enolsoft PDF Converter OCR... 3 II. Activating the Application... 4 III. Application Operating... 5 i. Add &

More information

Parent Student Portal User Guide. Version 3.1,

Parent Student Portal User Guide. Version 3.1, Parent Student Portal User Guide Version 3.1, 3.21.14 Version 3.1, 3.21.14 Table of Contents 4 The Login Page Students Authorized Users Password Reset 5 The PSP Display Icons Header Side Navigation Panel

More information

DataLink Learn (SaaS or 9.1 Oct 2014+) Integration

DataLink Learn (SaaS or 9.1 Oct 2014+) Integration Overview... 2 Integration Goals... 2 Dependencies... 2 Steps to Integrate to Learn using DataLink... 2 Download and Install the DataLink Client Tool... 2 Technical Requirements... 2 Installing DataLink...

More information

Scheduling automatic backups of TSM with Windows 7

Scheduling automatic backups of TSM with Windows 7 Scheduling automatic backups of TSM with Windows 7 It is highly recommended that regular backups are conducted for TSM files; there are two methods for achieving this, the manual method or scheduling automatic

More information

Scantron Operating Instructions

Scantron Operating Instructions Scantron Operating Instructions Getting Started: 1. Remove the cover and turn on the Scantron machine. The ON/OFF switch is located on the back on the machine towards your right. 2. Log in to the computer

More information

Guide for K-6 Teachers

Guide for K-6 Teachers Guide for K-6 Teachers 2009 Houghton Mifflin Harcourt Publishing Company. All rights reserved. Houghton Mifflin Harcourt and its logo are trademarks of Houghton Mifflin Harcourt Publishing Company. Microsoft

More information

Novell Filr Desktop Application for Mac Quick Start

Novell Filr Desktop Application for Mac Quick Start Novell Filr 1.0.2 Desktop Application for Mac Quick Start April 2014 Novell Quick Start Novell Filr allows you to easily access all your files and folders from your desktop, browser, or a mobile device.

More information

Recording Narration in PowerPoint using ispring Free

Recording Narration in PowerPoint using ispring Free Recording Narration in PowerPoint using ispring Free Narrated PowerPoint shows saved as-is tend to be very large files. This makes them cumbersome and difficult to upload and share with your students or

More information

How to register to Skillport

How to register to Skillport How to register to Skillport Overview This tutorial will teach you how to register yourself and your dependents to the Saudi Aramco Skillport elearning system. Please note that the Registration must be

More information

Activity: Creating a group page, assigning a user to the group page and linking the group page to a staff member in the school s staff directory.

Activity: Creating a group page, assigning a user to the group page and linking the group page to a staff member in the school s staff directory. Edline Super User s Guide for Creating a Group Page, Assigning a User to the Group Page and Linking The Group Page to A Member of the School Staff Directory Edline, Guilford County Schools district website

More information

'phred dist acd.tar.z'

'phred dist acd.tar.z' Phred is free for academic use but does require registration and for you to obtain a licence. Please visit http://www.phrap.org/consed/consed.html#howtoget and follow the instructions. A copy of the Phred

More information

Installing Blank SiriusSQL Database 4.0

Installing Blank SiriusSQL Database 4.0 Installing Blank SiriusSQL Database 4.0 (ONLY APPLICABLE IF YOU START WITH SiriusSQL 4005A OR HIGHER!) To install a new blank SiriusSQL database, follow these steps. Copy and Unzip Files 1) Browse to \\Fileserver04\f-drive\V40\Sirius.FS\Data

More information

README FIRST AUTODESK STITCHER UNLIMITED 2009 SERVICE PACK 1 FOR MICROSOFT WINDOWS AND APPLE OSX CONTENTS. Product installation

README FIRST AUTODESK STITCHER UNLIMITED 2009 SERVICE PACK 1 FOR MICROSOFT WINDOWS AND APPLE OSX CONTENTS. Product installation AUTODESK STITCHER UNLIMITED 2009 SERVICE PACK 1 FOR MICROSOFT WINDOWS AND APPLE OSX README FIRST CONTENTS INSTALLATION & LICENSING SYSTEM REQUIREMENTS KNOWN ISSUES & LIMITATIONS You will find in this document

More information

How to Become an Internal Client/CCSD Department Requester on Facilities Scheduler

How to Become an Internal Client/CCSD Department Requester on Facilities Scheduler How to Become an Internal Client/CCSD Department Requester on Facilities Scheduler The Office of Facility Rental has launched a scheduling system for submitting and approving requests for facilities use,

More information

Student Guide for Integrating Media in Classroom 1

Student Guide for Integrating Media in Classroom 1 Student Guide for Integrating Media in Classroom We have partnered with Kaltura to deliver a video application that opens up a whole new set of media-rich teaching possibilities from integration of video

More information

Online Backup Client User Manual

Online Backup Client User Manual Online Backup Client User Manual Software version 3.21 For Linux distributions October 2010 Version 2.0 Disclaimer This document is compiled with the greatest possible care. However, errors might have

More information

2013 EDITION. V-Camp Student. Guide. INTERACTIVE GUIDE Use the buttons shown below to navigate throughout this interactive PDF BACK

2013 EDITION. V-Camp Student. Guide. INTERACTIVE GUIDE Use the buttons shown below to navigate throughout this interactive PDF BACK V-Camp Student Guide INTERACTIVE GUIDE Use the buttons shown below to navigate throughout this interactive PDF BACK 03 EDITION V-Camp Student Guide Table of Contents Unit : Table of Contents...iii How

More information

Cisdem PDF Converter OCR Tutorial

Cisdem PDF Converter OCR Tutorial Cisdem PDF Converter OCR Tutorial 1 Table of Contents Table of Contents... 2 I. About Cisdem PDF Converter OCR... 3 II. Activating this Application... 4 III. Application Operating... 5 I. Convert PDF...

More information

INSTALLATION GUIDE. The latest version of ICPR4, including release notes, can be downloaded at the following link:

INSTALLATION GUIDE. The latest version of ICPR4, including release notes, can be downloaded at the following link: INSTALLATION GUIDE The latest version of ICPR4, including release notes, can be downloaded at the following link: http://www.streamnologies.com/icpr4/version.htm You will need to open your firewall to

More information

Server Edition USER MANUAL. For Microsoft Windows

Server Edition USER MANUAL. For Microsoft Windows Server Edition USER MANUAL For Microsoft Windows Copyright Notice & Proprietary Information Redstor Limited, 2016. All rights reserved. Trademarks - Microsoft, Windows, Microsoft Windows, Microsoft Windows

More information

The Python Mini-Degree Development Environment Guide

The Python Mini-Degree Development Environment Guide The Python Mini-Degree Development Environment Guide By Zenva Welcome! We are happy to welcome you to the premiere Python development program available on the web The Python Mini-Degree by Zenva. This

More information

KYOCERA Net Admin User Guide

KYOCERA Net Admin User Guide KYOCERA Net Admin User Guide Legal Notes Unauthorized reproduction of all or part of this guide is prohibited. The information in this guide is subject to change without notice. We cannot be held liable

More information

Argos Basic Training. Overview: Sign in:

Argos Basic Training. Overview: Sign in: Argos Basic Training Overview: Argos is a campus reporting tool that allows end-users to access and extract information from Banner and Degree Works databases in a report format. Data Blocks are the foundation

More information

Setting Up and Using CCC Pathways Auto Workfile Entry Feature

Setting Up and Using CCC Pathways Auto Workfile Entry Feature Setting Up and Using CCC Pathways Auto Workfile Entry Feature In order to get the most out of CCC Pathways version 4.3 s new Auto Workfile Entry feature, we suggest you create desktop shortcuts that will

More information

Canvas Workshop: Getting Started Help Guide

Canvas Workshop: Getting Started Help Guide Contents Backing up your Moodle course shell... 3 How to Login to Canvas... 5 Navigating the Canvas Interface... 7 Dashboard and Global Navigation... 7 Editing Your Canvas Profile... 8 Adding a Biography...

More information

INSTALLING AN SSH / X-WINDOW ENVIRONMENT ON A WINDOWS PC. Nicholas Fitzkee Mississippi State University Updated May 19, 2017

INSTALLING AN SSH / X-WINDOW ENVIRONMENT ON A WINDOWS PC. Nicholas Fitzkee Mississippi State University Updated May 19, 2017 INSTALLING AN SSH / X-WINDOW ENVIRONMENT ON A WINDOWS PC Installing Secure Shell (SSH) Client Nicholas Fitzkee Mississippi State University Updated May 19, 2017 The first thing you will need is SSH. SSH

More information

AutomaTech Application Note July 2015

AutomaTech Application Note July 2015 Installing Active Directory Domain Services (AD DS), Remote Desktop Services (RDS), GE Advantage Licensing, and GE Proficy SCADA Thin Clients on Windows Server 2012 R2 SUMMARY This application note provides

More information

Barchard Introduction to SPSS Marks

Barchard Introduction to SPSS Marks Barchard Introduction to SPSS 22.0 3 Marks Purpose The purpose of this assignment is to introduce you to SPSS, the most commonly used statistical package in the social sciences. You will create a new data

More information

Server Edition. V8 Peregrine User Manual. for Microsoft Windows

Server Edition. V8 Peregrine User Manual. for Microsoft Windows Server Edition V8 Peregrine User Manual for Microsoft Windows Copyright Notice and Proprietary Information All rights reserved. Attix5, 2015 Trademarks - Microsoft, Windows, Microsoft Windows, Microsoft

More information

Enterprise Server Edition

Enterprise Server Edition Enterprise Server Edition USER MANUAL For Microsoft Windows Copyright Notice & Proprietary Information Redstor Limited, 2017. All rights reserved. Trademarks - Microsoft, Windows, Microsoft Windows, Microsoft

More information

cmosdaq User Guide Requirements Basic Hardware Luigi Vigani Revision 1 (11/11/2015)

cmosdaq User Guide Requirements Basic Hardware Luigi Vigani Revision 1 (11/11/2015) cmosdaq User Guide Revision 1 (11/11/2015) Luigi Vigani Introduction cmosdaq is the software package for managing the interface with the CMOS detectors developed by the Atlas Strip CMOS collaboration.

More information

Installing a Station into a JENEsys PC 1000 Controller rev

Installing a Station into a JENEsys PC 1000 Controller rev Installing a Station into a JENEsys PC 1000 Controller rev. 6 23 16 Note: These instructions assume the computer being used already has its IP settings correct to communicate directly with the specific

More information

RIPPLESTONE SUMMARY

RIPPLESTONE SUMMARY RIPPLESTONE 3.7 - SUMMARY HOME PAGE ADDED AN ADMIN DASHBOARD (3.7.1.2) This new page is available to Super Users and Administrators and provides information about the Ripplestone system. It allows them

More information

This quickstart will help you get started with Turnitin. To begin, you need to register with Turnitin and create a user profile.

This quickstart will help you get started with Turnitin. To begin, you need to register with Turnitin and create a user profile. Introduction This quickstart will help you get started with Turnitin. To begin, you need to register with Turnitin and create a user profile.! If you have received an e-mail from Turnitin with a temporary

More information

29 March 2017 SECURITY SERVER INSTALLATION GUIDE

29 March 2017 SECURITY SERVER INSTALLATION GUIDE 29 March 2017 SECURITY SERVER INSTALLATION GUIDE Contents 1. Introduction... 2 1.1 Assumptions... 2 1.2 Prerequisites... 2 2. Required setups prior the Security Server Installation... 3 1.1 Create domain

More information

LiveNX Upgrade Guide from v5.2.0 to v5.2.1

LiveNX Upgrade Guide from v5.2.0 to v5.2.1 LIVEACTION, INC. LiveNX Upgrade Guide from v5.2.0 to v5.2.1 UPGRADE LiveAction, Inc. 3500 Copyright WEST BAYSHORE 2016 LiveAction, ROAD Inc. All rights reserved. LiveAction, LiveNX, LiveUX, the LiveAction

More information

Windows 7 Professional 64 bit Installation and Configuration for MassLynx or Empower Controlled Ethernet Instrument Communication

Windows 7 Professional 64 bit Installation and Configuration for MassLynx or Empower Controlled Ethernet Instrument Communication Windows 7 Professional 64 bit Installation and Configuration for MassLynx or Empower Controlled Ethernet Instrument Communication May 2014 Version 4 PLEASE READ BEFORE CONTINUING: This document applies

More information

Library ebooks and Your B&N Nook

Library ebooks and Your B&N Nook Library ebooks and Your B&N Nook When using your B&N Nook for the first time, you will need to register for an account at www.bn.com. This will authenticate your Nook for use. During registration at B&N,

More information

Asigra Cloud Backup v13.3 DS-Mobile Client User Guide. September 2017

Asigra Cloud Backup v13.3 DS-Mobile Client User Guide. September 2017 Asigra Cloud Backup v13.3 DS-Mobile Client User Guide Disclaimer Information in this document is subject to change without notice and does not represent a commitment on the part of Asigra Inc. Asigra Inc.

More information

New Features Guide EventTracker v6.2

New Features Guide EventTracker v6.2 New Features Guide EventTracker v6.2 Publication Date: Aug 04, 2008 EventTracker 8815 Centre Park Drive Columbia MD 21045 www.eventtracker.com The information contained in this document represents the

More information

Smart-X Software Solutions SecReport Enterprise User Guide

Smart-X Software Solutions SecReport Enterprise User Guide Smart-X Software Solutions SecReport Enterprise User Guide Table of Contents: WELCOME 4 FEATURES AND CAPABILITIES 5 CONTENTS AND REQUIREMENTS 7 CONTENTS 7 REQUIREMENTS 8 LICENSING AND INSTALLATION 10 EVALUATION

More information

LiveNX Upgrade Guide from v5.1.2 to v Windows

LiveNX Upgrade Guide from v5.1.2 to v Windows LIVEACTION, INC. LiveNX Upgrade Guide from v5.1.2 to v5.1.3 - Windows UPGRADE LiveAction, Inc. 3500 Copyright WEST BAYSHORE 2016 LiveAction, ROAD Inc. All rights reserved. LiveAction, LiveNX, LiveUX, the

More information

Amazon AppStream 2.0: SOLIDWORKS Deployment Guide

Amazon AppStream 2.0: SOLIDWORKS Deployment Guide 2018 Amazon AppStream 2.0: SOLIDWORKS Deployment Guide Build an Amazon AppStream 2.0 environment to stream SOLIDWORKS to your users June 2018 https://aws.amazon.com/appstream2/ 1 Welcome This guide describes

More information

Staff Directory & Online Classroom: A Picture Book

Staff Directory & Online Classroom: A Picture Book Staff Directory & Online Classroom: A Picture Book eleventh in a series By Dennis Sulfsted Technology Coordinator Reading Community City Schools Holly Approved 2007 HRF Publications All current Picture

More information

Pre-Instructions for Proteomics Bioinformatics session Optional things that you can do before the Proteomics session of the Bioinformatics Course:

Pre-Instructions for Proteomics Bioinformatics session Optional things that you can do before the Proteomics session of the Bioinformatics Course: Pre-Instructions for Proteomics Bioinformatics session Optional things that you can do before the Proteomics session of the Bioinformatics Course: (doing the things below ahead of time will ensure that

More information

Installing + Configuring

Installing + Configuring Installing + Configuring Install and Recover with TFTP Introduction This document is designed to help you install the Commotion software if the Install on a Ubiquiti Device instructions did not work, or

More information

Google Drive. Lesson Planet

Google Drive. Lesson Planet Google Drive Lesson Planet 2014 www.lessonplanet.com Introduction Trying to stay up to speed with the latest technology can be exhausting. Luckily this book is here to help, taking you step by step through

More information

INTEGRATING WITH DELL CLIENT COMMAND SUITE: VMWARE WORKSPACE ONE OPERATIONAL TUTORIAL VMware Workspace ONE

INTEGRATING WITH DELL CLIENT COMMAND SUITE: VMWARE WORKSPACE ONE OPERATIONAL TUTORIAL VMware Workspace ONE GUIDE SEPTEMBER 2018 PRINTED 4 MARCH 2019 INTEGRATING WITH DELL CLIENT COMMAND SUITE: VMWARE WORKSPACE ONE OPERATIONAL TUTORIAL VMware Workspace ONE Table of Contents Overview Introduction Purpose Audience

More information

3. Inserting Files and Creating Links

3. Inserting Files and Creating Links 3. Inserting Files and Creating Links 75 In this chapter you will get started with creating a movie list and adding all kinds of media to it. First you will learn how to insert images that are stored on

More information