Friday, January 24, 2020

Literary Analysis: Clay and The Dead Essay -- Essays Papers

Literary Analysis: Clay and The Dead In the fifteen Dubliners stories, city life, religion, friends and family bring hope to individuals discovering what it means to be human. Two stories stood out in James Joyce’s Dubliners. One story attempts to mislead readers as it is hard to follow and the other story is the most famous story in the book. In the stories â€Å"Clay† and â€Å"The Dead,† James Joyce uses escape themes to deal with the emotions of the characters, Maria and Gabriel living in the Dublin society. Both stories take place during the winter on Halloween and Christmas, which are the holiday seasons and the season of death. In â€Å"Clay,† the main character, Maria is a patient, old woman and a former maid for rival brothers Joe and Alphy Donnelly. Now that they’re all grown up, she seems to be â€Å"lost† in her life, childless and unmarried, and is now an employee at a Laundromat. Maria has struggled for what seems like most of her life both financially and socially. Maria lives on a small but independent income from a job that earns her the respect of co-workers and bosses. Glimpses of poverty are seen in this story when Maria becomes concerned that she lost the cake that she bought for the Donnelly family. â€Å"Maria said she had brought something special for papa and mamma, something they would be sure to like, and she began to look for her plumcake† (99). Maria’s loss of the cake is painful because she paid a big price for it. Maria was trying to treat her loved ones despite her limited income. Although Gabriel from â€Å"The Dead† isn’t poor like Maria, he isn’t very wealthy either unlike his aunts. Gabriel is just an average writer. He doesn’t hold annual parties like his aunts do every year to make him seem snobbish to others. J... ... U.S.A: Pearson Custom Publishing, 2002. Langbaum, Robert â€Å"The Epiphanic Mode in Wordsworth and Modern Literature.† New Literary History Vol. 14 (1983): 335-358. JSTOR. University of Dayton, Roesch Library. 18 February 2004 . Munich, Adrienne â€Å"Form and Subtextt in Joyce’s ‘The Dead’† Modern Philology Vol. 82 No.2 (Nov. 1984) 173-184. JSTOR University of Dayton, Roesch Library.20 February 2004 Norris, Margot â€Å"Narration under a Blindfold: Reading Joyce’s ‘Clay.’† PMLA Vol. 102 (1987): 206-215. JSTOR. University of Dayton, Roesch Library. 18 February 2004 . Orfe Literature. Ed. James Joyce. 17 February 2004. . Owens, Coilin. â€Å"Clay (3): The Mass of Mary and All the Saints.† James Joyce Quarterly 28 (1990): 257-266.

Thursday, January 16, 2020

Influential factors Essay

