A Community of Practice Around Peer Review for Long-Term Research Software Sustainability

Total Page:16

File Type:pdf, Size:1020Kb

A Community of Practice Around Peer Review for Long-Term Research Software Sustainability A Community of Practice Around Peer Review for Long-Term Research Software Sustainability Karthik Ram Noam Ross University of California, Berkeley, EcoHealth Alliance, The rOpenSci Project The rOpenSci Project Carl Boettiger Maelle€ Salmon University of California, Berkeley, The rOpenSci Project The rOpenSci Project Stefanie Butland Scott Chamberlain The rOpenSci Project University of California, Berkeley, The rOpenSci Project Abstract—Scientific open source projects are responsible for enabling many of the major advances in modern science including recent breakthroughs such as the Laser Interferometer Gravitational-Wave Observatory project recognized in the 2017 Nobel Prize for physics. However, much of this software ecosystem is developed ad hoc with no regard for sustainable software development practices. This problem is further compounded by the fact that researchers who develop software have little in the way of resources or academic recognition for their efforts. The rOpenSci Project, founded in 2011 with the explicit mission of developing software to support reproducible science, has in recent years undertaken an effort to improve the long tail of scientific software. In this paper, we describe our software peer-review system, which brings together the best of traditional academic review with new ideas from industry code review. & MODERN SCIENCE RELIES very heavily on open source software to acquire, manipulate, and ana- Digital Object Identifier 10.1109/MCSE.2018.2882753 lyze large volumes of data. One would be hard Date of publication 30 November 2018; date of current pressed to find areas of science today that do not rely on software to generate new discoveries. version 8 March 2019. March/April 2019 Published by the IEEE Computer Society 1521-9615 ß 2018 IEEE 59 Accelerating Scientific Discovery With Reusable Software Such software, often referred to as research soft- analyze their data. The free version control soft- ware, have become indispensable for progress in ware Git and the associated collaboration most areas of science and engineering. By some platform GitHub have been playing an increas- estimates, the National Science Foundation has ingly important role in scientific software over spent close to 10 billion dollars between 1996 the past several years. Much of the collaboration and 2006 in support of research proposals that around such software development now hap- described a software development component.13 pens on platforms such as GitHub (http://www. Despite its importance, a large proportion of nature.com/news/democraticdatabases-science- academic software is developed in an ad hoc on-github-1.20719), which is now being taught manner with little regard for the high standards both in a handful of university courses and by that are characteristic of other research activi- independent programs such as The Carpentries. ties. As a result, the research software ecosystem Such widespread exposure has made the plat- is fragile and the source of numerous problems form and vocabulary familiar to a large group of that afflict modern computational science. Per- researchers, making it easier for new tools built haps the most widely publicized of those prob- in this ecosystem to thrive. Yet the lack of formal lems has been the reproducibility or replication training and mentorship contributes to the grow- crisis.4 Although a multitude of reasons has cul- ing problem of poorly engineered software that minated in different forms of this crisis, some is fragile, difficult to use, and prone to bit rot. reproducibility challenges have been attributed In 2011, a subset of us noticed the need for directly to software and how it is developed in well-developed software that scientists routinely academia. When research software is inaccessi- use. These range from simple utilities to produce ble, lacks adequate usage instructions, is difficult figures, perform conversions, to more elaborate to install, suffers from inadequate testing, or is operations such as retrieving complex data from poorly maintained, it can impede efforts to repro- the web in a repeatable manner. This was the orig- duce results generated using such tools. Most inal motivation for the creation of the rOpenSci often, reproducibility is made impossible when project (https://ropensci.org). rOpenSci plays a one or more of these issues cause the software to critical role in the scientific software ecosystem, break unexpectedly. particularly in the R programming language. Our In 2014 and 2015, Collberg et al. carried out a primary mission is to promote development and series of studies to quantify the state of compu- use of high-quality research software in the sci- tational reproducibility in applied computer sci- entific community. We enable this transformation ence, an area that relies more heavily on in two major ways: in-house software develop- software than other fields. Their premise was ment and peer review of community-contributed that software described in papers should be software. readily accessible and contain enough instruc- Our core development team primarily builds tions for an informed reader to build from robust software to help researchers access, dis- source code on their own systems. Shockingly, cover, publish, and work with disparate types of less than 20% of more than 600 papers they scientific data. Over the years we have created reviewed had software that could actually be 287 high-quality software packages to support downloaded and built with any reasonable the scientific community (192 of them published effort. The study did not consider whether that on R’s primary package manager, CRAN, 2 on 20% of software functioned correctly or pro- Bioconductor https://www.bioconductor.org/, duced valid scientific results. In many ways, and 93 on GitHub https://github.com/ropensci). such a result is not entirely surprising. Scientists Compared to core infrastructure projects that spend decades in training to become experts in are the poster children of scientific open source their chosen domains. Yet critical skills neces- such as Jupyter and NumPy, rOpenSci serves to sary to engineer software are rarely taught. support packages that make up the “long tail” of Despite lack of formal training, a growing science, where software packages have been number of researchers are now spending their designed for specialized applications rather time writing software and code to organize and than general purpose needs. A complete list of 60 Computing in Science & Engineering software packages that rOpenSci has reviewed most successful projects are the ones that turn or accepted is available at https://ropensci.org/ one-person projects into thriving communities. packages/. Perhaps rOpenSci’s biggest contribu- Long-term archiving: Although software col- tion to improving the state of research software is laboration platforms such as GitHub bring visi- not just the development and maintenance of criti- bility to projects, they are not a solution for cal software tools in house but in mentoring long-term archiving. Nearly 30% of the papers domain scientists in good software development surveyed in Collberg 2014 could not be located. practices and fostering a peer-review culture for Without permanent archiving of source code in research software. In this paper, we briefly persistent repositories such as Zenodo, one can- describe our efforts to improve the state of not ensure availability of software over time. research software by creating a peer-review sy- Software design and code smells: Poorly des- stem that shares many similarities with the pub- igned software with inconsistent and unintuitive lishing system but also addresses challenges that user interfaces is a problem that cannot be easily are unique to software development in research. surfaced without a detailed review. Deeper design issues include issues such as attention to software dependencies, good error messages and handling CHALLENGES WITH RESEARCH of unexpected inputs, and following conventions SOFTWARE and coding styles that are characteristic of a com- Documentation: Over the past decade scien- munity. There are also various other code smells11 tists have been embracing various open source that indicate deeper problems with the software. programming languages for scientific computing. These include lack of a clear README with instal- Python, R, and Julia, in particular, have fueled lation instructions and basic examples, no con- the meteoric rise in popularity of data science as tributed code of conduct or clear contribution a new field. As of this writing, there are 147 000 guidelines, lack of continuous integration (serv- packages in the Python package manager (PyPi), ices that allow for the software to be tested any 13 800 packages on CRAN, the Central R Archive time a change is made to the code) for testing, and Network, and 2400 packages in the Julia language large gaps in documentation. (via libraries.io). Sorting through such large col- Maintainability: Design considerations that lections of software packaging and finding the make it easy for future developers to understand right tools presents a serious challenge for most the software, extend functionality, and fix bugs researchers. Beyond the software functionality are critical to prevent software from becoming itself, one of the biggest hurdles to using soft- stale before it reaches a natural end of cycle. ware is lack of good documentation. Given the tedious nature of the process and the need for SOFTWARE REVIEW AS A SERVICE different skills than
Recommended publications
  • Optimization of Software Quality Using Management and Technical Review Techniques
    International Journal of Computer Trends and Technology (IJCTT) – volume 17 Number 6 Nov 2014 Optimization of Software Quality using Management and Technical Review Techniques Inibehe Emmanuel Akpannah Post Graduate Student (MSc. Information Technology), SRM University, Chennai, India Abstract compromising the security of the entire system. Optimizing the quality of software is a function of Improving the quality of our software process leads the degree of reviews made during the early life of to minimal rework, cost effectiveness and also a software development process. Reviews detect meeting up with schedules, which all lead to errors and potential errors early in the software improvement in capability measurement. Software development process. The errors detected during review is a chain process, it is dynamic and review the early life cycle of software are least expensive needs to be performed at every phase of the to correct. Efficient involvement in software development process until there is a transition to the inspections and technical reviews, help developers testing phase. improve their own skills, thereby mitigating the Software design and code review is a phase in the occurrence of errors in the later stage of software software development process in which development process. The ideas gathered on this programmers (authors of codes), quality assurance paper point that a properly implemented program of (QA) team, and peer reviewers get together to technical and management reviews drastically review design and code [9]. One way of optimizing reduces the time as well as the cost required for the quality of software is finding and correcting testing, debugging, and reworking, and dramatically errors at the early stage of a software development improves the quality of the resulting product.
    [Show full text]
  • The'as Code'activities: Development Anti-Patterns for Infrastructure As Code
    Empirical Software Engineering manuscript No. (will be inserted by the editor) The `as Code' Activities: Development Anti-patterns for Infrastructure as Code Akond Rahman · Effat Farhana · Laurie Williams Pre-print accepted at the Empirical Software Engineering Journal Abstract Context: The `as code' suffix in infrastructure as code (IaC) refers to applying software engineering activities, such as version control, to main- tain IaC scripts. Without the application of these activities, defects that can have serious consequences may be introduced in IaC scripts. A systematic investigation of the development anti-patterns for IaC scripts can guide prac- titioners in identifying activities to avoid defects in IaC scripts. Development anti-patterns are recurring development activities that relate with defective IaC scripts. Goal: The goal of this paper is to help practitioners improve the quality of infrastructure as code (IaC) scripts by identifying development ac- tivities that relate with defective IaC scripts. Methodology: We identify devel- opment anti-patterns by adopting a mixed-methods approach, where we apply quantitative analysis with 2,138 open source IaC scripts and conduct a sur- vey with 51 practitioners. Findings: We observe five development activities to be related with defective IaC scripts from our quantitative analysis. We iden- tify five development anti-patterns namely, `boss is not around', `many cooks spoil', `minors are spoiler', `silos', and `unfocused contribution'. Conclusion: Our identified development anti-patterns suggest
    [Show full text]
  • Whodo: Automating Reviewer Suggestions at Scale
    1 WhoDo: Automating reviewer suggestions at scale 59 2 60 3 61 4 Sumit Asthana B.Ashok Chetan Bansal 62 5 Microsoft Research India Microsoft Research India Microsoft Research India 63 6 [email protected] [email protected] [email protected] 64 7 65 8 Ranjita Bhagwan Christian Bird Rahul Kumar 66 9 Microsoft Research India Microsoft Research Redmond Microsoft Research India 67 10 [email protected] [email protected] [email protected] 68 11 69 12 Chandra Maddila Sonu Mehta 70 13 Microsoft Research India Microsoft Research India 71 14 [email protected] [email protected] 72 15 73 16 ABSTRACT ACM Reference Format: 74 17 Today’s software development is distributed and involves contin- Sumit Asthana, B.Ashok, Chetan Bansal, Ranjita Bhagwan, Christian Bird, 75 18 uous changes for new features and yet, their development cycle Rahul Kumar, Chandra Maddila, and Sonu Mehta. 2019. WhoDo: Automat- 76 ing reviewer suggestions at scale. In Proceedings of The 27th ACM Joint 19 has to be fast and agile. An important component of enabling this 77 20 European Software Engineering Conference and Symposium on the Founda- 78 agility is selecting the right reviewers for every code-change - the tions of Software Engineering (ESEC/FSE 2019). ACM, New York, NY, USA, 21 79 smallest unit of the development cycle. Modern tool-based code 9 pages. https://doi.org/10.1145/nnnnnnn.nnnnnnn 22 review is proven to be an effective way to achieve appropriate code 80 23 review of software changes. However, the selection of reviewers 81 24 in these code review systems is at best manual.
    [Show full text]
  • Software Reviews
    Software Reviews Software Engineering II WS 2020/21 Enterprise Platform and Integration Concepts Image by Chris Isherwood from flickr: https://www.flickr.com/photos/isherwoodchris/6807654905/ (CC BY-SA 2.0) Review Meetings a software product is [examined by] project personnel, “ managers, users, customers, user representatives, or other interested parties for comment or approval —IEEE1028 ” Principles ■ Generate comments on software ■ Several sets of eyes check ■ Emphasis on people over tools Code Reviews — Software Engineering II 2 Software Reviews Motivation ■ Improve code ■ Discuss alternative solutions ■ Transfer knowledge ■ Find defects Code Reviews — Software Engineering II Image by Glen Lipka: http://commadot.com/wtf-per-minute/ 3 Involved Roles Manager ■ Assessment is an important task for manager ■ Possible lack of deep technical understanding ■ Assessment of product vs. assessment of person ■ Outsider in review process ■ Support with resources (time, staff, rooms, …) Developer ■ Should not justify but only explain their results ■ No boss should take part at review Code Reviews — Software Engineering II 4 Review Team Team lead ■ Responsible for quality of review & moderation ■ Technical, personal and administrative competence Reviewer ■ Study the material before first meeting ■ Don’t try to achieve personal targets! ■ Give positive and negative comments on review artifacts Recorder ■ Any reviewer, can rotate even in review meeting ■ Protocol as basis for final review document Code Reviews — Software Engineering II 5 Tasks of
    [Show full text]
  • Arxiv:2005.09217V1 [Cs.SE] 19 May 2020 University of Tennessee Knoxville, Tennessee, USA E-Mail: [email protected] 2 Andrey Krutauz Et Al
    Noname manuscript No. (will be inserted by the editor) Do Code Review Measures Explain the Incidence of Post-Release Defects? Case Study Replications and Bayesian Networks Andrey Krutauz · Tapajit Dey · Peter C. Rigby · Audris Mockus Received: date / Accepted: date Abstract Aim: In contrast to studies of defects found during code review, we aim to clarify whether code reviews measures can explain the prevalence of post-release defects. Method: We replicate McIntosh et al.'s [51] study that uses additive re- gression to model the relationship between defects and code reviews. To in- crease external validity, we apply the same methodology on a new software project. We discuss our findings with the first author of the original study, McIntosh. We then investigate how to reduce the impact of correlated pre- dictors in the variable selection process and how to increase understanding of the inter-relationships among the predictors by employing Bayesian Network (BN) models. Context: As in the original study, we use the same measures authors ob- tained for Qt project in the original study. We mine data from version control and issue tracker of Google Chrome and operationalize measures that are close Andrey Krutauz Concordia University Montreal, QC, Canada E-mail: [email protected] Tapajit Dey University of Tennessee Knoxville, Tennessee, USA E-mail: [email protected] Peter C. Rigby Concordia University Montreal, QC, Canada E-mail: [email protected] Audris Mockus arXiv:2005.09217v1 [cs.SE] 19 May 2020 University of Tennessee Knoxville, Tennessee, USA E-mail: [email protected] 2 Andrey Krutauz et al.
    [Show full text]
  • Software Project Management (November 2018)
    TYBSC.IT (SEM5) – SOFTWARE PROJECT MANAGEMENT (NOVEMBER 2018) Q.P. Code: 57826 Q1 a) Briefly explain the different phases of project management life cycle. (5) The project life cycle describes the various logical phases in the life of a project from its beginning to its end in order to deliver the final product of the project. The idea of breaking the project into phases is to ensure that the project becomes manageable, activities are arranged in a logical sequence, and risk is reduced. (1) The Project Goal The first step of any project, irrespective of its size and complexity, is defining its overall goal. Every project undertaken aims to provide business value to the organization hence the goal of the project should focus on doing the same. Now, the goal of the project needs to be defined initially as it provides the project team with a clear focus and guides it through each phase of the project. The project is hazy and seems risky at the start, but as the project goals get defined and starts making progress, things start to look brighter and the probability of success increase. (2) The Project Plan Also known as baseline plan. The project plan is developed to provide answers to various project related queries such as: What the project aims to achieve?-The project deliverables How does the project team aim to achieve it?-The tasks and activities Who all will be involved in the project?-The stakeholders and the project team How much will it cost?-The project budget How much time will it take?-The project schedule What are the risks involved?-Risk identification (3) Project Plan Execution The project plan thus developed needs to now be executed.
    [Show full text]
  • Handbook of Software Quality Assurance, 4Th
    Handbook of Software Quality Assurance Fourth Edition For a listing of recent related Artech House titles, turn to the back of this book. Handbook of Software Quality Assurance Fourth Edition G. Gordon Schulmeyer Editor a r techhouse. com Library of Congress Cataloging-in-Publication Data A catalog record for this book is available from the U.S. Library of Congress. British Library Cataloguing in Publication Data A catalogue record for this book is available from the British Library. ISBN-13: 978-1-59693-186-2 Cover design by Igor Valdman © 2008 ARTECH HOUSE, INC. 685 Canton Street Norwood, MA 02062 All rights reserved. Printed and bound in the United States of America. No part of this book may be reproduced or utilized in any form or by any means, electronic or mechanical, includ- ing photocopying, recording, or by any information storage and retrieval system, without permission in writing from the publisher. All terms mentioned in this book that are known to be trademarks or service marks have been appropriately capitalized. Artech House cannot attest to the accuracy of this informa- tion. Use of a term in this book should not be regarded as affecting the validity of any trade- mark or service mark. 10 9 8 7 6 5 4 3 2 1 For my grandchildren, Jimmy, Gabrielle, Chandler, Mallory, Neve, and Julian In memory of James H. Heil, prior contributor to former editions of this handbook The following copyrights, trademarks, and service marks appear in the book and are the property of their owners: Capability Maturity Model®, Capability Maturity Modeling®, CMM®, CMMI® are registered in the U.S.
    [Show full text]
  • Software Inspection, Maintenance, Visual Model, Inspection Tools
    Software Engineering 2014, 4(1): 19-24 DOI: 10.5923/j.se.20140401.03 Automated Visual Software Inspection System: Re-Making the Fagan Methodology Oladipo Onaolapo Francisca*, Ugoh Geraldine Ebere Computer Science Department, Nnamdi Azikiwe University, Awka, Nigeria Abstract Software inspection is aimed at detecting error early during the software development process and improving the skills of developers. There are several inspection models for both large and small scale software projects but this paper recognised that they are mostly designed in and for developing countries; in addition it was observed that software inspection in small student groups in Nigeria institutions are based on the traditional, meeting-oriented approach. This therefore necessitated a need to formalize an inspection model suitable for small software projects executed by students in a typical university computer science laboratory. Based on extensive research and analysis, a visual software inspection model is proposed in this paper. This model matured into an inspection tool developed using the techniques of Structured Systems Analysis and Design Methodology (SSADM) and scripting tools. An experimental evaluation of the tool using five study criteria showed that the inspection model was a well-defined disciplined process for the analysis and monitoring of a software development process for a systematic detection of any deviation from the pre-defined specifications of the software system. Keywords Software inspection, Maintenance, Visual model, Inspection tools adopted even when pair programming approaches are 1. Introduction adopted. A great deal of time is spent on correcting errors during the testing phase and most maintenance being done A software inspection methodology is considered efficient are corrective not adaptive.
    [Show full text]
  • The Impact of Code Review Coverage and Code Review Participation on Software Quality
    The Impact of Code Review Coverage and Code Review Participation on Software Quality A Case Study of the Qt, VTK, and ITK Projects Shane McIntosh1, Yasutaka Kamei2, Bram Adams3, and Ahmed E. Hassan1 1Queen’s University, Canada 2Kyushu University, Japan 3Polytechnique Montréal, Canada 1{mcintosh, ahmed}@cs.queensu.ca [email protected] [email protected] ABSTRACT 1. INTRODUCTION Software code review, i.e., the practice of having third-party Software code reviews are a well-documented best practice team members critique changes to a software system, is a for software projects. In Fagan's seminal work, formal design well-established best practice in both open source and pro- and code inspections with in-person meetings were found prietary software domains. Prior work has shown that the to reduce the number of errors detected during the testing formal code inspections of the past tend to improve the qual- phase in small development teams [8]. Rigby and Bird find ity of software delivered by students and small teams. How- that the modern code review processes that are adopted in a ever, the formal code inspection process mandates strict re- variety of reviewing environments (e.g., mailing lists or the view criteria (e.g., in-person meetings and reviewer check- Gerrit web application1) tend to converge on a lightweight lists) to ensure a base level of review quality, while the mod- variant of the formal code inspections of the past, where ern, lightweight code reviewing process does not. Although the focus has shifted from defect-hunting to group problem- recent work explores the modern code review process qual- solving [34].
    [Show full text]
  • Contemporary Peer Code Review Practices and Associated Benefits
    CONTEMPORARY PEER CODE REVIEW PRACTICES AND ASSOCIATED BENEFITS by AMIANGSHU BOSU DR. JEFFREY C. CARVER, COMMITTEE CHAIR DR. JEFF GRAY DR. MUNAWAR HAFIZ DR. RANDY SMITH DR. MARCUS BROWN A DISSERTATION Submitted in partial fulfillment of the requirements for the degree of Doctor of Philosophy in the Department of Computer Science in the Graduate School of The University of Alabama TUSCALOOSA, ALABAMA 2015 Copyright Amiangshu Bosu 2015 ALL RIGHTS RESERVED ABSTRACT Prior research indicates that peer code review is an effective method for reducing the num- ber of defects and improving the quality of code. Besides maintaining the integrity of the code, code review spreads knowledge, expertise, and development techniques among the review par- ticipants. In the recent years, many Open Source Software (OSS) communities and commercial organizations have adopted ’contemporary’ or ’modern’ code review, an informal, regular, tool- based process. Because both OSS and commercial developers spend a significant amount of effort performing code reviews, the primary goal of this dissertation is to better understand contemporary code review practices, its benefits, and factors that influence its outcomes. To address this goal, this dissertation describes empirical studies using surveys, software repository mining, and social network analysis. The first study is a survey of OSS developers to understand their collaboration and the process by which they form impressions of each other. The results suggest that coding-related factors influence impression formation the most among OSS developers. Therefore, the types of interactions where participants can judge a peers code or creativity (e.g., code review) should be crucial for peer impression formation.
    [Show full text]
  • Revisiting Linus's
    Int. J. Human-Computer Studies 77 (2015) 52–65 Contents lists available at ScienceDirect Int. J. Human-Computer Studies journal homepage: www.elsevier.com/locate/ijhcs Revisiting Linus’s law: Benefits and challenges of open source software peer review Jing Wang n, Patrick C. Shih, John M. Carroll College of Information Sciences and Technology, The Pennsylvania State University, University Park, PA 16802, United States article info abstract Article history: Open source projects leverage a large number of people to review products and improve code quality. Received 14 January 2014 Differences among participants are inevitable and important to this collaborative review process— Received in revised form participants with different expertise, experience, resources, and values approach the problems 18 December 2014 differently, increasing the likelihood of finding more bugs and fixing the particularly difficult ones. To Accepted 18 January 2015 understand the impacts of member differences on the open source software peer review process, we Communicated by Francoise Detienne Available online 28 January 2015 examined bug reports of Mozilla Firefox. These analyses show that the various types of member differences increase workload as well as frustration and conflicts. However, they facilitate situated Keywords: learning, problem characterization, design review, and boundary spanning. We discuss implications for Online collaboration work performance and community engagement, and suggest several ways to leverage member Software peer review differences in the open source software peer review process. Open source & 2015 Elsevier Ltd. All rights reserved. 1. Introduction provide opportunities for engaging an even larger audience in OSS development, and these potential contributors are likely to differ “Given enough eyeballs, all bugs are shallow” (Raymond, 2001).
    [Show full text]
  • Presentation of an Approach for Adapting Software Production Process Based ISO/IEC 12207 to ITIL Service
    ACSIJ Advances in Computer Science: an International Journal, Vol. 2, Issue 2, No. 3 , May 2013 www.ACSIJ.org Presentation of an approach for adapting software production process based ISO/IEC 12207 to ITIL Service Samira Haghighatfar1, Nasser Modiri 2 and Amir Houshang Tajfar3 1 Department of Computer Engineering, Payam Noor University Tehran, Iran [email protected] 2 Department of Computer Engineering, Zanjan Branch, Islamic Azad University Zanjan, Iran [email protected] 3 Department of Information Technology, Payame Noor University Tehran, Iran [email protected] manage and Provide the same language and syntax, IT Abstract Infrastructure Library (ITIL) are recommended. The standard ISO/IEC 12207 is software life cycle standard that This paper is organized as follows: Sect. 1, Sect.2 reviews not only provides a framework for executable effective method ISO/IEC 12207 standard and it’s processes. Section 3 for production and development software, but also can ensure reviews ITIL process. Section 4 presents a mapping that organizational goals are realized properly. In this paper, ITIL between ITIL processes and ISO/IEC 12207. Finally, we standard shall be used for better process control and management and providing a common language and syntax between will conclude the discussion. stakeholders. In addition, the process of mapping between these two standards shall be considered. Keywords: ISO/IEC 12207, Information Technology 2. ISO/IEC 12207 standard Infrastructure Library (ITIL). International Organization for Standardization (ISO) associated with IEC, with foundation the Joint Technical 1. Introduction Committee (JTC1), began to develop international standards for production and documentation of software Currently, the competition is a key factor for ensuring the products.
    [Show full text]