Instructions for the Day of Ruby Ruby on Rails Tutorial

Size: px
Start display at page:

Download "Instructions for the Day of Ruby Ruby on Rails Tutorial"

Transcription

1 Instructions for the Day of Ruby Ruby on Rails Tutorial 1. Make sure you have the vendor files from 2. Open a terminal window and change to a project directory. We'll call this directory RAILS_ROOT. On screen, you'll see it as ~/DoR/todo. The application we'll create will be in a folder under the current directory we're in 3. Type the command rails todo 4. Type the command cd todo. This will put us into the RAILS_ROOT directory 5. Extract the vendor/plugins directory from the zip file, and place it into RAILS_ROOT/ vendor/plugins 6. Run the command script/generate cucumber 7. Run the command script/generate rspec 8. Run the command script/server. If it starts up, then you are configured and can shut down the server by hitting Ctrl-C. If not, please let one of the instructors know 9. Type the following into RAILS_ROOT/features/view_tasks.feature 10. Run the command script/cucumber features/ 11.Type the following into RAILS_ROOT/features/step_definitions/tasks.rb 12. Run the command script/cucumber features/ Day of Ruby Instructions: Page 1 of 20

2 13. Run the command script/generate scaffold Task name:string 14. Run the command script/cucumber features/ 15. Run the command rake db:migrate 16. Run the command rake features (which now replaces script/cucumber features) 17. Run the command script/server and point your web browser to 18.Modify the file RAILS_ROOT/features/view_tasks.feature to look like 19. Run the command rake features 20. Modify the file RAILS_ROOT/config/routes.rb to have the line map.root :controller => tasks 21. Run the command rake features 22. Run the command script/server 23. Point your web browser to Note that even though our tests say someone going to the page should see the tasks home page, we're seeing the default page 24. Shut down the server by hitting Ctrl-C 25.Delete the file RAILS_ROOT/public/index.html 26. Run the command script/server 27. Point your web browser to and notice that you can now see the tasks page 28.Edit the file RAILS_ROOT/app/views/tasks/index.html.erb and change the first line <h1>listing Tasks</h1> to <h1>things to Do</h1> Day of Ruby Instructions: Page 2 of 20

3 29. Modify the file RAILS_ROOT/features/view_tasks.feature to look like 30. Run the command rake features 31.Modify the file RAILS_ROOT/features/step_definitions/tasks.rb to look like the following Day of Ruby Instructions: Page 3 of 20

4 32. Run the command rake features 33. Run the command script/generate migration AddCategories 34.Open the generated file, and make it look like 35. Run the command rake db:migrate 36. Run the command rake features 37.Modify the file RAILS_ROOT/app/views/tasks/index.html.erb to look like 38. Run the command rake features 39.All green! Day of Ruby Instructions: Page 4 of 20

5 40.Create the file RAILS_ROOT/features/edit_tasks.feature and make it look like 41. Run the command rake features 42.Modify the file RAILS_ROOT/features/step_definitions/tasks.rb to add 43. Run the command rake features Day of Ruby Instructions: Page 5 of 20

6 44.Modify the file RAILS_ROOT/app/views/tasks/edit.html.erb to look like 45. Run the command rake features 46.All green! 47.Modify the file RAILS_ROOT/features/edit_tasks.feature to add 48. Run the command script/generate migration AddClosed 49. Open the file created, and make it look like: Day of Ruby Instructions: Page 6 of 20

7 50. Run the command rake features 51.Modify the file RAILS_ROOT/app/controllers/tasks_controller.rb to look like 52. Run the command rake features 53.All green! 54.Modify RAILS_ROOT/app/models/task.rb to look like 55.Modify RAILS_ROOT/app/controllers/tasks_controller.rb to look like 56. Run the command rake features 57.All green! Day of Ruby Instructions: Page 7 of 20

8 58.Modify RAILS_ROOT/features/edit_tasks.feature to add 59. Run the command rake features 60.Modify the file RAILS_ROOT/app/models/tasks.rb to look like 61. Run the command rake features 62.All green! 63.You should have the folder RAILS_ROOT/vendor/plugins/restful_authentication. If not, please see an instructor 64. Run the command script/generate authenticated user sessions 65. Run the command rake db:migrate 66. Run the command rake to make sure the tests for restful_authentication pass 67.Modify the file RAILS_ROOT/features/view_tasks.feature to add 68. Run the command rake features Day of Ruby Instructions: Page 8 of 20

9 69.Modify RAILS_ROOT/features/step_definitions to add 70. Run the command rake features 71. Run the command script/generate migration TaskToUsers 72.Modify the created file to look like 73.Modify the file RAILS_ROOT/app/models/task.rb to add 74. Run the command rake db:migrate 75. Run the command rake features Day of Ruby Instructions: Page 9 of 20

10 76.Modify the file RAILS_ROOT/app/view/tasks/index.html.erb to look like 77. Run the command rake features 78.Modify RAILS_ROOT/app/controllers/application.rb to look like 79.Modify RAILS_ROOT/app/models/user.rb to look like 80.Modify RAILS_ROOT/app/controllers/tasks_controller.rb to look like Day of Ruby Instructions: Page 10 of 20

