Featured Post
Juan Rodriguez C essays
Juan Rodriguez C papers The notoriety of California just like a spot to cast off suppositions and attempt various things seems to have st...
Sunday, March 29, 2020
The Changing Character of Creon In the Antigone Essay Example
The Changing Character of Creon In the Antigone Paper The chief agent is Creon; his is the character, his the faults and merits, which are immediately relevant to the play1. This comment from H.D.F Kitto is the reason for this study into Creons character in the Antigone of the two protagonists featured, I feel his development throughout the tragedy is the most interesting and compelling aspect of the play. We watch him change from an admired, strong ruler into a tyrant who possesses a severe lack of judgement and misguided conceptions of the world, and finally into a shattered, fallen man whose values have cost him dearly. The character of Creon is at fault for all that happens in the play his decisions drastically effect the lives of those around him. However, his difficult position must be remembered when analysing his actions he was king, and believed he was acting in the best interests of the city. Also, he is the one who fares the worst due to his actions, and is left to live with this pain. As is typical of Greek tragedy, there is no sitting and doing nothing2, so Creon had to act in some way, but his misjudgement caused him to act in a manner which caused suffering to all. Through this study I hope to come to a more thorough understanding of Creons character and consequently gain a deeper insight into the meaning of the play as a whole. We will write a custom essay sample on The Changing Character of Creon In the Antigone specifically for you for only $16.38 $13.9/page Order now We will write a custom essay sample on The Changing Character of Creon In the Antigone specifically for you FOR ONLY $16.38 $13.9/page Hire Writer We will write a custom essay sample on The Changing Character of Creon In the Antigone specifically for you FOR ONLY $16.38 $13.9/page Hire Writer First impressions of Creon are favourable. The chorus describe him as the new man for the new day3 (line 174) and in his opening speech he seems to do what is right for the country, deeming any who place a friend above the good of his own country as nothing (lines 203-4). But even here we have a hint of one of Creons problems his view of the city. Certainly a king should hold high concern for his domain, but we learn later that Creon sees human beings as tools in the productivity of civic well being4, as Martha Nussbaum describes. This critic believes Creon has reordered the values of the world to justify his actions, and this has resulted in his mental fusing of the city and the family. Nussbaum argues that Creon feels he will eliminate the problems of city- family conflict5 if the two become one. He goes so far as to deny familial ties which accounts for his attitude towards Antigones need to bury Polynices where they clash with civic interest. As Nussbaum states, he is attempting to replace blood ties by the bonds of civic friendship6. He sees the city as the supreme good, and all other values are functions of that good. He feels he has made a world into which tragedy cannot enter, but he is sadly mistaken, as is later proven. From this, we can see one of Creons main failings he is incapable of valuing city inhabitants for their intrinsic humanity rather than just their civic productivity. This is proven in his remark to Haemon regarding Antigone he tells his son to simply Spit her out, like a mortal enemy let the girl go (lines 728-9). He feels that because he sees her life as worthless, his son automatically will too he is denying the love his son holds for Antigone, and giving him no respect for having these feelings. Here we are also beginning to witness Creons lapse into tyranny he is prepared to murder Antigone in front of Haemon his own son simply to vent his anger. We had hints of his tyrannical side in his attitude towards the sentry he would have had him killed just for the purpose of punishing someone if the sentry had not found the real culprit. But the inhumanity towards his own flesh and blood is what clinches our opinion. Him bellowing The city is the kings thats the law! (line 825) at Haemon also presents an image of a somewhat power-crazed individual.à We are beginning to see how Creons lack of judgement affects his actions towards others. He lacks respect for the gods, which is shown by comments such as;à Youll never bury that body in the grave,à not even if Zeuss eagles rip the corpseà and wing their rotten pickings off to the throne of god! (lines 1151-1153)
Saturday, March 7, 2020
JavaScript Execution Order Code and Guide
JavaScript Execution Order Code and Guide Designing your web page using JavaScript requires attention to the order in which your code appears and whether you are encapsulating code into functions or objects, all of which impact the order in which the code runs.à The Location of JavaScript on Your Web Page Since the JavaScript on your page executes based on certain factors, lets consider where and how to add JavaScript to a web page.à There are basically three locations into which we can attach JavaScript: Directly into the head of the pageDirectly into the body of the pageFrom an event handler/listener It doesnt make any difference whether the JavaScript is within the web page itself or in external files linked to the page. It also doesnt matterà whether the event handlers are hard-coded into the page or added by the JavaScript itself (except that they cant be triggered before they are added). Code Directly on the Page What does it mean to say that JavaScript isà directly in the head or body of the page?à If the code is not enclosed in a function or object, it is directly in the page. In this case, the code runs sequentially as soon as the file containing the code has loaded sufficiently for that code to be accessed. Code that is within a function or object is run only when that function or object is called. Basically, this means that any code inside the head and body of your page that is not inside a function or object will run as the page is loadingà - à as soon asà the page has loaded sufficiently to access that code. That last bit is important and impacts the order in which you place your code on the page: any code placed directly in the page that needs to interact with elements within the page must appear after the elements in the page on which it is dependent. In general, this means that if you use direct code to interact with your page content, such code should be placed at the bottom of the body. Code Within Functions and Objects A code inside functions or objects is run whenever that function or object is called. If it is called from code that is directly in the head or body of the page, then its place in the execution order is effectively the point at which the function or object is called from the direct code. Code Assigned to Event Handlers and Listeners Assigning a function to an event handler or listener does not result in the function being run at the point at which it is assigned - à provided that you are actually assigning the function itself and not running the function and assigning the value returned. (This is why you generally do not see the () on the end of the function name when it is being assigned to an event since the addition of the parentheses runs the function and assigns the value returned rather than assigning the function itself.) Functions that are attached to event handlers and listeners run when the event that they are attached to is triggered. Most events are triggered by visitors interacting with your page. Some exceptions exist, however, such as the load event on the window itself, which is triggered when the page finishes loading. Functions Attached to Events on Page Elements Any functions attached to events on elements within the page itself will run according to the actions of each individual visitor - thisà code runs only when a particular event occurs to trigger it. For this reason, it doesntà matter if the code never runs for a given visitor, since that visitor has obviously not performed the interaction that requires it. All of this, of course, assumes that your visitor has accessed your page with a browser that has JavaScript enabled. Customized Visitor User Scripts Some users have installed special scripts that mayà interact with your web page. These scripts run after all of your direct code, but before anyà code attached to the load event handler. Since your page knows nothing about these user scripts, you have no way of knowing what these external scripts might doà - à à theyà could override any or all of the code that you have attached to the various events to which you have assigned processing. If this code overridesà event handlers or listeners, the response to event triggers will run the code defined by the user instead of, or in addition to, your code. The take home point here is that you cannot assume that code designed to run after the page has loaded will be allowed to run the way that you designed it. In addition, be aware that some browsers have options that allow disabling of some event handlers within the browser, in which case a relevant event trigger will not launch the corresponding event handler/listener in your code.
Subscribe to:
Comments (Atom)