When it’s time to develop a new program, the first thing that must be considered is the decision on what programming language to utilise. This is important because changing the program midway through completion is very difficult to achieve, and will often require a vast rewriting of code. There are a number of issues that will influence this decision, and these are:   Organisational policy, suitability of the language, the availability of trained staff, how reliable the program is, cost of development and maintenance, expandability of the language, and interoperability with other languages Table of Contents Task Brief 1 Overview of Report 1 Organisational Policy 1 Suitability 2 Availability of Trained Staff 2 Reliability 2 Development and Maintenance Costs 2 Expandability 3 Interoperability 3 Summery 3 Bibliography 4 Organisational Policy All organisations will have policies (methods of practice) dictating that they will operate under specified conditions. A policy of developing applications using one particular language may come from historical use, and a foundation of previous development tools (such as IDEs) for that one language. (M Fishpool, 2007, p. 156) To deviate to using another language may in that instance not make sense to the hierarchy of the organisation. This may ring particularly true if the organisation has established a relationship with a particular vendor, such as Microsoft. Maintaining a link with this company may be rewarded with better support and discounts. (Anderson, 2010, p. 166) On the other hand, maintaining the use of a particular piece of software (such as Microsoft’s IDE Visual Studio) would limit language choice to those that suit that company’s interests. Another choice they may pursue is to utilise open source software, which brings its own benefits and disadvantages. Open-source software does not offer personalised technical support and relies on an unpaid, potentially unreliable enthusiast community to provide these solutions, but is usually free to use. Suitability Building a program in a language unsuitable for its intended task will cause big problems down the line, which is why understanding the application’s technical requirements is important. The first thing to consider when making a program is what the intended platform will be. This could be computer setups such as Windows, OS X, a Linux-based OS, a web-based application, a smart phone-based app or the option to be platform agnostic could also be desired. Languages that are built to be natively run on one platform (like C++) will be more effective in completing intensive tasks, but building a program in Java means that the application will work the same way on any OS with the Java Runtime Environment (JRE) software installed (Oracle, 2011). The complexity of the program will also affect whether a procedural or object-oriented language will be chosen, as is whether appropriate features are included in the chosen IDE. (Anderson, 2010, p. 166) Availability of Trained Staff If a language is popular and used widely (such as Java, C, or C++ (TIOBE, 2011)), then there will be more professionals that are able to code in it than there are for less popular languages. Therefore, choosing a popular language will make it easier to recruit personnel for a new project. Also, looking at what languages the organisation has historically used, the kind of hardware installed, and what skill sets existing employees have will have an impact in this decision. Reliability. A program becomes unreliable when how it will deal with data becomes unpredictable, and this is what can cause programs to crash. This is why some languages, like Ada, are created with an emphasis on features that make them less likely to crash. (Anderson, 2010, p. 166) The best way of ensuring that code is predictable and reliable is to use a strict language, which is one with a strong type system. A strong type system specifies restrictions on how values of different data types (such as integers and strings) are allowed to be intermixed, and stops the source code from compiling if it thinks data is being incorrectly mixed. This provides a guarantee about how the program will behave when it starts running. (Wikipedia 2, 2011) Development and Maintenance Costs Part of the idea of planning the development of a program also includes the costing of the entire project. In order to do so, we take into account the length of time each development stage will take, and what resources will be needed at which point. A lot of resources are spent before the first line of code is even written to make sure that the language and IDE we choose will be the most suitable and acceptably reliable, because choosing an â€Å"unreliable solution means more money spent in maintenance costs. † (M Fishpool, 2007, p. 155) Also, rather than simply creating error fixes, maintenance is also about how the program evolves post-deployment, as suggested by Lehman’s Laws. (Wikipedia 1, 2011) Therefore, how much of the overall budget will go towards the evolution of the application needs to be taken into account. Expandability Expandability is about planning the long term future of the program. Programs in active use will rarely cease to be updated following its first release. It will usually evolve beyond its original specification and require more features to be added, or be asked to process more data. If this is the case and the program is not easily expandable, a lot more time and money than necessary will need to be spent on rewriting code or porting it to a different language. For this reason, object oriented languages are popular because new features can be ‘bolted on’ as additional classes. (M Fishpool, 2007, p. 156) If this is not a concern, a procedural language can be used instead. Interoperability The presence of several languages may dictate whether a language needs to be interoperable. Interoperability is achieved when programs coded in different languages are able to work with each other through a common set of standards. (Wikipedia 3, 2011) One way this is done is through the Common Language Infrastructure (CLI) specification, which is implemented using Mono and Microsoft’s . NET. These allow any language that meets the CLI specification to be able to be run by their virtual machine. The most common language is C#, which was especially created to be used in . NET, but dialects of popular languages have been created to be used in a similar fashion (examples include C++/CLI and VB. NET). Summery In this report, we discussed what factors are influential in choosing a programming language for a project. We discovered that companies will have organisational policies which restrict employees to only use certain languages or certain company’s’ software. We also learned that all languages have pros and cons, so that understanding what task our program needs to do will ensure we pick the language that is most suitable. We also need to make sure that there are actually people available to employ to code for us, so we should choose a popular language to make it easier to recruit employees. Reliability is also an area of importance, but for programs where reliability must be guaranteed, we learned that there are languages such as Ada which cater to this specific requirement. Budgets are also an issue as development and maintenance costs will differ between languages, and an unreliable solution means more money spent in maintenance costs. If we need our software to be expanded in the future, it is also best to choose a language that can support this from the start. Finally, we learned about interoperability and how programs coded in different languages are able to work with each other through a common set of standards. Bibliography Anderson, J. K. L. M. P. a. S. , 2010. BTEC National Level 3 IT Student Book 1. 1st ed. Edexcel. M Fishpool, B. F. , 2007. BTEC Level 3 National in IT. 2nd ed. Hodder Education. Oracle, 2011. Java Runtime Environment (JRE). [Online] Available at: HYPERLINK â€Å"http://java. sun. com/j2se/desktopjava/jre/† http://java. sun. com/j2se/desktopjava/jre/ [Accessed 1 October 2011]. TIOBE, 2011. TIOBE Index. [Online] Available at: HYPERLINK â€Å"http://www. tiobe. com/content/paperinfo/tpci/index. html† http://www. tiobe. com/content/paperinfo/tpci/index. html [Accessed 01 October 2011]. Wikipedia 1, 2011. Software Maintenance. [Online] Available at: HYPERLINK â€Å"http://en. wikipedia. org/wiki/Software_maintenance† http://en. wikipedia. org/wiki/Software_maintenance [Accessed 2 October 2011]. Wikipedia 2, 2011. Strong Typing: Wikipedia. [Online] Available at: HYPERLINK â€Å"http://en. wikipedia. org/wiki/Strongly_typed_programming_language† http://en. wikipedia. org/wiki/Strongly_typed_programming_language [Accessed 14 October 2011]. Wikipedia 3, 2011. Interoperability. [Online] Available at: HYPERLINK â€Å"http://en. wikipedia. org/wiki/Interoperability† l â€Å"Software† http://en. wikipedia. org/wiki/Interoperability#Software [Accessed 27 September 2011].