11 81.Modify RAILS_ROOT/app/models/task.rb to look like 82. Run the command rake features 83.All green! 84.Modify the file RAILS_ROOT/features/edit_tasks.feature to add 85. Run the command rake features 86.Modify the file RAILS_ROOT/app/controllers/tasks_controller to look like 87. Run the command rake features 88.Modify the file RAILS_ROOT/features/edit_tasks.feature to look like Day of Ruby Instructions: Page 11 of 20

12 89. Run the command rake features 90.All green! 91.Modify the file RAILS_ROOT/features/view_tasks.feature to look like 92. Run the command rake features 93.Modify the file RAILS_ROOT/features/view_tasks.feature to look like Day of Ruby Instructions: Page 12 of 20

13 94. Run the command rake features 95.All green! 96.Create a file called RAILS_ROOT/features/security.feature and make it look like 97. Run the command rake features 98.Modify the file RAILS_ROOT/app/views/tasks/index.html.erb to look like Day of Ruby Instructions: Page 13 of 20

14 99. Run the command rake features 100. Add the file RAILS_ROOT/features/manage_users.feature and make it look like 101. Run the command rake features 102. Modify the file RAILS_ROOT/app/views/tasks/index.html.erb to look like Day of Ruby Instructions: Page 14 of 20

15 103. Modify the RAILS_ROOT/features/support/paths.rb to look like 104. Run the command rake features 105. All green! 106. Modify the file RAILS_ROOT/features/security.feature to look like 107. Run the command rake features 108. Modify the file RAILS_ROOT/features/support/paths.rb to look like Day of Ruby Instructions: Page 15 of 20

16 109. Modify the file RAILS_ROOT/app/controllers/tasks_controller.rb to look like 110. Run the command rake features 111. All green! 112. Rename the file RAILS_ROOT/app/views/layouts/tasks.html.erb to RAILS_ROOT/app/views/layouts/application.html.erb Day of Ruby Instructions: Page 16 of 20

17 1. Buttons Desktop Applications with Ruby Instructions 2. Layouts 3. Motion Day of Ruby Instructions: Page 17 of 20

18 4. Basic Clock 5. Refactored Clock Day of Ruby Instructions: Page 18 of 20

19 6. Completed Binary Clock Day of Ruby Instructions: Page 19 of 20

20 Day of Ruby Instructions: Page 20 of 20

Day 3: 26/April/2012 Scaffolding Generation of Skeletons; Test run Memopad

Day 3: 26/April/2012 Scaffolding Generation of Skeletons; Test run Memopad Day 3: 26/April/2012 Scaffolding Generation of Skeletons; Test run Memopad p Generate WEB screens of the MemoPad Database Application n Setting up for Database Connection n Automatic generation of DB Files

More information

Web System Development by Ruby on Rails. Day 3(4/Oct/2012) First Project Internationalization

Web System Development by Ruby on Rails. Day 3(4/Oct/2012) First Project Internationalization Web System Development by Ruby on Rails Day 3(4/Oct/2012) First Project Internationalization Today s Goal (Continued) Run Rails 3 on CentOS, and generate the first project. Generate the bi-lingual screen

More information

Day 2: 19/April/2012 Installing Aptana IDE; Integrated Development Environment And Rails

Day 2: 19/April/2012 Installing Aptana IDE; Integrated Development Environment And Rails Day 2: 19/April/2012 Installing Aptana IDE; Integrated Development Environment And Rails p Setting Up Aptana IDE n IDE; Integrated Development Environment n Set Up Japanese Language Support n Run rails

More information

Migrations (Chapter 23)

Migrations (Chapter 23) Migrations (Chapter 23) The notes in this document are based on the online guide at http://guides.rubyonrails.org/migrations.html and the Agile Web Development with Rails, 4 th edition, book. Migration

More information

CSCI-2320 Web Programming: Ruby on Rails

CSCI-2320 Web Programming: Ruby on Rails CSCI-2320 Web Programming: Ruby on Rails Mohammad T. Irfan Plan u Model-View-Controller (MVC) framework of web programming u Ruby on Rails 1 Ruby on Rails u Developed by David Hansson released 2004 u MVC

More information

Exercise 7c: Creating and Parameterizing Report Templates

Exercise 7c: Creating and Parameterizing Report Templates Exercise 7c: Creating and Parameterizing Report Templates This exercise uses the result files abstat and glstat. Step 1: Load the file abstat into HyperGraph 2D and create airbag statistics plots. 1. Open

More information

Rails: Views and Controllers

Rails: Views and Controllers Rails: Views and Controllers Computer Science and Engineering College of Engineering The Ohio State University Lecture 18 Recall: Rails Architecture Wiring Views and Controllers A controller is just an

More information

Introduction to Ruby on Rails

