Icpc - Local Registration System

Total Page:16

File Type:pdf, Size:1020Kb

Icpc - Local Registration System ICPC - LOCAL REGISTRATION SYSTEM A Project Presented to the faculty of the Department of Computer Science California State University, Sacramento Submitted in partial satisfaction of the requirements for the degree of MASTER OF SCIENCE in Computer Science by Shiva Kumar Melam FALL 2016 © 2016 Shiva Kumar Melam ALL RIGHTS RESERVED ii ICPC - LOCAL REGISTRATION SYSTEM A Project by Shiva Kumar Melam Approved by: __________________________________, Committee Chair John Clevenger, Ph.D __________________________________, Second Reader Scott Gordon, Ph.D ____________________________ Date iii Student: Shiva Kumar Melam I certify that this student has met the requirements for format contained in the University format manual, and that this project is suitable for shelving in the Library and credit is to be awarded for the project. __________________________, Graduate Coordinator ___________________ Ying Jin, Ph.D. Date Department of Computer Science iv Abstract of ICPC - LOCAL REGISTRATION SYSTEM by Shiva Kumar Melam ICPC (International Collegiate Programming Contest) is a worldwide programming contest organized by ACM (Association for Computing Machinery) every year. Over 40,000 students from over 2500 Universities all around the globe participate in this prestigious competition. It is a team based multi-tier competition which follows the rules formulated by ACM. The competition initially takes place among the local universities and the winners of this contest get selected to the regional level competition. Winners at the regional level contest advance to the world finals. Currently, the ICPC has a web-based registration system only for the regional and world finals Contests. Registration of the contestants/teams who participate in local contests has been a manual process i.e. the event organizers take the details of the contestants on a piece of paper. It has become a tedious process to archive and maintain the information of many such local contestants on paper. Moreover, this data couldn’t be shared among other contests. Local university contests usually determine the eligibility of the teams to v compete in the regional and eventually to the world finals contest. This shows that there is a significant need for the ‘local registration’ data to be securely stored for further use. The main intent of the project is to develop a RESTful API that provides services to the web based applications which makes the registration process of the contestants easy. The project also includes an AngularJS based web application which consumes these web services and stores the registered contestants’ data in a local database. The important aspect as a part of the project is to develop an API design Specification which acts as an interface that could essentially generate Javascript files for the front-end development and platform independent implementation code for the back-end. This feature gives an insight of the REST API and also provides information on how it could be implemented to develop applications. _______________________, Committee Chair John Clevenger, Ph.D. _______________________ Date vi ACKNOWLEDGEMENTS I would like to thank Dr. John Clevenger for taking up the role of my project advisor. He helped me understand the design processes involved in the creation of this application with ease. His feedback and guidance was very important for me to see the real purpose of my master’s project. I would also like to thank Dr. Scott Gordon for taking time to review my report and giving me important feedback. Added to that, I would like to thank the Department of Computer Science at California State University, Sacramento for providing an opportunity to pursue my Masters Degree and guiding me all the way to become a successful student. vii TABLE OF CONTENTS Page Acknowledgements………................................................................................................vii List of figures…………………………………………………………………………….. x Chapter 1. INTRODUCTION……………………………………………………………………... 1 1.1 Goal of the Project………………………………………………………………... 1 1.2 What is ICPC……………………………………………………………………... 1 1.3 Existing Problem…………………………………………………………………. 3 1.4 Proposed Solution………………………………………………………………… 3 2. TECHNOLOGY STACK……………………………………………………………… 5 2.1 Dropwizard……………………………………………………………………….. 5 2.2 MySQL…………………………………………………………………………… 7 2.3 AngularJS…………………………………………………………………………. 8 2.4 Bootstrap………………………………………………………………………….. 8 2.5 RAML…………………………………………………………………………….. 8 3. OVERVIEW OF SYSTEM DESIGN………………………………………………….. 9 3.1Architecture of the Application…………………………………………………… 9 3.1.1 Introducing RAML…………………………………………………………. 9 viii 3.1.2 Why RAML………………………………………………………………. .10 3.1.3 RAML VS Swagger……………………………………………………….. 11 3.2 Database Schema………………………………………………………………... 12 4. IMPLEMENTATION………………………………………………………………… 14 4.1 Implementing Database Schema………………………………………………… 14 4.2 RAML Specification and Implementation……………………………………… 17 4.3 RESTful API using Dropwizard………………………………………………… 25 4.4 AngularJS client Implementation……………………………………………….. 36 5. APPLICATION ILLUSTRATIONS…………………………………………………. 42 5.1 Register Individual……………………………………………………………… 44 5.2 Register Team…………………………………………………………………… 46 5.3 Create Division………………………………………………………………….. 49 5.4 Manage Registrations…………………………………………………………… 51 6. CONCLUSION………………………………………………………………………. 54 6.1 Lessons Learnt…………………………………………………………………... 54 6.2 Future Enhancements……………………………………………………………. 54 References……………………………………………………………………………….. 56 ix LIST OF FIGURES Figures Page Figure 1 Entity - Relation Diagram...................................................................................17 Figure 2 API Designer Editor............................................................................................18 Figure 3 JAX-RS Implementation code.............................................................................23 Figure 4 AngularJS code Snippet generated by RAMLAng.............................................24 Figure 5 Dropwizard Project Setup....................................................................................25 Figure 6 Maven Dependencies...........................................................................................26 Figure 7 AngularJS project structure.................................................................................37 Figure 8 NPM command to start the server.......................................................................38 Figure 9 LRS - API Portal.................................................................................................42 Figure 10 API Reference...................................................................................................43 Figure 11 API Notebook....................................................................................................43 Figure 12 Home Page.........................................................................................................44 Figure 13 Register an Individual........................................................................................45 Figure 14 List of Registered Individuals...........................................................................46 Figure 15 Add Team Members..........................................................................................47 Figure 16 Register Team....................................................................................................48 Figure 17 List of Registered Teams...................................................................................49 Figure 18 Create Division..................................................................................................50 x Figure 19 List of Divisions................................................................................................51 Figure 20 Make a Team.....................................................................................................52 Figure 21 Add Individual to team......................................................................................53 xi 1 1. INTRODUCTION 1.1 Goal of the Project There are many worldwide competitions that occur every year. ICPC (International Collegiate Programming Contest) is one such event. Students from all over the world participate in this competition. These students have to initially register for the event through ICPC official website. Local contests usually determine the eligibility of the teams to compete in the regional and eventually to the world finals contest. The goal of the project is to develop a web application that lets the contest administrator to register the contestants as individuals and teams in the local contest. This is achieved by creating a java RESTful API that would provide services to any web application, thereby making the whole registration process computerized. In addition to it, the main objective of the project is to develop an interface (API Specification) which can generate platform independent implementation code (for the back-end) and script files (for the front-end) which can be used by the application developers. 1.2 What is ICPC ICPC (International Collegiate Programming Contest) is a world-wide programming contest conducted among Universities annually by ACM (Association for Computing Machinery). It is a multi-tier, team based programming competition where participants come from over 2,500 universities, across 100 countries on six continents. The competition has gained so much prominence that each year the number of teams has 2 increased exponentially by 10-20%.
Recommended publications
  • Automated Testing of Database Schema Migrations
    DEGREE PROJECT IN COMPUTER SCIENCE AND ENGINEERING, SECOND CYCLE, 30 CREDITS STOCKHOLM, SWEDEN 2019 Automated Testing of Database Schema Migrations PETER JONSSON KTH ROYAL INSTITUTE OF TECHNOLOGY SCHOOL OF ELECTRICAL ENGINEERING AND COMPUTER SCIENCE Automated Testing of Database Schema Migrations PETER JONSSON Master in Computer Science Date: June 28, 2019 Supervisor: Johan Gustavsson Examiner: Elena Troubitsyna School of Electrical Engineering and Computer Science Host company: The Swedish Police Authority Swedish title: Automatiserad testning av databasschemaförändringar iii Abstract Modern applications use databases, and the majority of them are relational databases, which use schemas to impose data integrity constraints. As appli- cations change, so do their databases. Database schemas are changed using migrations. Certain conditions can result in migrations failing in production environments, leading to a broken database state and testing can be problem- atic without accessing production data which can be sensitive. Two migration validation methods were proposed and implemented to au- tomatically reject invalid migrations that are not compatible with the database state. The methods were based on, and compared to, a default method that used Liquibase to structure and perform migrations. The assertion method used knowledge of what a valid state would look like to generate pre-conditions from assertions to verify that the database’s state matched expectations and that the migrations were compatible with a database’s state prior to migra- tion. The schema method, used a copy of the production database’s schema to perform migrations on an empty database in order to test the compatibility of the old and new schemas. 108 test cases consisting of a migration and a database state were used to test all methods.
    [Show full text]
  • Develop Modern Applications with Oracle Database
    Develop Modern Applications with Oracle Database How Oracle Database can help you manage data in the software development life cycle and build scalable, secure applications fast. September 09, 2020 | Version 1.00 Copyright © 2020, Oracle and/or its affiliates Public PURPOSE STATEMENT This document provides an overview of Oracle Database features that help developers build applications. It is intended solely to help you assess the business benefits of using Oracle Database and to plan your development projects. INTENDED AUDIENCE This technical brief is for developers building data-driven applications. It assumes familiarity with basic database terms and the software development life cycle. DISCLAIMER This document in any form, software or printed matter, contains proprietary information that is the exclusive property of Oracle. Your access to and use of this confidential material is subject to the terms and conditions of your Oracle software license and service agreement, which has been executed and with which you agree to comply. This document and information contained herein may not be disclosed, copied, reproduced or distributed to anyone outside Oracle without prior written consent of Oracle. This document is not part of your license agreement nor can it be incorporated into any contractual agreement with Oracle or its subsidiaries or affiliates. This document is for informational purposes only and is intended solely to assist you in planning for the implementation and upgrade of the product features described. It is not a commitment to deliver any material, code, or functionality, and should not be relied upon in making purchasing decisions. The development, release, and timing of any features or functionality described in this document remains at the sole discretion of Oracle.
    [Show full text]
  • Maven Plugin for Defining Sql Schema
    Maven Plugin For Defining Sql Schema Wily Nealy never nerved so synergistically or bowses any lobules crassly. Von is unanchored and job salleeforward pander as seemly not continuously Cyrus labializing enough, grossly is Wallas and misspeaking teleological? forcibly. When Obie encouraged his The library translates to install plugin sql plugin for maven schema update scripts in the maven central character bash shell script This plugin sql schemas that defines no longer pass it is plugins will define custom webapps that. Storing the most common attack in the information regarding their projects using maven for enabling query for this argument passed to relational database. Just defining identifier attribute which would become out all maven plugin for defining sql schema changes made permanent. I am setting up first liquibase maven project told a MySQL DB. Like to sql plugin execution is useful for defining different mechanisms of jdbi provides all for maven defining sql plugin schema? Both catalog and collections have created database plugin schema to apply changes are both. Format A formatter for outputting an XML document with three pre-defined. Configuring the Alfresco Maven plugin Alfresco Documentation. The installation of the MSSQL schema was pure pain there were a turn of plain SQL files which had even be. The maven for defining and define sql schemas for uuid identifier. To load SQL statements when Hibernate ORM starts add an importsql file to the. Setting up and validating your film project Using Maven. The hibernate3-maven-plugin can dash be used to toe a schema DDL from. For maven plugin creates sql schemas, you can become.
    [Show full text]
  • Getting Hip with Jhipster Frederik Hahne, WPS Management Gmbh
    Getting Hip with JHipster Frederik Hahne, WPS Management GmbH Der Scrum-Master Samu hat ein Problem. Er kann und Frameworks, konfiguriert diese nach aktuellen Best Practices nicht noch mehr Funktionen aus dem unterneh- und stellt sicher, dass die verwendeten Technologien reibungslos mensweiten Ticketsystem herausholen. Deshalb miteinander funktionieren. spielt er mit dem Gedanken, eine Web-Anwendung Da Samu für einen Prototyp keine Zeit hat, um sich in die Besonder- zu schreiben, die sich in das bestehende Ticket- heiten von Spring Security einzulesen oder in die Konfiguration von system integriert, sodass er dort spezielle Angular und Webpack einzuarbeiten, gibt er JHipster eine Chance. Er wird mit JHipster die Anwendungen hochfahren und das Datenmo- Anforderungen und Workflows implementieren dell erzeugen, damit er sich auf das Implementieren der Business- kann. Leider liegen seine Tage als Entwickler etwas logik konzentrieren kann. JHipster hilft nicht nur Anfängern, sondern weiter zurück und er hat auch keine Zeit, sich auch erfahrenen Entwicklern, schneller produktiv zu sein [17]. mit dem Schreiben von Boilerplate-Code einer JHipster in Zahlen modernen Web-Anwendung zu befassen. Zum Samu möchte auf einem aktiven und gut gepflegten Projekt auf- Glück erinnert er sich, dass die Java-Entwicklerin bauen, damit er bei Problemen und Fragen schnell Hilfe findet und Jennifer in ihrer Freizeit im JHipster-Projekt aktiv Fehler durch das Team zeitnah behoben werden können, und schaut sich die Historie des Projekts an. JHipster wurde im Jahr 2013 ge- ist. Dieser Artikel begleitet Samu dabei, wie er die startet, seitdem gab es fünf Major-Releases. Die aktuelle Version Möglichkeiten von JHipster erkundet, um einen ist 5.6.1 (November 2018).
    [Show full text]
  • Generate Java Code from Database Schema
    Generate Java Code From Database Schema pledgedwhenParlando allodial or Christorpher arms. and fallible chant, Aldrich his waxesanthropogeny some corbeille? gluttonise Aguinaldo idealises fingergood. waveringlyHow vulnerable if unturfed is David Yule At very clean and work as false, a test database queries and java code from database schema scripts to using the facilities The parse tree is database from different databases such cases the appropriate type of the relationships between objects to automatically load xml syntax to use flyway managed controllers or show the jdt. But opting out loud some skill these cookies may express an effect on your browsing experience. So as soon endorse a database schema takes advantage of an advanced DDL feature, schema migration must also use voice and this can only those done through manually created incremental scripts. The name they the haunt is displayed under the Java DB node. If enabled, the tools will reverse engineer the database defined in the connection information in the selected Hibernate Console Configuration, and generate code based on the database schema. XEP, and provides the connection to preserve database. The java classes, developers outside of a commercial database from java code database schema evolution must be projected as false, you are used at some way. Providing a department table in a school, you want all selected all your database table while working of your database from java code database schema from an existing tables. Looks very thin support? To a school, organization, company or government agency, where Pearson collects or processes the personal information in a school setting or on behalf of such organization, company or government agency.
    [Show full text]
  • CI/CD for Oracle Database & APEX Developers
    CI/CD for Oracle Database & APEX Developers RMOUG Virtual Training Days 2021 Brian Spendolini Product Manager Oracle Database Development Tools @btspendo btspendo https://blogs.oracle.com What is CI/CD? 2 Copyright © 2020, Oracle and/or its affiliates What is CI/CD and Why do we need it? CI/CD is continuous integration, continuous delivery, and continuous deployment • Introduces automation into all stages of app/database development • Helps developers work on the same app and merge their code changes back to a shared branch frequently • Development changes are automatically tested on push/commits and merges Why? • Consistency/Repeatability • Accountability • Security • Standardization • Find Issues Faster/Better Code/Quality Releases • More Frequent Releases 3 Copyright © 2020, Oracle and/or its affiliates CI/CD with the database and APEX? Traditionality this has been hard. Why? • APEX/DB bucks the trend of isolated development environments • Dev instances can be expensive • Licensing issues • DB/APEX changes are different from traditional files/code seen with DevOPs and CI/CD processes • Metadata driven • Versioning or lack there of • Rollback issues • Very manual process and a lot of individual accountability • DB change tracking • APEX change tracking • Isn't DevOps for those new-fangled development languages only? 4 Copyright © 2020, Oracle and/or its affiliates CI/CD with the database and APEX? We can fix it? Yes, we can! Centralized code repository no more big zips or wiki pages with attachments Individual code branches Individual
    [Show full text]
  • Technology Profile
    2021 Technology Profile https://azati.ai +375 (29) 6845855 Belarus, 31 K. Marks Street, Sections 5-6 Grodno, 230025 1 Table Of Contents TABLE OF CONTENTS page 01 DEPLOYMENT, BI & DATA page 09 WAREHOUSING GENERAL INFORMATION page 02 DATA SCIENCE & MACHINE LEARNING page 10 JAVA TECHNOLOGIES page 03 MONITORING TOOLS, PORTALS & SOLUTIONS, page 11 VERSION CONTROL RUBY & JAVASCRIPT TECHNOLOGIES page 04 VERSION CONTROL, SDK & OTHER TOOLS page 12 WEB & PHP TECHNOLOGIES page 05 OTHER TOOLS page 13 MOBILE DEVELOPMENT & DATABASES page 06 SOFTWARE TESTING & QA page 07 APPLICATION DEPLOYMENT page 08 2 General Information 01 PROGRAMMING LANGUAGES: 02 MARK-UP AND MODELING 05 SOFTWARE ARCHITECTURE PATTERNS: LANGUAGES: Java Representational State Transfer (REST/RESTful) JavaScript (ES5/ES6) HTML (4/5) Model-View-Controller (MVC) PHP XSLT Microservices TypeScript UML GraphQL PL/SQL Kotlin Smalltalk C 03 PROJECT MANAGEMENT C++ METHODOLOGIES: C# Agile (Kanban/SCRUM) Groovy Waterfall Delphi Behavior-driven development (BDD) Pascal Test-driven development (TDD) Python Feature-driven development (FDD) SQL Ruby R CoffeeScript 04 DEVELOPMENT APPROACHES: Perl Continuous Delivery (CD) Bash Continuous Integration (CI) Shell 3 Java Technologies 06 JAVA TECHNOLOGIES: 07 JAVA FRAMEWORKS: Apache POI Java (7/8/9) Spring Apache Wicket Java Servlet Spring Boot Apache CXF Java Database Connectivity (JDBC) Spring REST Apache Shiro Java REST Spring MVC Apache Camel Java Persistence API (JPA) Spring Data Java Message Service (JMS) Spring Security 08 JAVA LIBRARIES: JBoss Drools
    [Show full text]
  • Gradle Beyond the Basics
    Gradle Beyond the Basics Tim Berglund Gradle Beyond the Basics by Tim Berglund Copyright © 2013 Gradle, Inc. All rights reserved. Printed in the United States of America. Published by O’Reilly Media, Inc., 1005 Gravenstein Highway North, Sebastopol, CA 95472. O’Reilly books may be purchased for educational, business, or sales promotional use. Online editions are also available for most titles (http://my.safaribooksonline.com). For more information, contact our corporate/ institutional sales department: 800-998-9938 or [email protected]. Editors: Mike Loukides and Meghan Blanchette Cover Designer: Randy Comer Production Editor: Kara Ebrahim Interior Designer: David Futato Proofreader: Kara Ebrahim Illustrator: Rebecca Demarest July 2013: First Edition Revision History for the First Edition: 2013-07-15: First release See http://oreilly.com/catalog/errata.csp?isbn=9781449304676 for release details. Nutshell Handbook, the Nutshell Handbook logo, and the O’Reilly logo are registered trademarks of O’Reilly Media, Inc. Gradle Beyond the Basics, the image of a Belgian shepherd dog, and related trade dress are trademarks of O’Reilly Media, Inc. Many of the designations used by manufacturers and sellers to distinguish their products are claimed as trademarks. Where those designations appear in this book, and O’Reilly Media, Inc., was aware of a trade‐ mark claim, the designations have been printed in caps or initial caps. While every precaution has been taken in the preparation of this book, the publisher and author assume no responsibility for errors or omissions, or for damages resulting from the use of the information contained herein. ISBN: 978-1-449-30467-6 [LSI] Table of Contents Preface.
    [Show full text]
  • Database Refactoring with Liquibase
    Database Refactoring with Liquibase Michael Le Feuvre, OnBelay Consulting Agenda • What is Database refactoring • Introducing Liquibase • Liquibase example • Questions OnBelay Consulting 2 Database Refactoring Evolutionary change OnBelay Consulting 3 Traditional approach • Traditional approach to changing the database schema. • Make an appointment to see the DBA. • Plead that you want to add a column to an existing table • DBA considers your request • Decides to grant it but first must update the ER diagram in a horribly expensive Database Architecture and Design tool that maintains a logical data model. The model is then rendered in to a physical model. Great for wall charts. • DBA generates or hand-codes the database changes into SQL scripts. • DBA then updates each database directly that requires the changes. OnBelay Consulting 4 Consequences of traditional approach • Because the overhead in the traditional process is so onerous, many organizations required that database design be done up front so that the database was “ready” for programmers to use. • Database artifacts may not be in source control. • If database objects are in source control they aren’t necessarily in the same repository as the application source code. application code changes and database changes are not committed together in the same commit. • The above process is entirely antithetical to an Agile development process and since the database requirements must be known in advance of starting development • Most organizations manage database changes somewhere between traditional and database refactoring. OnBelay Consulting 5 Database refactoring • Based on the concept of refactoring popularized by Martin Fowler: • described as a “refactoring as a small change to your source code that improves its design without changing its semantics.” (Refactoring, Martin, James, 1999) • Evolutionary approaches to database maintenance have been discussed since the 2000’s.
    [Show full text]
  • Enlighten Whitepaper Template
    Big Data Analytics In M2M WHITE PAPER Cloud Ready Web Applications Big Data Analytics In M2M with jHipster WHITE PAPER Table of Contents Introduction ...................................................................................... 3 Key Architecture Drivers ................................................................... 3 What is jHipster? ............................................................................... 4 Technology behind JHipster .............................................................. 4 Creating a jHipster Application ......................................................... 4 Client Side Technologies ................................................................... 6 Startup Screen ................................................................................... 8 Server Side Technologies .................................................................. 9 Spring Data JPA ............................................................................... 10 Spring Data REST ............................................................................. 10 Swagger UI ...................................................................................... 10 Spring Boot ...................................................................................... 11 Spring Boot Actuator ....................................................................... 12 Logging ............................................................................................ 15 Liquibase ........................................................................................
    [Show full text]
  • Oracle-Sql-Developer-Users-Guide.Pdf
    Oracle® SQL Developer User's Guide Release 19.2 F20349-01 August 2019 Oracle SQL Developer User's Guide, Release 19.2 F20349-01 Copyright © 2006, 2019, Oracle and/or its affiliates. All rights reserved. Primary Author: Celin Cherian Contributing Authors: Chuck Murray This software and related documentation are provided under a license agreement containing restrictions on use and disclosure and are protected by intellectual property laws. Except as expressly permitted in your li‐ cense agreement or allowed by law, you may not use, copy, reproduce, translate, broadcast, modify, license, transmit, distribute, exhibit, perform, publish, or display any part, in any form, or by any means. Reverse engi‐ neering, disassembly, or decompilation of this software, unless required by law for interoperability, is prohibit‐ ed. The information contained herein is subject to change without notice and is not warranted to be error-free. If you find any errors, please report them to us in writing. If this is software or related documentation that is delivered to the U.S. Government or anyone licensing it on behalf of the U.S. Government, then the following notice is applicable: U.S. GOVERNMENT END USERS: Oracle programs, including any operating system, integrated software, any programs installed on the hardware, and/or documentation, delivered to U.S. Government end users are "commercial computer software" pursuant to the applicable Federal Acquisition Regulation and agency-spe‐ cific supplemental regulations. As such, use, duplication, disclosure, modification, and adaptation of the pro‐ grams, including any operating system, integrated software, any programs installed on the hardware, and/or documentation, shall be subject to license terms and license restrictions applicable to the programs.
    [Show full text]
  • Oracle Sqlcl User's Guide, Release 20.3
    Oracle® SQLcl User's Guide Release 20.3 F34907-01 October 2020 Oracle SQLcl User's Guide, Release 20.3 F34907-01 Copyright © 2019, 2020, Oracle and/or its affiliates. Primary Author: Celin Cherian Contributing Authors: Tulika Das Contributors: Syme Kutz, Jeff D. Smith This software and related documentation are provided under a license agreement containing restrictions on use and disclosure and are protected by intellectual property laws. Except as expressly permitted in your license agreement or allowed by law, you may not use, copy, reproduce, translate, broadcast, modify, license, transmit, distribute, exhibit, perform, publish, or display any part, in any form, or by any means. Reverse engineering, disassembly, or decompilation of this software, unless required by law for interoperability, is prohibited. The information contained herein is subject to change without notice and is not warranted to be error-free. If you find any errors, please report them to us in writing. If this is software or related documentation that is delivered to the U.S. Government or anyone licensing it on behalf of the U.S. Government, then the following notice is applicable: U.S. GOVERNMENT END USERS: Oracle programs (including any operating system, integrated software, any programs embedded, installed or activated on delivered hardware, and modifications of such programs) and Oracle computer documentation or other Oracle data delivered to or accessed by U.S. Government end users are "commercial computer software" or "commercial computer software documentation"
    [Show full text]