Submit: An Online Submission Platform for Computer Science Courses
|
|
|
- Myles Harrell
- 10 years ago
- Views:
Transcription
1 Submit: An Online Submission Platform for Computer Science Courses Nolan Burfield Hardy Thrower Brandon Worl Sergiu M. Dascalu Frederick C. Harris, Jr. Department of Computer Science University of Nevada, Reno Reno, Nevada Abstract Computer Science class sizes have increased for several years and will continue to grow. Consequently, instructors dedicate more time grading the increased number of programming assignments they receive. Grading programs individually by hand is inefficient and error prone. Submit implements a deployable web platform that alleviates the problem of inefficiency by automating the grading process, simplifying the submission, and providing instant feedback to students. The Submit web platform allows both students and instructors to focus on their work without additional complexities of managing submissions. As class sizes grow, solutions such as Submit will become necessary to a ensure smooth and efficient work-flow. 1 Introduction Submit is an Internet-based submission platform for computer science classes. The platform targets students, instructors, and graders. Students are able to enroll in courses and submit the source code for their programming assignments. Submit will automatically grade the assignments. The parameters for a grade is derived from test cases defined by the instructor. The success rate of the test case determines the grade of the assignment, but may be modified by the instructor. The automated grading feature reduces the grading time for instructors and graders. Submit allows the students to receive instant feedback regarding their assignment. These simple functions of Submit makes the platform a necessary program with the rise in computer science enrollment. Based off statistics from the Computing Research Association (CRA) [3] class sizes have been growing since 2007 and this trend is likely to continue. As the number of enrolled students increase in a class, an instructor s spends less time focused on class content and more on grading the assignments. With a scalable online submission platform, the burden of manually running and examining student code is eliminated. This means that class sizes can grow without forcing instructors to make compromises by removing necessary content from assignments to make more time for instruction. Submit allows Instructors give more instruction and one-onone time since they will spend less time managing the logistics of potentially hundreds of files turned in every week. In addition to usability improvements and added functionality, Submit needs security. Submit will supersede an older submission platform that is written with PHP, which is insecure if not implemented correctly. This security is a flaw with outdated software that is a vulnerability in a web site not updated regularly [7]. Submit takes advantage of Ruby on Rails, which is a modern web application framework. Rails has security features for a web platform that is built into the foundation [6]. The security features of rails will protect users data from both outside attacks as well as internal tampering by users trying to find exploits in the application. 2 Similar Platforms The University of Nevada, Reno currently has a program similar to Submit. The current system grades assignments, handles files, and provides grades.however, the system does not provide an adequate user interface, security, or modern design. These flaws are attributed to ten year old software that is not updated, written in PHP code, and uses a file storage system on a server. Submit implements numerous usability improvements including an efficient user interface, more interactivity, and a secure and organized file storage system. More courses will be able to take advantage of the system due to the improved interface and dynamic back end that submit offers. The old submit platform also has the security errors as discussed in the introduction section. Blackboard Inc. [8] offers a course management / copyright ISCA, CAINE 2015 October 12-14, 2015, San Diego, California, USA
2 platform that can be taken advantage of by an entire university. The software developed by Blackboard provides students with online access to their courses, data associated to the courses, and submission options. Instructors are able to make assignments, upload files, and give grades all on the Blackboard site. Students are able to view the assignments and turn in projects, quizzes, and tests. When a student takes quizzes or tests on the platform their grades are calculated and added to the overall grade. This grading feature is only available to multiple choice assignments, and not capable of code handling. Submit differs from Blackboard by having the ability to compile and grade the student programs. A similar online software for course management is built by Instructure Inc. [9]. This platform offers all the same features as Blackboard. Students are able to turn in assignments, but there is not the same grading option that Submit will offer to users. 3 Requirements Specification The requirements specification section for Submit is formatted based off Ian Sommerville s book Software Engineering [12]. 3.1 Functional Requirements Submit shall provide the following functions and features. (Functional Requirements are labeled as (F)): F01 Allow users to make accounts. F02 Allow users to edit their accounts. F03 Allow users to edit files within the web page. F04 Allow students to enroll in courses. F05 Allow students to submit files to assignments. F06 Allow students to view assignment grades and grader comments. F07 Allow instructors and admins to create courses. F08 Allow instructors to create new assignments. F09 Allow instructors to open-close course enrollment. F10 Allow instructors to specify the how to compile and run uploaded submissions. F11 Allow instructors to specify start and due dates on an assignment. F12 Allow instructors to mark students as a grader of the course. F13 Allow graders to function as an instructor without the ability to create courses. F14 Allow graders to run submissions against test cases. F15 Allow graders to create comments on a student s submission. 3.2 Non-Functional Requirements Submit shall provide the non-functional requirements. (Labeled as (NF)): NF01 Be developed with Ruby on Rails. NF02 Be fast at serving pages and files. NF03 Be intuitive and quick to learn. NF04 Be compatible across all major web browsers. NF05 Support many students in multiple courses. 4 Use Cases The use cases of the system outlines the functionalities provided. Use cases specify user(s) and the functionality provided to them. In the Submit system there are four types of users: Administrator, Instructor, Grader, and Student. UC01 Sign Up: All users must have an account to access Submit. They are required to give an , name, and password. UC02 Enroll in Courses: Students and graders need to enroll in a course to access the assignments. Courses have a twelve character registration token that must be given out by the instructor to enroll in the course. UC03 Grade Submissions: Instructors and graders should be able to grade student submissions, either one at a time or all at once. UC04 View and Comment on Submissions: Instructors and graders should be able to view code submitted by a student and provide feedback through comments. UC05 Edit Users: The Submit administrator should be able to view all enrolled users and edit their information and roles. UC06 Create Courses: Instructors should be able to create new courses, specifying the course name, term, and year. UC07 Create Assignments: Instructors should be able to create new assignments in courses that they have created. UC08 Create Test Cases: Instructors should be able to create test cases which consist of inputs and expected outputs, which all submitted code for a given assignment will be tested against. UC09 Manage Enrolled Students: Instructors should be able to view all students enrolled in a course and edit their roles or remove them from the course. UC10 Submit Assignments: Students should have the ability to submit their assignment once they are satisfied with their work. Once submitted, files may
3 Submit domain model Assignment description text due_date datetime lock boolean start_date datetime total_grade float (24) User TestCase core_size integer cpu_time integer Submission grade float (24) note text submit_time datetime submitted boolean RunMethod description text name string run_command string UploadDatum contents binary ( ) file_type string shared boolean Input data text description text name string output binary student_visible boolean Comment contents text line integer RunSave difference binary output binary pass boolean Course description text join_token string open boolean term string year integer crypted_password string current_login_at datetime current_login_ip string string failed_login_count integer last_login_at datetime last_login_ip string last_request_at datetime login_count integer password_salt string perishable_token string persistence_token string single_access_token string Role name string resource_id integer resource_type string HABTM_Roles user_id integer HABTM_Users role_id integer HABTM_Courses user_id integer Figure 1: A graphical representation of the Submit database and table relationships. not be edited any more, but grader comments will be visible to the student. UC11 Run Test Cases: Students, graders, and instructors should be able to run a submission s code against the set of test cases at any time. Certain test cases may be marked as hidden, and will only be visible to graders and instructors. UC12 Edit Submissions: Students should be able to edit their submission by adding, removing, or modifying their uploaded files. Additionally, files may be edited directly with Submit s built in text editor. 5 Design Overview Submit is a web platform built with Ruby on Rails. Rails is a web application framework that uses modelview-controller (MVC) architecture. Rails offers simple integration with a MySQL database, Syntactically Awesome Stylesheets (SASS), jquery, and asynchronous JavaScript and XML (Ajax) [5]. The MVC design aids in the separation of tasks for similar page requests, user interaction, and database implementation [4]. The views section holds the information on how to display the web page, the controllers handle requests, and the models handle data. The MySQL database is what the model integrates with and stores all the data associated with the Submit web site. 5.1 View Design A view generates an output for the user. Submits views include a visually appealing graphical design and simple user interface. Each view is connected to a controller action that will communicate data between the two. A Rails view is built in a HTML/Embedded Ruby file, which allows both HTML/CSS integration and Ruby logic. Rails builds the web display based off the view file and the controller specified data. 5.2 Controller Design Submit is driven by a set of controllers that are responsible for linking the front-end views with the back-end models and database. Each controller is responsible for a particular component of Submit, such as user sessions, courses, or uploaded files. These controllers are further divided into actions which are linked to the application s routes. When a particular route is taken, the associated controller action locates
4 Figure 2: The file editor showing a simple program with comments made on the page. the required models and passes them to a specific view. The controller uses Ajax to remove the need for reloading page content for simple tasks such as deleting a file; Ajax will call the necessary controller and update the page with JavaScript [11]. The controllers that Submit uses are outlined below with a description of the controller functionalities. All the controllers unless specified handle the functionality of create, read, update, and destroy (CRUD). Application: This is the base controller created by Rails. All other controllers extend this Application controller. There are no views or models associated with it. Assignments: This module handles everything directly relating to assignments. The Assignments model runs several validations to make sure due dates make sense, all required fields are set, and that all students get a submission object made within the assignment object. Comments: This module handles the creation and deletion of the comments. The placement of comments in a file is handled by the Upload Data controller. Courses: This module manages courses. The course model runs several validations to make sure all required data is set and within acceptable value ranges. Courses do not perform much logic, they are mostly used as a container of assignments and for enrollment purposes. Inputs: This module processes an input for a test case on an assignment. Run Methods: This module is a container for multiple input objects and the run command. The run command specifies how to run the compiled program. Submissions: This module contains all of the files and grade information for a student s submission to an assignment. Submissions can be locked, at which point they will be graded and can no-longer be modified. Test Cases: This module processes the test cases that get configured by the course instructor for an assignment. The controller sets constraints on how an assignment is ran, such as the max core dump size and runtime in seconds. This object also contains a collection of run method objects. Test case objects contain the instructor s source code, which the controller uses to automatically generate correct outputs for input objects. Upload Data: This module handles uploaded files. It runs several validations to ensure that names are not duplicated, both amongst the upload data in a submission and the shared upload data in a test case. User Sessions: This module handles user authentication, and is part of the AuthLogic gem, which handles the session logic. Users: This module handles user account information, such as user name and Model Design A Model represents a singular object in Rails. They are responsible for validating data and then saving data to the database. They can also have methods attached to them to perform certain actions [10]. For example, the assignment model has a method that can clear all run-saves associated with itself, which is useful when the assignment s test cases change, thus rendering old run-saves obsolete. 5.4 Database Design Submit uses a MySQL database to store all data associated with the website. This includes user data with encrypted and salted passwords, uploaded file data, course information, and more. The database structure is relational, meaning that relationships exist between database tables, such as has-many, belongsto, and has-and-belongs-to-many [2]. The database relationships can be seen in Figure 1.
5 Figure 3: An instructor view of the test cases. From this page an instructor uploads a program, creates run methods, adds inputs to the run methods, and sets program parameters. 6 User Interface Figure 5: This is a cutout section of the instructor course management page. In this view the student join token can be seen, the enrolled students can be accessed, all student grades, and the assignments for the course are managed. The interface for all four users is designed to be intuitive, and remove tedious web site navigations. This is the main improvement that was made from the original Submit website. The interface can be broken down into two different views: one for students, and the other for instructors. The student view is the default view for users that are not assigned a role; this is due to the restrictive use of the site a student user is given. As an instructor role this allows the creation of classes, an instructor class management page can be found in Figure 5. Students are given enrollment tokens which are specific to each class, these tokens allow students to enroll in the class. Automatically grading assignments is Submits main feature. An instructor and grader create assignments in a course. Each assignment contains test cases that specify how to run a program. A view of the test case page is in Figure 3. In a test case, the instructor will upload a working program that will be used to generate correct outputs. These outputs are derived from the inputs created within a run method. A run method specifies the command line call to run the programs for an assignment. There are two parameters that will set the max run time on a CPU the program will run for to prevent infinite loops, and the max core dump size
6 Figure 4: This shows the output view for running a program. The input data, output, expected output, and difference are shown. If an output is incorrect a red box is placed around the input name and the output result, as shown in bottom box. from a program to prevent large files being stored on the server. Submit focuses on instant student feedback. To achieve this, an output of student code is compared to the expected output from the test cases. Submit calculates the difference between the two outputs and generates a form for the user to see correct results or erroneous results. A view of the output with a correct result and incorrect result can be found in Figure 4. A major improvement Submit makes upon its predecessor is the ability to edit code directly online. A user has access to Ace, a high performance code editor. Ace has built in functionality that makes code editing easy [1]. This feature adds additional support to the student and grader use. A student is able to make minor modifications to code in order to fix output errors. The instructor/grader is able to comment directly on students code as well. This enables the student to remove the need for tedious uploads, and for quicker and more thorough grading of code. The editor and comments is displayed in Figure 2. 7 Conclusion The Submit web platform brings features to the computer science classes that enables simple code submission as a student and quick grading as an instructor. Submit is built with Ruby on Rails and takes advantages of its security, simplicity, and the easy integration with Ajax, MySQL database, and SASS. Submit enables students to join classes, manage programming assignments, and test their programs online.instructors benefit from Submits automatic grading feature and course management system. Submit offers efficient grading and submitting of programming assignments. 8 Future Work Submit is capable of automatically testing student code, but there are many more features that can be added to it. Anonymous peer-review of submitted code is one planned future feature that would allow students to anonymously comment upon another student s code to provide feedback and suggestions. When it comes to assignments cheating needs to be spotted. The ability to flag any submissions that appear to be cheating would be a necessary function. This could include
7 submitted code that matches other submissions for that same assignment, or code that appears to have been copied from another location on the Internet. To allow the management of local programs and Submits database is a useful function for students. Acknowledgements This material is based in part upon work supported by the National Science Foundation under grant no. IIA Any opinions, findings, and conclusions or recommendations expressed in this material are those of the authors and do not necessarily reflect the views of the National Science Foundation. References [9] instructure Inc. instructure, instructure.com/ Last Accessed [10] Will Little. How to design and prep a ruby on rails model architecture, Last Accessed [11] Tutorials Point. Ajax on rails tutorial, Last Accessed [12] Ian Sommerville. Software Engineering. Addison- Wesley, Harlow, England, [1] AlloyUI. Tutorial-ace editor, alloyui.com/tutorials/ace-editor/ Last Accessed [2] David Aragon. Introduction to database design on rails, introduction-to-database-design-on-rails/ Last Accessed [3] Computer Research Association. Undergrad computer science enrollments rise for fifth straight year, blog/2013/03/taulbeereport/ Last Accessed [4] Kalid Azad. Intermediate rails: Understanding models, views and controllers, intermediate-rails-understanding-modelsviews-and-controllers/ Last Accessed [5] Ryan Bigg. Rails guides, rubyonrails.org/getting_started.html Last Accessed [6] Ryan Dewhurst. Ruby on rails security basics, Last Accessed [7] Anthony Ferrara. Is php secure? it is if you do it right, nl/resources/podcasts/acquia-podcast-69- php-security-anthony-ferrara Last Accessed [8] Blackboard Inc. Blackboard, blackboard.com/ Last Accessed
Business Application Development Platform
Business Application Development Platform Author Copyright Last update Version Document type Sclable Business Solutions GmbH Attribution-NonCommercial-NoDerivatives 4.0 International 01/28/2014 1.0 Technical
Certified PHP/MySQL Web Developer Course
Course Duration : 3 Months (120 Hours) Day 1 Introduction to PHP 1.PHP web architecture 2.PHP wamp server installation 3.First PHP program 4.HTML with php 5.Comments and PHP manual usage Day 2 Variables,
Turnitin User Guide. Includes GradeMark Integration. January 2014 (revised)
Turnitin User Guide Includes GradeMark Integration January 2014 (revised) Copyright 2014 2 Contents Contents... 3 Turnitin Integration... 4 How This Guide is Organized... 4 Related Documentation... 4 Campus
Ruby On Rails. CSCI 5449 Submitted by: Bhaskar Vaish
Ruby On Rails CSCI 5449 Submitted by: Bhaskar Vaish What is Ruby on Rails? Ruby on Rails is a web application framework written in Ruby, a dynamic programming language. Ruby on Rails uses the Model-View-Controller
The Learn-Verified Full Stack Web Development Program
The Learn-Verified Full Stack Web Development Program Overview This online program will prepare you for a career in web development by providing you with the baseline skills and experience necessary to
Qlik Sense Enabling the New Enterprise
Technical Brief Qlik Sense Enabling the New Enterprise Generations of Business Intelligence The evolution of the BI market can be described as a series of disruptions. Each change occurred when a technology
Is Drupal secure? A high-level perspective on web vulnerabilities, Drupal s solutions, and how to maintain site security
Is Drupal secure? A high-level perspective on web vulnerabilities, Drupal s solutions, and how to maintain site security Presented 2009-05-29 by David Strauss Thinking Securely Security is a process, not
BreezingForms Guide. 18 Forms: BreezingForms
BreezingForms 8/3/2009 1 BreezingForms Guide GOOGLE TRANSLATE FROM: http://openbook.galileocomputing.de/joomla15/jooml a_18_formulare_neu_001.htm#t2t32 18.1 BreezingForms 18.1.1 Installation and configuration
Web Applications: Overview and Architecture
Web Applications: Overview and Architecture Computer Science and Engineering College of Engineering The Ohio State University Lecture 1 Road Map in Pictures: Web App Road Map in Pictures Browser Request
Ruby on Rails Secure Coding Recommendations
Introduction Altius IT s list of Ruby on Rails Secure Coding Recommendations is based upon security best practices. This list may not be complete and Altius IT recommends this list be augmented with additional
Team Members: Christopher Copper Philip Eittreim Jeremiah Jekich Andrew Reisdorph. Client: Brian Krzys
Team Members: Christopher Copper Philip Eittreim Jeremiah Jekich Andrew Reisdorph Client: Brian Krzys June 17, 2014 Introduction Newmont Mining is a resource extraction company with a research and development
Advanced Web Development SCOPE OF WEB DEVELOPMENT INDUSTRY
Advanced Web Development Duration: 6 Months SCOPE OF WEB DEVELOPMENT INDUSTRY Web development jobs have taken thе hot seat when it comes to career opportunities and positions as a Web developer, as every
Development of a Learning Content Management Systems
Development of a Learning Content Management Systems Lejla Abazi-Bexheti Abstract Change appears to be the only constant in the field of ICT and what was treated as advanced feature few years ago is today
Bachelor Project System (BEPsys)
Bachelor Project System (BEPsys) by Sarah Bashirieh - 1523259 Nima Rahbari - 1515659 Electrical Engineering, Mathematics and Computer Science Delft University of Technology October 2013 Abstract In this
EZcast technical documentation
EZcast technical documentation Document written by > Michel JANSENS > Arnaud WIJNS from ULB PODCAST team http://podcast.ulb.ac.be http://ezcast.ulb.ac.be [email protected] SOMMAIRE SOMMAIRE 2 1. INTRODUCTION
HYBRID. Course Packet
HYBRID Course Packet TABLE OF CONTENTS 2 HYBRID Overview 3 Schedule 4 Prerequisites 5 Admissions Process 6 What is a Full Stack? 7 Why Become a Full Stack Developer? 8 Inside the 3 Full Stacks: LAMP 9
Terms and Definitions for CMS Administrators, Architects, and Developers
Sitecore CMS 6 Glossary Rev. 081028 Sitecore CMS 6 Glossary Terms and Definitions for CMS Administrators, Architects, and Developers Table of Contents Chapter 1 Introduction... 3 1.1 Glossary... 4 Page
Turnitin Blackboard 9.0 Integration Instructor User Manual
Turnitin Blackboard 9.0 Integration Instructor User Manual Version: 2.1.3 Updated December 16, 2011 Copyright 1998 2011 iparadigms, LLC. All rights reserved. Turnitin Blackboard Learn Integration Manual:
WEB SECURITY CONCERNS THAT WEB VULNERABILITY SCANNING CAN IDENTIFY
WEB SECURITY CONCERNS THAT WEB VULNERABILITY SCANNING CAN IDENTIFY www.alliancetechpartners.com WEB SECURITY CONCERNS THAT WEB VULNERABILITY SCANNING CAN IDENTIFY More than 70% of all websites have vulnerabilities
How To Manage Web Content Management System (Wcm)
WEB CONTENT MANAGEMENT SYSTEM February 2008 The Government of the Hong Kong Special Administrative Region The contents of this document remain the property of, and may not be reproduced in whole or in
WHITE PAPER. FortiWeb and the OWASP Top 10 Mitigating the most dangerous application security threats
WHITE PAPER FortiWeb and the OWASP Top 10 PAGE 2 Introduction The Open Web Application Security project (OWASP) Top Ten provides a powerful awareness document for web application security. The OWASP Top
A&D srl Consulting & Logistic Systems Galleria Spagna, 35-35127 Padova (PD) - Italy - Telefono +39.049.8792400 - Fax +39.049.8792408 Sede Legale:
INTEGRATED DOCUMENT MANAGEMENT GENERAL DIAGRAM 1 GENERAL CONCEPTS The integrated document management of a company is due to two trends: 1. electronic processing (scanning) of documents used within the
LICENSE4J LICENSE MANAGER USER GUIDE
LICENSE4J LICENSE MANAGER USER GUIDE VERSION 4.5.5 LICENSE4J www.license4j.com Table of Contents Getting Started... 4 Managing Products... 6 Create Product... 6 Edit Product... 7 Refresh, Delete Product...
Bureau for Visual Affairs. content management system. Keep your website up-to-date and relevant with ease
content management system Keep your website up-to-date and relevant with ease 1 Only an up-to-date and well maintained website is perceived as relevant and will generate return visits and involvement.
INSTRUCTIONS FOR UPLOADING THE COURSE ORIENTATION MODULE
INSTRUCTIONS FOR UPLOADING THE COURSE ORIENTATION MODULE The import file for the Blackboard 9.1 Course Orientation may be found on the Blackboard website in the Faculty area by clicking on the Resources
IBM Business Process Manager Version 8 Release 5. Hiring Tutorial IBM
IBM Business Process Manager Version 8 Release 5 Hiring Tutorial IBM Note Before using this information and the product it supports, read the information in Notices on page 95. This edition applies to
A generic framework for game development
A generic framework for game development Michael Haller FH Hagenberg (MTD) AUSTRIA [email protected] Werner Hartmann FAW, University of Linz AUSTRIA [email protected] Jürgen Zauner FH
i>clicker v7 Gradebook Integration: Blackboard Learn Instructor Guide
i>clicker v7 Gradebook Integration: Blackboard Learn July 2015 Table of Contents Overview... 3 Step 1: Prepare a Configured Version of i>clicker... 4 Step 2: Configure your i>clicker Software... 5 Step
OWASP TOP 10 ILIA ALSHANETSKY @ILIAA HTTPS://JOIND.IN/15741
OWASP TOP 10 ILIA ALSHANETSKY @ILIAA HTTPS://JOIND.IN/15741 ME, MYSELF & I PHP Core Developer Author of Guide to PHP Security Security Aficionado THE CONUNDRUM USABILITY SECURITY YOU CAN HAVE ONE ;-) OPEN
PowerLink for Blackboard Vista and Campus Edition Install Guide
PowerLink for Blackboard Vista and Campus Edition Install Guide Introduction...1 Requirements... 2 Authentication in Hosted and Licensed Environments...2 Meeting Permissions... 2 Installation...3 Configuring
MAGENTO Migration Tools
MAGENTO Migration Tools User Guide Copyright 2014 LitExtension.com. All Rights Reserved. Magento Migration Tools: User Guide Page 1 Content 1. Preparation... 3 2. Setup... 5 3. Plugins Setup... 7 4. Migration
MarkLogic Server. Reference Application Architecture Guide. MarkLogic 8 February, 2015. Copyright 2015 MarkLogic Corporation. All rights reserved.
Reference Application Architecture Guide 1 MarkLogic 8 February, 2015 Last Revised: 8.0-1, February, 2015 Copyright 2015 MarkLogic Corporation. All rights reserved. Table of Contents Table of Contents
Developing ASP.NET MVC 4 Web Applications MOC 20486
Developing ASP.NET MVC 4 Web Applications MOC 20486 Course Outline Module 1: Exploring ASP.NET MVC 4 The goal of this module is to outline to the students the components of the Microsoft Web Technologies
Intunex Oy Skillhive Service Description 1 / 6
Intunex Oy Skillhive Service Description 1 / 6 About Skillhive Skillhive is a social business application designed for connecting and sharing expertise within organizations. Skillhive enables employees
Configuring the JEvents Component
Configuring the JEvents Component The JEvents Control Panel's Configuration button takes you to the JEvents Global Configuration page. Here, you may set a very wide array of values that control the way
Seamless Web Data Entry for SAS Applications D.J. Penix, Pinnacle Solutions, Indianapolis, IN
Seamless Web Data Entry for SAS Applications D.J. Penix, Pinnacle Solutions, Indianapolis, IN ABSTRACT For organizations that need to implement a robust data entry solution, options are somewhat limited
MOOCviz 2.0: A Collaborative MOOC Analytics Visualization Platform
MOOCviz 2.0: A Collaborative MOOC Analytics Visualization Platform Preston Thompson Kalyan Veeramachaneni Any Scale Learning for All Computer Science and Artificial Intelligence Laboratory Massachusetts
SQL Injection Attack Lab
Laboratory for Computer Security Education 1 SQL Injection Attack Lab Copyright c 2006-2010 Wenliang Du, Syracuse University. The development of this document is funded by the National Science Foundation
Marketo Integration Setup Guide
Page 1 of 30 Table of Contents About the RingLead Integration with Marketo Create the Marketo Webhook - Response Mapping - Configure Webhook Response Mapping Create the Marketo Program and Campaign - Create
Proposal Submission System - A Content Management System Approach for Proposal Submission
Proposal Submission System - A Content Management System Approach for Proposal Submission Saeed Shadlou, Chai Kinn Pong, Sanath Sukumaran Taylor's University ABSTRACT Submissions of proposals are very
Developing ASP.NET MVC 4 Web Applications
Course M20486 5 Day(s) 30:00 Hours Developing ASP.NET MVC 4 Web Applications Introduction In this course, students will learn to develop advanced ASP.NET MVC applications using.net Framework 4.5 tools
SQL Injection Attack Lab Using Collabtive
Laboratory for Computer Security Education 1 SQL Injection Attack Lab Using Collabtive (Web Application: Collabtive) Copyright c 2006-2011 Wenliang Du, Syracuse University. The development of this document
Design and Functional Specification
2010 Design and Functional Specification Corpus eready Solutions pvt. Ltd. 3/17/2010 1. Introduction 1.1 Purpose This document records functional specifications for Science Technology English Math (STEM)
USER GUIDE: MaaS360 Services
USER GUIDE: MaaS360 Services 05.2010 Copyright 2010 Fiberlink Corporation. All rights reserved. Information in this document is subject to change without notice. The software described in this document
The purpose of this report is to educate our prospective clients about capabilities of Hackers Locked.
This sample report is published with prior consent of our client in view of the fact that the current release of this web application is three major releases ahead in its life cycle. Issues pointed out
PROPOSED SOLUTIONS FOR THE DESIGN & DEVELOPMENT OF COUPON WEBSITE
PROPOSED SOLUTIONS FOR THE DESIGN & DEVELOPMENT OF COUPON WEBSITE Proposed Framework: PHP5.0, Jquery, Json, Javascript, Ajax; MySQL will be used as back-end database; Div based HTML/CSS for browser compatibility;
Web Application Development Using UML
Web Application Development Using UML Dilip Kothamasu West Chester University West Chester, PA - 19382 [email protected] Zhen Jiang Department of Computer Science Information Assurance Center West Chester
zen Platform technical white paper
zen Platform technical white paper The zen Platform as Strategic Business Platform The increasing use of application servers as standard paradigm for the development of business critical applications meant
Advanced File Integrity Monitoring for IT Security, Integrity and Compliance: What you need to know
Whitepaper Advanced File Integrity Monitoring for IT Security, Integrity and Compliance: What you need to know Phone (0) 161 914 7798 www.distology.com [email protected] detecting the unknown Integrity
THE OPEN UNIVERSITY OF TANZANIA
THE OPEN UNIVERSITY OF TANZANIA Institute of Educational and Management Technologies COURSE OUTLINES FOR DIPLOMA IN COMPUTER SCIENCE 2 nd YEAR (NTA LEVEL 6) SEMESTER I 06101: Advanced Website Design Gather
Course Syllabus Web Page Design 2 IMED 2315
Semester with Course Reference Number (CRN) Instructor contact information (phone number and email address) Office Location and Hours Course Location/Times Course Semester Credit Hours (SCH) (lecture,
WordPress Security Scan Configuration
WordPress Security Scan Configuration To configure the - WordPress Security Scan - plugin in your WordPress driven Blog, login to WordPress as administrator, by simply entering the url_of_your_website/wp-admin
INFORMATION BROCHURE Certificate Course in Web Design Using PHP/MySQL
INFORMATION BROCHURE OF Certificate Course in Web Design Using PHP/MySQL National Institute of Electronics & Information Technology (An Autonomous Scientific Society of Department of Information Technology,
Simply type the id# in the search mechanism of ACS Skills Online to access the learning assets outlined below.
Programming Practices Learning assets Simply type the id# in the search mechanism of ACS Skills Online to access the learning assets outlined below. Titles Debugging: Attach the Visual Studio Debugger
Facebook Twitter YouTube Google Plus Website Email
PHP MySQL COURSE WITH OOP COURSE COVERS: PHP MySQL OBJECT ORIENTED PROGRAMMING WITH PHP SYLLABUS PHP 1. Writing PHP scripts- Writing PHP scripts, learn about PHP code structure, how to write and execute
Teaching Tools Research Group: Course Management Software
Teaching Tools Research Group: Course Management Software Prepared For: Dan Lecocq Team Members: Jeff Park, Corey Bell, Tyler Pare, Craig Buche Executive Summary With the emergence of computers and the
Framework as a master tool in modern web development
Framework as a master tool in modern web development PETR DO, VOJTECH ONDRYHAL Communication and Information Systems Department University of Defence Kounicova 65, Brno, 662 10 CZECH REPUBLIC [email protected],
Ruby on Rails. Object Oriented Analysis & Design CSCI-5448 University of Colorado, Boulder. -Dheeraj Potlapally
Ruby on Rails Object Oriented Analysis & Design CSCI-5448 University of Colorado, Boulder -Dheeraj Potlapally INTRODUCTION Page 1 What is Ruby on Rails Ruby on Rails is a web application framework written
Request For Proposal Website Development/Updation @ Saurashtra University,
Request For Proposal Website Development/Updation @ Saurashtra University, Rajkot RFP to be submitted at: Computer Centre, Saurashtra University, Rajkot. Last date of Submission: January,2015 INTRODUCTION:
Cloud Powered Mobile Apps with Azure
Cloud Powered Mobile Apps with Azure Malte Lantin Technical Evanglist Microsoft Azure Agenda Mobile Services Features and Demos Advanced Features Scaling and Pricing 2 What is Mobile Services? Storage
Information Supplement: Requirement 6.6 Code Reviews and Application Firewalls Clarified
Standard: Data Security Standard (DSS) Requirement: 6.6 Date: February 2008 Information Supplement: Requirement 6.6 Code Reviews and Application Firewalls Clarified Release date: 2008-04-15 General PCI
Case Study. Data Governance Portal. www.brainvire.com 2013 Brainvire Infotech Pvt Ltd Page 1 of 1
Case Study Data Governance Portal www.brainvire.com 2013 Brainvire Infotech Pvt Ltd Page 1 of 1 Client Requirement The website is the Data Governance intranet portal. Data Governance is the practice of
This course provides students with the knowledge and skills to develop ASP.NET MVC 4 web applications.
20486B: Developing ASP.NET MVC 4 Web Applications Course Overview This course provides students with the knowledge and skills to develop ASP.NET MVC 4 web applications. Course Introduction Course Introduction
FINAL DoIT 04.01.2013- v.8 APPLICATION SECURITY PROCEDURE
Purpose: This procedure identifies what is required to ensure the development of a secure application. Procedure: The five basic areas covered by this document include: Standards for Privacy and Security
Web Testing. Main Concepts of Web Testing. Software Quality Assurance Telerik Software Academy http://academy.telerik.com
Web Testing Main Concepts of Web Testing Software Quality Assurance Telerik Software Academy http://academy.telerik.com The Lectors Snejina Lazarova Product Manager Business Services Team Dimo Mitev QA
Project Orwell: Distributed Document Integrity Verification
1 Project Orwell: Distributed Document Integrity Verification Tommy MacWilliam [email protected] Abstract Project Orwell is a client and server application designed to facilitate the preservation
HTML5. Turn this page to see Quick Guide of CTTC
Programming SharePoint 2013 Development Courses ASP.NET SQL TECHNOLGY TRAINING GUIDE Visual Studio PHP Programming Android App Programming HTML5 Jquery Your Training Partner in Cutting Edge Technologies
CSc 230 Software System Engineering FINAL REPORT. Project Management System. Prof.: Doan Nguyen. Submitted By: Parita Shah Ajinkya Ladkhedkar
CSc 230 Software System Engineering FINAL REPORT Project Management System Prof.: Doan Nguyen Submitted By: Parita Shah Ajinkya Ladkhedkar Spring 2015 1 Table of Content Title Page No 1. Customer Statement
Case Study. SaaS Based Multi-Store Market Place. www.brainvire.com 2013 Brainvire Infotech Pvt. Ltd Page 1 of 5
Case Study SaaS Based Multi-Store Market Place Page 1 of 5 Client Requirement Magento Multi-Store Ecommerce Management is a web based virtual mall. It s an e- commerce virtual mall cum SaaS based model
How to Configure and Use the Moodle 1.9.5 Grade Book
How to Configure and Use the Moodle 1.9.5 Grade Book Table of Contents I. Definitions... 2 II. Grade Book Suggestions... 2 III. Decide on Aggregation Methods... 3 IV. Add Categories... 4 V. Add Graded
Supporting Workflow in a Course Management System
Supporting Workflow in a Course Management System Chavdar Botev Hubert Chao Theodore Chao Raymond Doyle Sergey Grankin Jon Guarino Saikat Guha Pei-Chen Lee Dan Perry Christopher Re Ilya Rifkin Tingyan
3. Broken Account and Session Management. 4. Cross-Site Scripting (XSS) Flaws. Web browsers execute code sent from websites. Account Management
What is an? s Ten Most Critical Web Application Security Vulnerabilities Anthony LAI, CISSP, CISA Chapter Leader (Hong Kong) [email protected] Open Web Application Security Project http://www.owasp.org
EQUELLA. Blackboard Learn Configuration Guide. Version 6.2
EQUELLA Blackboard Learn Configuration Guide Version 6.2 Document History Document No. Reviewed Finalised Published 1 11/12/2013 12/12/2013 12/12/2013 December 2013 edition. Information in this document
Developing ASP.NET MVC 4 Web Applications Course 20486A; 5 Days, Instructor-led
Developing ASP.NET MVC 4 Web Applications Course 20486A; 5 Days, Instructor-led Course Description In this course, students will learn to develop advanced ASP.NET MVC applications using.net Framework 4.5
FileMaker Server 9. Custom Web Publishing with PHP
FileMaker Server 9 Custom Web Publishing with PHP 2007 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker is a trademark of FileMaker,
05.0 Application Development
Number 5.0 Policy Owner Information Security and Technology Policy Application Development Effective 01/01/2014 Last Revision 12/30/2013 Department of Innovation and Technology 5. Application Development
ACAT: ABET Course Assessment Tool
University of Nevada Reno ACAT: ABET Course Assessment Tool A thesis submitted in partial fulfillment of the requirements for the degree of Master of Science in Computer Science by Eugene O. Essa Dr. Frederick
User Manual for Web. Help Desk Authority 9.0
User Manual for Web Help Desk Authority 9.0 2011ScriptLogic Corporation ALL RIGHTS RESERVED. ScriptLogic, the ScriptLogic logo and Point,Click,Done! are trademarks and registered trademarks of ScriptLogic
Software Requirements Specification For Real Estate Web Site
Software Requirements Specification For Real Estate Web Site Brent Cross 7 February 2011 Page 1 Table of Contents 1. Introduction...3 1.1. Purpose...3 1.2. Scope...3 1.3. Definitions, Acronyms, and Abbreviations...3
YubiKey Authentication Module Design Guideline
YubiKey Authentication Module Design Guideline Yubico Application Note Version 1.0 May 7, 2012 Introduction Disclaimer Yubico is the leading provider of simple, open online identity protection. The company
Software Requirements Specification
CSL740 Software Engineering Course, IIT Delhi Software Requirements Specification Submitted By Abhishek Srivastava (2011EEY7511) Anil Kumar (2009CS10180) Jagjeet Singh Dhaliwal (2008CS50212) Ierum Shanaya
WEB DEVELOPMENT IMMERSIVE GA.CO/WDI
General Assembly Course Curriculum WEB DEVELOPMENT IMMERSIVE Table of Contents 3 Overview 4 Students 5 Curriculum Projects & Units 11 Frequently Asked Questions 13 Contact Information 2 Overview OVERVIEW
Threat Modeling. Categorizing the nature and severity of system vulnerabilities. John B. Dickson, CISSP
Threat Modeling Categorizing the nature and severity of system vulnerabilities John B. Dickson, CISSP What is Threat Modeling? Structured approach to identifying, quantifying, and addressing threats. Threat
Strategic Asset Tracking System User Guide
Strategic Asset Tracking System User Guide Contents 1 Overview 2 Web Application 2.1 Logging In 2.2 Navigation 2.3 Assets 2.3.1 Favorites 2.3.3 Purchasing 2.3.4 User Fields 2.3.5 History 2.3.6 Import Data
LearningServer for.net Implementation Guide
LearningServer for.net Implementation Guide This document outlines recommended steps for planning and implementing a LearningServer solution. A successful installation and implementation requires the completion
Mobile Maker. Software Requirements Specification
Mobile Maker Software Requirements Specification Version: 1.1 Prepared by: Daniel Retta David Carlson Marco Sedano Nicholas Marks
U.S. Department of Health and Human Services (HHS) The Office of the National Coordinator for Health Information Technology (ONC)
U.S. Department of Health and Human Services (HHS) The Office of the National Coordinator for Health Information Technology (ONC) econsent Trial Project Architectural Analysis & Technical Standards Produced
Oracle Service Bus Examples and Tutorials
March 2011 Contents 1 Oracle Service Bus Examples... 2 2 Introduction to the Oracle Service Bus Tutorials... 5 3 Getting Started with the Oracle Service Bus Tutorials... 12 4 Tutorial 1. Routing a Loan
Elgg 1.8 Social Networking
Elgg 1.8 Social Networking Create, customize, and deploy your very networking site with Elgg own social Cash Costello PACKT PUBLISHING open source* community experience distilled - BIRMINGHAM MUMBAI Preface
NatureServe s Environmental Review Tool
NatureServe s Environmental Review Tool A Repeatable Online Software Solution for Agencies For More Information, Contact: Lori Scott Rob Solomon [email protected] [email protected] 703-908-1877
Document management and exchange system supporting education process
Document management and exchange system supporting education process Emil Egredzija, Bozidar Kovacic Information system development department, Information Technology Institute City of Rijeka Korzo 16,
IBM Tivoli Composite Application Manager for Microsoft Applications: Microsoft Internet Information Services Agent Version 6.3.1 Fix Pack 2.
IBM Tivoli Composite Application Manager for Microsoft Applications: Microsoft Internet Information Services Agent Version 6.3.1 Fix Pack 2 Reference IBM Tivoli Composite Application Manager for Microsoft
Dialogue Live. the solution for intelligent, interactive documents
Dialogue Live the solution for intelligent, interactive documents the next dimension imagine of document automation Enterprises conduct hundreds of business processes every day. Most of these processes
Criteria for web application security check. Version 2015.1
Criteria for web application security check Version 2015.1 i Content Introduction... iii ISC- P- 001 ISC- P- 001.1 ISC- P- 001.2 ISC- P- 001.3 ISC- P- 001.4 ISC- P- 001.5 ISC- P- 001.6 ISC- P- 001.7 ISC-