Introduction to Ruby on Rails Introduction to Ruby on Rails Software Engineering II WS 2016/17 Arian Treffer arian.treffer@hpi.de Prof. Plattner, Dr. Uflacker Enterprise Platform and Integration Concepts group Introduction to Ruby

More information

Introduction to Ruby on Rails

Introduction to Ruby on Rails Introduction to Ruby on Rails Keven Richly keven.richly@hpi.de Software Engineering II WS 2017/18 Prof. Plattner, Dr. Uflacker Enterprise Platform and Integration Concepts group Introduction to Ruby on

More information

WinSCP. Author A.Kishore/Sachin

WinSCP. Author A.Kishore/Sachin WinSCP WinSCP is a freeware windows client for the SCP (secure copy protocol), a way to transfer files across the network using the ssh (secure shell) encrypted protocol. It replaces other FTP programs

More information

Rails: MVC in action

Rails: MVC in action Ruby on Rails Basic Facts 1. Rails is a web application framework built upon, and written in, the Ruby programming language. 2. Open source 3. Easy to learn; difficult to master. 4. Fun (and a time-saver)!

More information

Introduction to Ruby on Rails

Introduction to Ruby on Rails Introduction to Ruby on Rails Ralf Teusner ralf.teusner@hpi.de Software Engineering II WS 2018/19 Prof. Plattner, Dr. Uflacker Enterprise Platform and Integration Concepts group Introduction to Ruby on

More information

Client Side MVC with Backbone & Rails. Tom

Client Side MVC with Backbone & Rails. Tom Client Side MVC with Backbone & Rails Tom Zeng @tomzeng tom@intridea.com Client Side MV* with Backbone & Rails Benefits of Client Side MVC Backbone.js Introduction Client Side MV* Alternatives Backbone

More information

You can use the WinSCP program to load or copy (FTP) files from your computer onto the Codd server.

You can use the WinSCP program to load or copy (FTP) files from your computer onto the Codd server. CODD SERVER ACCESS INSTRUCTIONS OVERVIEW Codd (codd.franklin.edu) is a server that is used for many Computer Science (COMP) courses. To access the Franklin University Linux Server called Codd, an SSH connection

More information

Open the solution in Xamarin Studio. Notice that the Xamarin project already has the Xamarin Test Cloud Agent installed via NuGet.

Open the solution in Xamarin Studio. Notice that the Xamarin project already has the Xamarin Test Cloud Agent installed via NuGet. Calabash Quickstart for Xamarin.iOS Overview In this quick start we'll add a Calabash feature to a Xamarin.iOS application and run the test locally and in Xamarin Test Cloud. The test will confirm that

More information

Contents in Detail. Foreword by Xavier Noria

Contents in Detail. Foreword by Xavier Noria Contents in Detail Foreword by Xavier Noria Acknowledgments xv xvii Introduction xix Who This Book Is For................................................ xx Overview...xx Installation.... xxi Ruby, Rails,

More information

Rails Guide. MVC Architecture. Migrations. Hey, thanks a lot for picking up this guide!

Rails Guide. MVC Architecture. Migrations. Hey, thanks a lot for picking up this guide! Rails Guide Hey, thanks a lot for picking up this guide! I created this guide as a quick reference for when you are working on your projects, so you can quickly find what you need & keep going. Hope it

More information

How to make a Work Profile for Windows 10

How to make a Work Profile for Windows 10 How to make a Work Profile for Windows 10 Setting up a new profile for Windows 10 requires you to navigate some screens that may lead you to create the wrong type of account. By following this guide, we

More information

CMSC 330: Organization of Programming Languages. Markup & Query Languages

CMSC 330: Organization of Programming Languages. Markup & Query Languages CMSC 330: Organization of Programming Languages Markup & Query Languages Other Language Types Markup languages Set of annotations to text Query languages Make queries to databases & information systems

More information

CMSC 330: Organization of Programming Languages

CMSC 330: Organization of Programming Languages CMSC 330: Organization of Programming Languages Markup & Query Languages Other Language Types Markup languages Set of annotations to text Query languages Make queries to databases & information systems

More information

Web System Development with Ruby on Rails

Web System Development with Ruby on Rails Web System Development with Ruby on Rails Day 7(8/Nov/2012) Relational Database Today's Theme Learn Relation Structure in Relational Database Understand how to describe the relational structure Add new

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

Extending Rails: Understanding and Building Plugins. Clinton R. Nixon

Extending Rails: Understanding and Building Plugins. Clinton R. Nixon Extending Rails: Understanding and Building Plugins Clinton R. Nixon Welcome! Welcoming robin by Ian-S (http://flickr.com/photos/ian-s/2301022466/) What are we going to talk about? The short How plugins

More information

1. Enter the Order Number in the smartdocs search field, then press the Enter key on your keyboard while the cursor is still blinking in the field.

1. Enter the Order Number in the smartdocs search field, then press the Enter key on your keyboard while the cursor is still blinking in the field. Creating a smartbinder Presentation Overview: This job aid shows you how to create a smartbinder Presentation in smartdocs. A smartbinder is an HTML document that creates a Table of Contents with links

More information

This guide will walk you through the steps for installing and using wget on Windows.

This guide will walk you through the steps for installing and using wget on Windows. Wget Windows Guide This guide will walk you through the steps for installing and using wget on Windows. The Eye is currently sponsored by 10gbps.io. Check out their services, they re awesome. :) Quick

