Tools to Improve English Text [LWN Subscriber-Only Content]

Total Page:16

File Type:pdf, Size:1020Kb

Tools to Improve English Text [LWN Subscriber-Only Content] Tools to improve English text [LWN subscriber-only content] Open-source developers put a lot of emphasis on quality and have created many tools to improve source code, such June 16, 2020 as lintersand code formatters. Documentation, on the other This article was contributed by hand, doesn't receive the attention it deserves. LWN Martin Michlmayr reviewed several grammar and style-checking tools back in 2016. It seems like a good time to evaluate progress in this area. Spell checkers almost seem too basic to mention, but, given the number of typos I encounter in open-source documentation, they might warrant a brief look. One problem with technical texts is that English prose is often mixed with code or URLs that trigger spell checkers. Aspell offers several filter modes (including Markdown as of version 0.60.8), but Hunspell believes that other tools like editors should do the work to distinguish between code and text. This is where PySpelling comes in handy. It ships with filters that make it easy to run spell checkers on formatted text (such as Markdown) or programming languages (extracting docstrings from Python code). One aim of PySpelling is to embed spell checking into continuous integration (CI) systems, which is a laudable goal. Speaking of spell checking and editors, writing this article reminded me that, despite being a frequent user of spell checkers, I never configured spell checking in my editor of choice. Vim has had a built-in spell checker for a long time. One minor annoyance is that Vim relies on its own word list instead of using system-wide dictionaries from Aspell and Hunspell. With the following configuration, Vim underlines misspelled and unknown words in Markdown texts and Git commits: set spelllang=en autocmd FileType markdown setlocal spell autocmd FileType gitcommit setlocal spell Even though I integrated several tools from this article into my workflow, I suspect this simple change will have the biggest impact. Similarly, Vim's Asynchronous Lint Engine (ALE) plugin (seen below) calls several grammar tools from this article while I'm typing. Given the noisy nature of some of these tools, it remains to be seen whether that actually leads to improvements in my writing or becomes an annoying distraction. While spell checkers are useful, checking documentation can be time-consuming and some misspelled words are easily missed. The Debian package checker lintian ships with a list of frequently misspelled words that the script spellintian looks for. This is highly useful since there are almost no false positives (apart from the check for repeated words, which gets triggered by code and paragraphs that start with the same word as the preceding heading). In my experience, spellintianoften finds some misspelled words even after running another spell checker. The Linux kernel has adopted a variant of this word list for its checkpatch.pl script and I see potential for integrating spellintian into CI workflows. Beyond words Words are just the basic building blocks; what matters is how we put them together. One problem with many linters for prose is that they make it difficult to distinguish between objective mistakes (like genuine grammar issues) and subjective matters concerning writing style. One frequent mistake of the former type is the incorrect use of indefinite articles (a and an). While there's a clear rule for these, a simple regular expression cannot be used to find mistakes because the correct indefinite article depends on the pronunciation of a word rather than how it's written. I started investigating whether the Natural Language Toolkit (NLTK) could help one to figure that out. But then I saw that Jakub Wilk had that idea years ago when he created anorack (seen below), which uses eSpeak to break words into phonemes (units of sound) to identify incorrect usage of indefinite articles. The Grumpy Editor reviewed proselint in 2016 and compared it to "one of the world's worst elementary-school teachers criticizing you in front of the entire class about irrelevant details". I wanted to check whether the teacher had matured, but, alas, the project has been inactive since 2018. There are several contenders for the nagging teacher position, though. One is alex whose aim is to point out insensitive and inconsiderate writing. While alex is useful in some cases (changing "chairman" to "chair" or "chairperson" is a good improvement that doesn't introduce unnatural language, for example), I found the tool too noisy. It complained about "simple math" and "invalid characters" in a technical manual (although "basic math" might indeed be an improvement). Computers are good at pattern matching but language is all about context. The documentation observes that "alex isn't very smart" and I tend to agree. (Interestingly, alex doesn't find that phrase offensive.) Another tool is write good which flags "weasel" words (like "very") and passive voice. LWN previously looked at writegood-mode in the context of Emacs. Personally, I didn't find the feedback from write-good particularly useful, but opinions differ when it comes to passive voice. RedPen looks like a credible alternative to proselint. It specifically mentions technical documentation and has support for several common markup formats, including Markdown, Textile, AsciiDoc, reStructuredText, and LaTeX. Installation seemed tricky at first. I couldn't find a Debian or RPM package, no Flatpak, and the Snap image is from 2016 (while the latest release is from earlier this year). As I was waiting for the download of the 150MB file, I found an online instance into which text can copied. The online version is particularly useful since it makes it easy to disable checks. One does not need to learn about the configuration file but can simply click some check boxes. Obviously, the online instance is not a solution if the text is private or has too many embarrassing mistakes to copy it to a random web site. I also found PyRedPen, which is a set of Python scripts that allow sending a file to this online instance of RedPen for analysis. After installing PyRedPen with pip, I ran it as follows: redpen-flymake -e -m guide.md That gave me a quick, but somewhat dismaying result: over 600 problems in a 3,500 word document. When my download of RedPen completed, I discovered that there was no need to worry about the lack of Linux packages. RedPen is mostly JAR files, some configuration files and some scripts, including bin/redpen which I ran on my example text with the -f markdown option. Looking at the 600 results, I noticed that excluding spelling issues resulted in a more manageable 280 results. Several suggestions were genuinely useful. For example, RedPen highlights phrases that are repeated within a sentence. While this results in some false positives, it can be helpful, such as pointing out that "a lot" is used multiple times in a sentence. RedPen also pointed out that 35% of sentences in another document I checked started with the same phrase, which is a good area for improvement. Even though RedPen supports markup formats, the checks are not intelligent enough. For example, a technical guide with the code element SUM(COST(position)) resulted in two warnings: that the "word" ")" is repeated twice and that "parenthesized sentences are nested too deeply". Overall, though, RedPen looks promising and I might be able to improve the results by turning off some checks. A previous LWN article looked at LanguageTool. It supports more than 20 languages, which sounds impressive given that rules are language specific. There are also plugins for Firefox and LibreOffice. LanguageTool comes in the form of several JAR files and it was easy to simply launch languagetool-commandline.jar. The first time I ran the tool, the system performed as if I had started Chromium and Firefox at the same time; resource use has been fine in subsequent runs, although the tool is a bit slow. LanguageTool does not support markup formats and almost all warnings were related to running the tool on Markdown text. Unfortunately, even the text version resulted in a lot of noise, such as complaints about words containing an underscore character (which is common for identifiers like variable names). Nevertheless, LanguageTool noticed a number of genuine problems in the text. It highlighted a sentence that started with a conjunction, which should have been separated from the previous sentence with a comma. It pointed out a few words that are normally spelled with a hyphen. The true power in LanguageTool relies on its data sets. As mentioned above, language depends on context. The optional 8GB data set for English allows LanguageTool to find additional errors, such as suggesting that the last word in "Don't forget to put on the breaks" should be "brakes". Like RedPen, I consider LanguageTool to be an interesting possibility for integration into one's writing process. Both tools seem too noisy for constant usage, but they are good for spot checks after writing a text. Open-source uniformity Finally, I discovered Vale, which is an interesting tool because it doesn't focus on grammatical correctness per se, but on the style of the writing, instead. Vale's introductory post shows individual authors using tools like proselint and write-good to improve their writing in a collaborative document, while Vale ensures that the organization-specific style, tone, and branding are followed. The beauty of open source is its collaborative nature that is based on input from many contributors. Unfortunately, this often leads to inconsistencies in documentation, such as different writing styles or capitalization. Vale allows defining a particular style guide and assures that it's followed. Vale offers style rules for the Microsoft Writing Style Guide and the Google developer documentation style guide.
Recommended publications
  • FREE CAT TOOLS AS an ALTERNATIVE to COMMERCIAL SOFTWARE: Omegat
    FACULTAD DE TRADUCCIÓN E INTERPRETACIÓN Grado en Traducción e Interpretación TRABAJO FIN DE GRADO FREE CAT TOOLS AS AN ALTERNATIVE TO COMMERCIAL SOFTWARE: OmegaT Presentado por Veronica Nicoleta Anica Tutelado por Ana María Alconchel Soria, 2014 Free CAT tools as an alternative to commercial software: OmegaT Content ACKNOWLEDGEMENT ............................................................................................................... 4 I. INTRODUCTION ....................................................................................................................... 6 1. Connection with competencies ............................................................................................ 7 1.1. General competencies ................................................................................................... 7 1.2. Specific competencies ................................................................................................... 8 1. PURPOSE ............................................................................................................................. 10 2. METHODOLOGY ................................................................................................................... 11 II. THEORETICAL APPROACH ................................................................................................... 13 1. Translation and technology ................................................................................................ 13 1.1. Technological advances and the process of globalization
    [Show full text]
  • Online Spanish for Kids
    Learn more online • www.lingualinkup.com ONLINE SPANISH FOR KIDS TOOL FOR PROOFREADING IN SPANISH – LANGUAGETOOL REVIEW I used to struggle with Spanish grammar when creating content, but this tool I’m reviewing today is great for proofreading your Spanish online (spell checker & grammar checker in Spanish). The name is LanguageTool and it has helped me learn about the accents (á, é, í, ó, ú, ü, ñ, ¿, ¡) on certain words, or if I got a word spelled wrong, the el/la wrong, and in many more corrections. LanguageTool for Spanish Proofreading: https://languagetool.org/ It corrects more than just misspellings, it also corrects words in sentences that should be different. If you haven’t checked it out you should, test it out for a few days because it will truly help you to correct your Spanish. You can use it in all of your emails, Google Docs, Google Chrome, Firefox, Microsoft Word, LibreOffice, and it can also be used offline – no need for the internet to use it. Screenshots of Some of our Blogs Before Editing Here are a few examples where we used the tool in a Google Doc. This first example is where you can see how much the tool can correct mistakes in Spanish: LEARN SPANISH | ONLINE SPANISH FOR KIDS | 1 Learn more online • www.lingualinkup.com ONLINE SPANISH FOR KIDS However, as we see in these two next examples, the tool isn’t perfect. And so keep that in mind that it will make the wrong suggestions at times if the mistake is too difficult for LanguageTool to figure it out.
    [Show full text]
  • Getting Started with Libreoffice 3.4 Copyright
    Getting Started with LibreOffice 3.4 Copyright This document is Copyright © 2010–2012 by its contributors as listed below. You may distribute it and/or modify it under the terms of either the GNU General Public License (http://www.gnu.org/licenses/gpl.html), version 3 or later, or the Creative Commons Attribution License (http://creativecommons.org/licenses/by/3.0/), version 3.0 or later. Contributors Jean Hollis Weber Jeremy Cartwright Ron Faile Jr. Martin Fox Dan Lewis David Michel Andrew Pitonyak Hazel Russman Peter Schofield John A Smith Cover art: Drew Jensen Christoph Noack Klaus-Jürgen Weghorn Jean Hollis Weber Acknowledgements This book is adapted from Getting Started with OpenOffice.org 3.3. The contributors to that book are listed on page 13. Feedback Please direct any comments or suggestions about this document to: [email protected] Publication date and software version Published 19 April 2012. Based on LibreOffice 3.4.6. Documentation for LibreOffice is available at http://www.libreoffice.org/get-help/documentation Contents Copyright..................................................................................................................................... 2 Preface.................................................................................................................................. 9 Who is this book for?................................................................................................................. 10 What's in this book?..................................................................................................................
    [Show full text]
  • Download Open Office.Org Writer
    Download open office.org writer Official Apache OpenOffice download page. Join the Download Apache OpenOffice. (Hosted by Are you an experienced lead technical writer? Are you ​ - Download · ​Apache OpenOffice Downloads · ​Porting · ​Licenses. Screendump of Apache OpenOffice Writer Of course, you are also free to create your own templates, or download templates from our Templates repository. Apache OpenOffice Downloads - Official Site - All Builds To use this verfication you have to download the respective ASC file in the table below and this KEYS. OpenOffice Writer, free and safe download. OpenOffice Writer latest version: Create and edit DOC files with ease. OpenOffice Writer is a lightweight app that lets. Note: As of April , commercial development of project has been terminated. The code was contributed to the Apache Software Foundation. Open Office free download. Get new version of Open Office. An office software program ✓ Free ✓ Updated ✓ Download now. If you're looking for Microsoft- caliber applications for free, OpenOffice has Download Now Secure Download . Publisher web site, Download Apache OpenOffice for free. Free alternative for Office productivity tools: Apache OpenOffice - formerly known as - is an open-source. Download Apache OpenOffice () for Windows. that covers all the requirements that offices might need, including word processing (Writer). Download Freeware ( MB) This version of OpenOffice features improved ODF support, including new OpenOffice is also available on Mac. words in a document (Word or OpenOffice) · Myth - is written in Java Checker under Writer · Disable the launch of OpenOffice at startup. NCDAE Tips and Tools: Writer. Created: August Large file size may make it difficult to download a file.
    [Show full text]
  • Linuxforbiologists.Pdf
    Linux for Biologists A Cookbook Vimalkumar Velayudhan First edition June 9, 2021 This work is licensed under Attribution‑NonCommercial‑ShareAlike 4.0 International. To view a copy of this license, visit http://creativecommons.org/licenses/by‑nc‑sa/4.0/ For Shanthi Thanks I would like to express my gratitude to my mentors, colleagues, students, friends and family. Without their support and encouragement, this book wouldn’t have been possible. Thanks also to the wonderful world of Linux and open source software and the community around it. i ii Contents 1 About this book 1 1.1 Who is it for? .................... 2 1.2 What you will learn ................. 3 1.3 What you will need ................. 4 1.3.1 Linux desktop ............... 5 1.3.2 Administrator privileges ......... 7 1.4 About the author .................. 8 2 Getting started with Linux 9 2.1 Linux — an overview ................ 10 2.1.1 Linux distribution ............. 11 2.1.2 Desktop environment ........... 12 2.1.3 Ways to run a Linux desktop ....... 17 2.2 Running a Linux virtual machine ......... 18 2.2.1 Requirements ............... 19 2.2.2 Importing the virtual machine image .. 22 2.2.3 Starting the virtual machine ....... 28 2.2.4 Stopping the virtual machine ....... 30 iii 2.3 The desktop ..................... 31 2.3.1 The Cinnamon desktop .......... 32 2.3.2 Changing system settings ......... 33 2.4 Available software ................. 36 2.4.1 Files — manage files and directories ... 38 2.4.2 Firefox — browse the web ......... 41 2.4.3 Text Editor — create and edit text files .. 42 2.4.4 LibreOffice — edit documents and spread‑ sheets ..................
    [Show full text]
  • Emacs Documentation Release Latest
    Emacs Documentation Release latest Jun 04, 2021 Documentation 1 Licence 3 2 How to Use This Document 5 3 Install Packages 7 4 General 9 4.1 Utilities..................................................9 4.2 Remove Keybind.............................................9 4.3 Assorted Pieces..............................................9 4.4 Window Layout/Navigation....................................... 11 4.5 System Path/Keyboard.......................................... 12 4.6 General Editing.............................................. 13 4.7 Minibuffer history............................................ 13 5 GUI - Emacs Looks Cool 15 5.1 Fonts................................................... 15 5.2 Minimalists GUI............................................. 15 5.3 Theme.................................................. 15 5.4 Mode Line................................................ 16 6 Completion and Selection 17 6.1 Helm - Fuzzy Match........................................... 17 6.2 Multi-Cursor & Helm-swoop - Multiple Selection........................... 18 6.3 ace-jump................................................. 19 6.4 Expand-Region - Incremental Selection................................. 19 7 File Management 21 7.1 Alternative to shell............................................ 21 7.2 Projectile - Directory Access....................................... 23 7.3 Remote (SSH).............................................. 23 7.4 Git Sync................................................. 24 7.5 Testing Buffers.............................................
    [Show full text]
  • A Rule-Based Style and Grammar Checker
    A Rule-Based Style and Grammar Checker Daniel Naber Diplomarbeit Technische Fakultät, Universität Bielefeld Datum: 28.08.2003 Betreuer: Prof. Dr.-Ing. Franz Kummert, Technische Fakultät Dr. Andreas Witt, Fakultät für Linguistik und Literaturwissenschaft Contents 1 Introduction 3 2 Theoretical Background 4 2.1 Part-of-Speech Tagging . 5 2.2 Phrase Chunking . 6 2.3 Grammar Checking . 7 2.3.1 Grammar Errors . 8 2.3.2 Sentence Boundary Detection . 9 2.4 Controlled Language Checking . 10 2.5 Style Checking . 12 2.6 False Friends . 12 2.7 Evaluation with Corpora . 13 2.7.1 British National Corpus . 14 2.7.2 Mailing List Error Corpus . 15 2.7.3 Internet Search Engines . 15 2.8 Related Projects . 16 2.8.1 Ispell and Aspell . 16 2.8.2 Style and Diction . 17 2.8.3 EasyEnglish . 17 2.8.4 Critique . 18 2.8.5 CLAWS as a Grammar Checker . 18 2.8.6 GramCheck . 18 2.8.7 Park et al’s Grammar Checker . 19 2.8.8 FLAG . 19 3 Design and Implementation 20 3.1 Class Hierarchy . 20 3.2 File and Directory Structure . 21 3.3 Installation . 23 3.3.1 Requirements . 23 3.3.2 Step-by-Step Installation Guide . 23 3.4 Spell Checking . 25 3.5 Part-of-Speech Tagging . 25 3.5.1 Constraint-Based Extension . 26 3.5.2 Using the Tagger on the Command Line . 27 3.5.3 Using the Tagger in Python Code . 28 3.5.4 Test Cases . 29 3.6 Phrase Chunking . 29 3.7 Sentence Boundary Detection .
    [Show full text]
  • Linguistic Style Checkingwith Program Checking Tools
    Linguistic Style Checking with Program Checking Tools Fabrizio Perin Lukas Renggli Jorge Ressia Software Composition Group, University of Bern, Switzerland http://scg.unibe.ch/ Abstract Written text is an important component in the process of knowledge acquisition and communication. Poorly written text fails to deliver clear ideas to the reader no matter how revolutionary and ground-breaking these ideas are. Providing text with good writing style is essential to transfer ideas smoothly. While we have sophisti- cated tools to check for stylistic problems in program code, we do not apply the same techniques for written text. In this paper we present TextLint, a rule-based tool to check for common style errors in natural language. TextLint provides a structural model of written text and an extensible rule-based checking mechanism. 1 Introduction In a typical programming language the parser and compiler validate the syn- tax of the program. IDEs often provide program checkers [1] that help us to detect problematic code. The goal of program checkers is to provide hints to developers on how to improve coding style and quality. Today's program checkers [2] reliably detect issues like possible bugs, portability issues, viola- tions of coding conventions, duplicated, dead, or suboptimal code. While a program checker can assist the review process of source code, its suggestions are not necessarily applicable to all given contexts and might need further review of a senior developer. Most of today's text editors are equipped with spelling and grammar checkers. These checkers are capable of detecting a variety of errors in various languages as well as pointing out invalid grammatical constructs.
    [Show full text]
  • Distilling Crowd Knowledge from Software‑Specific Q&A Discussions
    This document is downloaded from DR‑NTU (https://dr.ntu.edu.sg) Nanyang Technological University, Singapore. Distilling crowd knowledge from software‑specific Q&A discussions for assisting developers’ knowledge search Chen, Chunyang 2018 Chen, C. (2017). Distilling crowd knowledge from software‑specific Q&A discussions for assisting developers’ knowledge search. Doctoral thesis, Nanyang Technological University, Singapore. http://hdl.handle.net/10356/75873 https://doi.org/10.32657/10356/75873 Downloaded on 07 Oct 2021 22:31:50 SGT NANYANG TECHNOLOGICAL UNIVERSITY Distilling Crowd Knowledge from Software-Specific Q&A Discussions for Assisting Developers’ Knowledge Search Chunyang Chen School of Computer Science and Engineering A thesis submitted to Nanyang Technological University in partial fulfillment of the requirements for the degree of Doctor of Philosophy June, 2018 THESIS ABSTACT Distilling Crowd Knowledge from Software-Specific Q&A Discussions for Assisting Developers’ Knowledge Search by Chunyang Chen Doctor of Philosophy School of Computer Science and Engineering Nanyang Technological University, Singapore With software penetrating into all kinds of traditional or emerging industries, there is a great demand on software development. Faced with the fact that there is a limited number of developers, one important way to meet such urgent needs is to significantly improve developers’ productivity. As the most popular Q&A site, Stack Overflow has accumulated abundant software development knowledge. Effectively leveraging such a big data can help developers reuse the experience there to further improve their working efficiency. However, the rich yet unstructured large-scale data in Stack Overflow makes it difficult to search due to two reasons. First, there are too many questions and answers within the site, and there may be lingual gap (the same meaning can be written in different languages) between the query and content in Stack Overflow.
    [Show full text]
  • Computer Support for the Analysis and Improvement of the Readability of IT-Related Texts
    Department of Informatics TECHNISCHE UNIVERSITÄT MÜNCHEN Master’s Thesis in Information Systems Computer Support for the Analysis and Improvement of the Readability of IT-related Texts Matthias Holdorf Department of Informatics TECHNISCHE UNIVERSITÄT MÜNCHEN Master’s Thesis in Information Systems Computer Support for the Analysis and Improvement of the Readability of IT-related Texts Computergestützte Analyse und Verbesserung der Lesbarkeit von IT-bezogenen Texten Author: Matthias Holdorf Supervisor: Prof. Dr. Florian Matthes Advisor: Bernhard Waltl, M.Sc. Submission Date: 15.11.2016 I confirm that this master’s thesis is my own work and I have documented all sources and materials used. Ich versichere, dass ich diese Master’s Thesis selbstständig verfasst und nur die angegebenen Quellen und Hilfsmittel verwendet habe. München, 15.11.2016 Matthias Holdorf Acknowledgments First and foremost, I would like to thank my advisor Bernhard Waltl and my industry advisor Andreas Zitzelsberger for their preeminent support, interest, and time. I feel fortunate to have had the opportunity to learn from both the academic field and the industry. Furthermore, I would like to thank Prof. Dr. Florian Matthes for his time and feedback, and for providing me the opportunity to write this thesis at the Software Engineering for Business Information Systems (SEBIS) chair, which he holds. I also want to thank my conversation partners Tobias Waltl, Mark Becker, and Henning Femmer. I would like to thank the numerous participants of the quantitative survey, and especially my interview partners. During the search for interview partners, we had an astonishing 100% confirmation rate. Even the managing directors took the time to answer our questions.
    [Show full text]
  • Interface for Integration of Language Checking Tools to Text Editing Software
    Masaryk University Faculty of Informatics Interface for Integration of Language Checking Tools to Text Editing Software Bachelor’s Thesis Jan Tojnar Brno, Spring 2018 Masaryk University Faculty of Informatics Interface for Integration of Language Checking Tools to Text Editing Software Bachelor’s Thesis Jan Tojnar Brno, Spring 2018 This is where a copy of the official signed thesis assignment and a copy ofthe Statement of an Author is located in the printed version of the document. Declaration Hereby I declare that this paper is my original authorial work, which I have worked out on my own. All sources, references, and literature used or excerpted during elaboration of this work are properly cited and listed in complete reference to the due source. Jan Tojnar Advisor: RNDr. Adam Rambousek, Ph.D. i Acknowledgements I would like to thank my advisor RNDr. Adam Rambousek, Ph.D. for his patience, and my parents for their support and proofreading. iii Abstract In this thesis, we propose a library that unifies various text check- ing tools behind a single interface for easier integration of grammar checking into applications. The library is modular and supports dif- ferent providers; a grammar checking provider using LanguageTool and a spell checking provider using Enchant were developed as ex- amples. Additionally, AbiWord text editor was modified to use our library. iv Keywords grammar checking, spell checking, text editor integration, linguistic framework, freedesktop v Contents 1 Introduction 1 2 Overview of existing checkers 3 2.1 Elixir ............................. 3 2.2 Enchant ............................ 3 2.3 Link Grammar ........................ 3 2.4 LanguageTool ......................... 4 2.5 After the Deadline ......................
    [Show full text]
  • Acquiring IT Solutions Through Open Source Software
    Proceedings of Insternational Conference on Busines & Management, 9-10 January 2008, Brunei Darussalam Acquiring IT Solutions through Open Source Software Mohammad Nabil Almunawar Faculty of Business, Economic & Policy Studies Universiti Brunei Darussalam [email protected] Abstract Open source software is free software that provides user freedom to use, replicate, modify, and distribute for any purpose. The quality of well-known open source software is very high and they are used by big companies such as IBM, Google and Amazon.com. Recently the number of open source software project growing very fast, which indicates that adoption of open source software is growing although still limited. Businesses should consider open source software as alternative solutions to their business problems or opportunities. An example of a very good open source software for office suite is discussed and compared with the well-known proprietary counterpart. Keywords: open source software, software quality, OpenOffice, software acquisition. 1. Introduction The is no question regarding the important role of computers in business these days, even micro businesses use computers at least to support their administrative activities such as using word-processing, spreadsheet or any office tool. Larger businesses depend on computers to operate or even to survive. In general a computer is composed of hardware and software. Hardware technology has improved significantly and the cost to acquire hardware is getting cheaper every year. It is now possible to purchase a powerful machine just for few thousand dollars. Despite hardware is getting cheaper and more powerful, the cost to acquire software is expensive. Normally software is acquired through licensing.
    [Show full text]