More information

Cloud Implementation 1

Cloud Implementation 1 Cloud Implementation 1 Welcome and Introduction Right Networks will work with CLA staff and CLA clients to assist with migration to the Right Networks Cloud. Migration and onboarding services will be provided

More information

SWITS User Manual. Accessing SWITS. This document focuses on the elements required to Access SWITS. Total Pages: 5

SWITS User Manual. Accessing SWITS. This document focuses on the elements required to Access SWITS. Total Pages: 5 SWITS User Manual This document focuses on the elements required to Access SWITS Total Pages: 5 Accessing SWITS Using Your Browser to Access SWITS Identity Management Context Creating a shortcut California

More information

CPW AutoGrader. CSCI 370 Field Session 2016 June 20, Client: Christopher Painter Wakefield

CPW AutoGrader. CSCI 370 Field Session 2016 June 20, Client: Christopher Painter Wakefield CPW AutoGrader CSCI 370 Field Session 2016 June 20, 2016 Client: Christopher Painter Wakefield Authors: Michael Bartlett Harry Krantz Eric Olson Chris Rice Caleb Willkomm Table of Contents Introduction

More information

User Authentication and Session Control

User Authentication and Session Control User Authentication and Session Control CITS3403 Web & Internet Technologies Includes material from Agile Web Development with Rails, 3rd Ed, 2008 and 4 th Ed 2011, 2012 The Pragmatic Programmers. Slides

More information

Once file and folders are added to your Module Content area you will need to link to them using the Item tool.

Once file and folders are added to your Module Content area you will need to link to them using the Item tool. VITAL how to guides elearning Unit Last updated: 01.10.2010 Course Files tool Overview Course Files tool enables you to: Quickly copy large numbers of files into a VITAL module. Files can be dragged and

More information

Setting up your Computer

Setting up your Computer Setting up your Computer 1 Introduction On this lab, you will be getting your computer ready to develop and run Java programs. This lab will be covering the following topics: Installing Java JDK 1.8 or

More information

Tutorial NetOp School

Tutorial NetOp School Tutorial NetOp School Getting Started: NetOp is software available in the computer classrooms that allows screen sharing. That means you can show what's on your screen to all students, or that you can

More information

ICAU1128B: Operate a Personal Computer Student Handbook

ICAU1128B: Operate a Personal Computer Student Handbook ICA20105 Certificate II in Information Technology ICAU1128B: Operate a Personal Computer Student Handbook Modification History Competency Handbooks ICA20105: Cert II in Information Technology: ICAU1128B

More information

Accessing Your Payroll Stubs via

Accessing Your Payroll Stubs via Accessing Your Payroll Stubs via Email Logging On to a Computer within the District: (does not apply to your computer at home) 1) Turn on the computer, if it is not already on. At this screen, press the

More information

Step-by-step guide for the libradtran virtual machine. A) Installation

Step-by-step guide for the libradtran virtual machine. A) Installation Step-by-step guide for the libradtran virtual machine July 2014 A) Installation You need approximately 7GB of free disk space on your computer to install the virtual machine. Step 1) Extract the archive

More information

Where we are. For example. Extensions. Authorization and Testing

Where we are. For example. Extensions. Authorization and Testing Where we are Authorization and Testing Last time: We added the ability of users to log in, and made sure that we treated their passwords in a secure fashion. INFO 2310: Topics in Web Design and Programming

More information

Hello, welcome to this brief tutorial on accessing and playing Adobe Presenter video files.

Hello, welcome to this brief tutorial on accessing and playing Adobe Presenter video files. Hello, welcome to this brief tutorial on accessing and playing Adobe Presenter video files. Recorded video presentations for this course were produced using Adobe Presenter. After viewing this brief tutorial,

More information

Recording your Voice Tutorials 1 - Downloading and Installing Audacity Wayne B. Dickerson

Recording your Voice Tutorials 1 - Downloading and Installing Audacity Wayne B. Dickerson Recording your Voice Tutorials 1 - Downloading and Installing Audacity Wayne B. Dickerson In this tutorial, you ll learn how to download and install a free but high-quality audio recording program called

More information

CSE 454 Final Report TasteCliq

CSE 454 Final Report TasteCliq CSE 454 Final Report TasteCliq Samrach Nouv, Andrew Hau, Soheil Danesh, and John-Paul Simonis Goals Your goals for the project Create an online service which allows people to discover new media based on

More information

Microsoft Lync 2013 Quick-Start Guide. ThinkTel Communications Professional Services Last Updated: June 18, 2013

Microsoft Lync 2013 Quick-Start Guide. ThinkTel Communications Professional Services Last Updated: June 18, 2013 Microsoft Lync 2013 Quick-Start Guide ThinkTel Communications Professional Services Last Updated: June 18, 2013 Instant Messaging & Presence Accept an IM request Click anywhere on the picture display area

More information

Version S Cincinnati, Suite 105 Tulsa, OK (918) Fax (918)

Version S Cincinnati, Suite 105 Tulsa, OK (918) Fax (918) Version 1.0 We pride ourselves in producing good stuff. If you have any questions, problems, or suggestions regarding this product, please contact us at: 810 S Cincinnati, Suite 105 Tulsa, OK 74119 (918)

More information

Day 6: 24/May/2012. TDD (Test Driven Development)

Day 6: 24/May/2012. TDD (Test Driven Development) Day 6: 24/May/2012 TDD (Test Driven Development) p Understand what TDD (Test Driven Development) is. p Understand the words related to the Test Driven Development p Get used to the Rails-Way of TDD p We

More information

Label Flow Release Notes

Label Flow Release Notes Label Flow Release Notes Release 6.3.25 Release Date: 4/2/2013 Note 1: Read 6.0 Release Notes if upgrading from version 5 or earlier for important information. - Fixed an issue with PDF417 barcodes not

More information

iphone Application Programming L09: Networking

iphone Application Programming L09: Networking iphone Application Programming L09: Networking Prof. Dr., Florian Heller, Jonathan Diehl Media Computing Group, RWTH Aachen WS 2009/2010 http://hci.rwth-aachen.de/iphone Networking Bonjour Networking Push

More information

JUMS 3.0 TIPS. Enter the UIC without the first W.

JUMS 3.0 TIPS. Enter the UIC without the first W. JUMS 3.0 TIPS Tip 1: Data Conversion from JUMS 2.4 to JUMS 3.0 If you have data in JUMS 2.4 that you wish to convert to JUMS 3.0, the UIC without the first W in the System Setup of JUMS 2.4 must match

More information

Using WS_FTP. Step 1 - Open WS_FTP LE and create a Session Profile.

Using WS_FTP. Step 1 - Open WS_FTP LE and create a Session Profile. Using WS_FTP So now you have finished the great personal homepage and you want to share it with the world. But how do you get it online to share? A common question with a simple answer; FTP, or file transfer

More information

Faculty Tutorial: Export/Import a Test

Faculty Tutorial: Export/Import a Test Faculty Tutorial: Export/Import a Test Purpose: To demonstrate to faculty members how to export a test from one course, and then import it into another course. This process can also be used for Surveys

More information

iflame INSTITUTE OF TECHNOLOGY

iflame INSTITUTE OF TECHNOLOGY Web Development Ruby On Rails Duration: 3.5 Month Course Overview Ruby On Rails 4.0 Training From Iflame Allows You To Build Full Featured, High Quality, Object Oriented Web Apps. Ruby On Rails Is A Full

More information

CS CS Tutorial 2 2 Winter 2018

CS CS Tutorial 2 2 Winter 2018 CS CS 230 - Tutorial 2 2 Winter 2018 Sections 1. Unix Basics and connecting to CS environment 2. MIPS Introduction & CS230 Interface 3. Connecting Remotely If you haven t set up a CS environment password,

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

Introduction to web page creation

Introduction to web page creation Introduction to web page creation Step 1: Planning website and page layouts... 2 Step 2: Demonstrating Mediator... 2 Step 3: Linking the pages... 6 Step 4: Exporting your files... 6 MatchWare Page 1 Step

More information

Getting Started With UNIX Lab Exercises

Getting Started With UNIX Lab Exercises Getting Started With UNIX Lab Exercises This is the lab exercise handout for the Getting Started with UNIX tutorial. The exercises provide hands-on experience with the topics discussed in the tutorial.

More information

The Ip address / Name value should be: srvvcenter-cis

The Ip address / Name value should be: srvvcenter-cis CIS133 Installation Lab #1 - DESKTOP CLIENT OpenSUSE Install. Before beginning the installation, create a virtual machine in which you will install the operating system. 1) Open the VMware vsphere Client.

More information

Modeling Process Specification All information in integreat is stored within packages that are called Specifications

Modeling Process Specification All information in integreat is stored within packages that are called Specifications Modeling Process Specification All information in integreat is stored within packages that are called Specifications When working with Team Projects the Specifications can be grouped in folders. You can

More information

VMware vsphere: What s New Lab Manual ESXi 5.5 and vcenter Server 5.5

VMware vsphere: What s New Lab Manual ESXi 5.5 and vcenter Server 5.5 VMware vsphere: What s New Lab Manual ESXi 5.5 and vcenter Server 5.5 VMware Education Services VMware, Inc. www.vmware.com/education VMware vsphere: What s New ESXi 5.5 and vcenter Server 5.5 Part Number

More information

Lab - Data Migration in Windows

Lab - Data Migration in Windows Lab - Data Migration in Windows Introduction When a new computer is purchased or a new operating system is installed, it is often desirable to migrate a user s data to the new computer or OS. Windows has

More information

WORKING WITH YOUR PORTFOLIO

WORKING WITH YOUR PORTFOLIO WORKING WITH YOUR PORTFOLIO THE INFORMATION INCLUDED HERE COVERS HOW TO CREATE YOUR PORTFOLIO FOLDER, HOW TO LINK DOCUMENTS TO YOUR TABLE OF CONTENTS, AND HOW TO SAVE / SEND YOUR PORTFOLIO TO YOUR PROFESSOR

More information

Installation notes ICECUP, ICE-GB and DCPSE

Installation notes ICECUP, ICE-GB and DCPSE Installation notes ICECUP, ICE-GB and DCPSE Thank you for purchasing one of our corpora. You have in your hand the result of many years of research! Our software, ICECUP, will run on a Windows desktop,

More information

Watir-Webdriver Cucumber Automation Framework Setup Guide

Watir-Webdriver Cucumber Automation Framework Setup Guide Watir-Webdriver Cucumber Automation Framework Setup Guide Documentation version table: Document updating summary. Version Date Date Created 1.0 08/05/15 Index Page 1 November 18, 2015 Table of Contents

More information

Rails: Associations and Validation

Rails: Associations and Validation Rails: Associations and Validation Computer Science and Engineering College of Engineering The Ohio State University Lecture 17 Schemas, Migrations, Models migrations models database.yml db:migrate db:create

More information

SUG Breakout Session: OSC OnDemand App Development

SUG Breakout Session: OSC OnDemand App Development SUG Breakout Session: OSC OnDemand App Development Basil Mohamed Gohar Web and Interface Applications Manager Eric Franz Senior Engineer & Technical Lead This work is supported by the National Science

More information

2. Click the Download Now button located below the navigation bar at the top of the page.

2. Click the Download Now button located below the navigation bar at the top of the page. OfficeMate SPEX On-Demand Installation Guide QUICK GUIDE SUMMARY A. Download and extract the SPEX files from your account on Frames Data Online. B. Relocate the contents of the extracted UPCMM01YY folder

More information

The installation provides enhancements to earlier systems and fixes reported errors.

The installation provides enhancements to earlier systems and fixes reported errors. RandomWare Update Installation: Version 4.01.018 The installation provides enhancements to earlier systems and fixes reported errors. Contents 1. Installation from Disc... 2 2. Installation from Download...

More information

Files and Folders What are Files and Folders Files: This is the Data, Images, and things the user makes

Files and Folders What are Files and Folders Files: This is the Data, Images, and things the user makes Files and Folders What are Files and Folders Files: This is the Data, Images, and things the user makes Folders: where the Data, Images and things are stored in the computer. Some people call Folders Directories.

More information

The Ip address / Name value should be: srvvcenter-cis

The Ip address / Name value should be: srvvcenter-cis CIS133 Installation Lab #1 - DESKTOP CLIENT OpenSUSE Install. Before beginning the installation, create a virtual machine in which you will install the operating system. 1) Open the VMware vsphere Client.

More information

Introduction and first application. Luigi De Russis. Rails 101

Introduction and first application. Luigi De Russis. Rails 101 Introduction and first application Luigi De Russis 2 About Rails Ruby on Rails 3 Framework for making dynamic web applications created in 2003 Open Source (MIT License) for the Ruby programming language

More information

Access Groups. Collect and Store. Text Currency Date/Time. Tables Fields Data Type. You Your Friend Your Parent. Unique information

Access Groups. Collect and Store. Text Currency Date/Time. Tables Fields Data Type. You Your Friend Your Parent. Unique information Tutorial A database is a computerized record keeping system used to collect, store, analyze and report electronic information for a variety of purposes. Microsoft Access is a database. There are three

More information

Author A.Kishore/Sachin WinSCP

Author A.Kishore/Sachin   WinSCP WinSCP WinSCP is a freeware windows client for the SCP (secure copy protocol), a way to transfer files across the network using the ssh (secure shell) encrypted protocol. It replaces other FTP programs

More information

레드마인 설치 작성일 : 작성자 : 김종열

레드마인 설치 작성일 : 작성자 : 김종열 레드마인 2.3.3 설치 작성일 : 2013-11-2 작성자 : 김종열 기준문서 : http://www.redmine.or.kr/projects/community/wiki/%eb%a0%88%eb%93%9c%eb%a7%88%ec%9d %B8_%EC%84%A4%EC%B9%98(Windows) 설치홖경 OS: Windows 7 64 DB: Mysql 5.5 이상

More information

PART 1. Eclipse IDE Tutorial. 1. What is Eclipse? Eclipse Java IDE

PART 1. Eclipse IDE Tutorial. 1. What is Eclipse? Eclipse Java IDE PART 1 Eclipse IDE Tutorial Eclipse Java IDE This tutorial describes the usage of Eclipse as a Java IDE. It describes the installation of Eclipse, the creation of Java programs and tips for using Eclipse.

More information

BVA LLP Web Portal User Guide

BVA LLP Web Portal User Guide BVA LLP Web Portal User Guide Opening the Web Portal Website The Web Portal is accessed from the link found on the BVA website homepage: http://www.bvateam.com Web Portal Users Each portal user requires

More information

How to download and install Firefox on Your Computer

How to download and install Firefox on Your Computer How to download and install Firefox on Your Computer Setting up Panel Quote is really easy and takes less than 5 minutes. Simply load Firefox onto your computer, adjust the printer settings and you re

More information

INSTALLATION INSTRUCTIONS FOR IPYTHON ENVIRONMENT

INSTALLATION INSTRUCTIONS FOR IPYTHON ENVIRONMENT ENGL-S3024 Computational Methods for Literary and Cultural Criticism INSTALLATION INSTRUCTIONS FOR IPYTHON ENVIRONMENT Instructor: Graham Sack CCNMTL: Jonah Bossewitch Anders Pearson OVERVIEW Why am I

More information

This allows us to use the cookbook code that was downloaded with InstantRails, instead of a new copy of that code. Why is this important?

This allows us to use the cookbook code that was downloaded with InstantRails, instead of a new copy of that code. Why is this important? The Cookbook Application, cont. To bring up the Cookbook application, create a new Ruby project (rightclick in Package Explorer view, then New Project. We name the project cookbook and then deselect the

More information

5. A small dialog window appears; enter a new password twice (this is different from Dori!) and hit Go.

5. A small dialog window appears; enter a new password twice (this is different from Dori!) and hit Go. Installing Wordpress from JMA Lab to JMA Server 1. Take note these instructions are streamlined for the JMA lab they can t be performed in this fashion from home! 2. Wordpress is a database driven web

More information

ProDoc Tech Tip. Downloading and Installing ProDoc, Step-by-Step

ProDoc Tech Tip. Downloading and Installing ProDoc, Step-by-Step ProDoc Tech Tip Downloading and The following instructions will show you step-by-step how to download and install the student version of ProDoc. These instructions were written for the Microsoft Internet

More information

myfiles on Gateway Guide - Students

myfiles on Gateway Guide - Students myfiles on Gateway Guide - Students Updated: August 11, 2012 Created: Feb. 06, 2012 Contents What is myfiles?... 1 Log into myfiles... 1 How to set your file view preferences... 1 How to open folders...

More information

Web based testing: Chucklist and Selenium

Web based testing: Chucklist and Selenium Web based testing: Chucklist and Selenium Concerns when testing web applications Concerns when testing web applications Broken links Information is displayed correctly Information is processed correctly

More information

For additional support please call Cost Effective Computers at This guide was printed on 9/22/2004.

For additional support please call Cost Effective Computers at This guide was printed on 9/22/2004. Hardware and Windows Basics... 2 Start Up... 3 Starting the Computer... 3 Starting the Pharmacy System... 3 Flip Screen... 4 Starting a Workstation... 4 Shutdown Server (or Windows Workstation)... 4 Backups...

More information

Importing Your Angel Course into Canvas

Importing Your Angel Course into Canvas Importing Your Angel Course into Canvas As Cardinal Stritch University prepares for an August 2014 launch of Canvas, our new learning management system, instructors can take the following steps to ensure

More information

Welcome to the Exporting a Report tutorial. In this tutorial, you will learn how to export a report as an excel spreadsheet or an Adobe PDF document.

Welcome to the Exporting a Report tutorial. In this tutorial, you will learn how to export a report as an excel spreadsheet or an Adobe PDF document. Slide 1 - Slide 1 Welcome to the Exporting a Report tutorial. In this tutorial, you will learn how to export a report as an excel spreadsheet or an Adobe PDF document. 1 of 20 11/22/2006 Slide 2 - Slide

More information

Convert and Archive a Blackboard Collaborate recording in D2L

Convert and Archive a Blackboard Collaborate recording in D2L These instructions outline the steps to convert Blackboard Collaborate recordings created in a D2L course from the native Collaborate format (.collab) to an MP4 video or MP3 audio format. You'll need to

More information

Resource: Installing Cisco Secure ACS 3.0 and greater for Windows 2000

Resource: Installing Cisco Secure ACS 3.0 and greater for Windows 2000 Resource: Installing Cisco Secure ACS 3.0 and greater for Windows 2000 Cisco Secure ACS 3.0 for Windows 2000 is easy to install and configure. This section presents a brief overview of the essential installation

More information

Outlook 2013 & 2010 Lync Messanger

Outlook 2013 & 2010 Lync Messanger Outlook 2013 & 2010 Lync Messanger Outlook 2013 Tabs Ribbon Reading Pane Message View Navigation Pane Status Bar Setting Options Customizing Your View Modify the Navigation Pane Modify the Reading Pane

More information

CS 155 Project 2. Overview & Part A

CS 155 Project 2. Overview & Part A CS 155 Project 2 Overview & Part A Project 2 Web application security Composed of two parts Part A: Attack Part B: Defense Due date: Part A: May 5th (Thu) Part B: May 12th (Thu) Project 2 Ruby-on-Rails

More information

Web-CAT Guidelines. 1. Logging into Web-CAT

Web-CAT Guidelines. 1. Logging into Web-CAT Contents: 1. Logging into Web-CAT 2. Submitting Projects via jgrasp a. Configuring Web-CAT b. Submitting Individual Files (Example: Activity 1) c. Submitting a Project to Web-CAT d. Submitting in Web-CAT

More information

Sun VirtualBox Installation Tutorial

Sun VirtualBox Installation Tutorial Sun VirtualBox Installation Tutorial Installing Linux Mint 5 LTS Guest OS By Dennis Berry Welcome to the world of virtualization and Linux. This tutorial is intended to help users who are new to the world

More information

KNOWLEDGE FORUM 4 MACINTOSH SERVER ADMINISTRATOR S GUIDE

KNOWLEDGE FORUM 4 MACINTOSH SERVER ADMINISTRATOR S GUIDE KNOWLEDGE FORUM 4 MACINTOSH SERVER ADMINISTRATOR S GUIDE Knowledge Forum is a registered trademark of Knowledge Building Concepts. Administrator s Guide Macintosh Server--Version 4.1 or above Macintosh

More information

Table of Contents Introduction to the SAP Roambi migration process SystemRequirements Preparing to upgrade SAP Roambi ES

Table of Contents Introduction to the SAP Roambi migration process SystemRequirements Preparing to upgrade SAP Roambi ES Table of Contents Introduction to the SAP Roambi migration process 6 SystemRequirements 6 Mobile Devices Server Requirements Hardware Operating Systems Java Application Servers Databases Other Collaterals

More information

Firewalls can prevent access to the Unix Servers. Please make sure any firewall software or hardware allows access through Port 22.

Firewalls can prevent access to the Unix Servers. Please make sure any firewall software or hardware allows access through Port 22. EINSTEIN OVERVIEW Einstein (Einstein.franklin.edu) and Codd (codd.franklin.edu) are two servers that are used for many Computer Science (COMP) courses. Students will be directed to use either Einstein

More information

Soundburst has been a music provider for Jazzercise since Our site is tailored just for Jazzercise instructors. We keep two years of full

Soundburst has been a music provider for Jazzercise since Our site is tailored just for Jazzercise instructors. We keep two years of full Soundburst has been a music provider for Jazzercise since 2001. Our site is tailored just for Jazzercise instructors. We keep two years of full R-sets and at least four years of individual tracks on our

More information

Provides access to Worldspan Reservations Manager.

Provides access to Worldspan Reservations Manager. The Worldspan Go! SM Home Page Windows 95 Quick Reference The home page displays when you start your computer. This screen is continuously updated with new information. The figure below is intended to

More information

Microsoft. Designing, Deploying, and Managing a Network Solution for a Small- and Medium-Sized Business

Microsoft. Designing, Deploying, and Managing a Network Solution for a Small- and Medium-Sized Business Microsoft 70-282 Designing, Deploying, and Managing a Network Solution for a Small- and Medium-Sized Business Download Full Version : http://killexams.com/pass4sure/exam-detail/70-282 Answer: A QUESTION:

More information

Student DyKnow Tutorial

Student DyKnow Tutorial VIRGINIA TECH Student DyKnow Tutorial Getting Started Guide Instructional Technology Team, College of Engineering Last Updated: Fall 2015 Email tabletteam@vt.edu if you need additional assistance after

More information

Bitnami Ruby for Huawei Enterprise Cloud

Bitnami Ruby for Huawei Enterprise Cloud Bitnami Ruby for Huawei Enterprise Cloud Description Bitnami Ruby Stack provides a complete development environment for Ruby on Rails that can be deployed in one click. It includes most popular components

More information

Back Up/Restore Hard Drives And Partitions With CloneZilla Live

Back Up/Restore Hard Drives And Partitions With CloneZilla Live By Falko Timme Published: 2008-11-25 17:35 Version 1.0 Author: Falko Timme Last edited 11/17/2008 This tutorial shows how you can back up and restore hard drives and partitions

More information

My project won't save to Remote storage... what should I do?

My project won't save to Remote storage... what should I do? My project won't save to Remote storage... what should I do? Date : September 30, 2016 Networking and permission issues may prevent your project from saving back to remote storage. Should you encounter

More information

CS10001: Computer Literacy Lab Assignment #2

CS10001: Computer Literacy Lab Assignment #2 CS10001: Computer Literacy Lab Assignment #2 Name: Lab Policies: Lab attendance is mandatory. You are given the opportunity to use the university s resources to start and complete the assignment during

More information

Courslets, a golf improvement web service. Peter Battaglia

Courslets, a golf improvement web service. Peter Battaglia Courslets, a golf improvement web service Peter Battaglia Discussion Project Overview Design and Technologies Utilized Rails and REST URLs, URLs, URLs Rails and Web Services What s s exposed as a service?

More information

Rails: Associations and Validation

Rails: Associations and Validation Rails: Associations and Validation Computer Science and Engineering College of Engineering The Ohio State University Lecture 26 Schemas, Migrations, Models migrations models database.yml db:migrate db:create

More information