Featured Post

How To Write An Essay In English

How To Write An Essay In English But college students need professional writing help more frequently. That’s because at this level of e...

Sunday, April 19, 2020

Medieval Weapons Essays - Projectile Weapons, Medieval Warfare

Medieval Weapons Medieval Weapons were (are) very dangerous. They Can kill, puncture, wound, hurt, or anything else. All weapons From the Middle Ages were looked upon as frightening and crucial Tools to kill. From a small dagger to a large cannon; all weapons Would kill, no doubt about it. A lot, in fact most of the weapons were used for siege and Defense against castles. Castles were the most integral part of the Middle Ages. They held the king, the servants and anyone else Important. If you wanted land or money, a castle was the perfect Place to hit. Movable Towers were just one thing used to lay siege on These castles. Not necessarily a weapon itself, it held Weapons...knights and peasants. Knights and (or) peasants carried many weapons depending On what specialty they had. Some carried bows-and-arrows, others Maces, some swords, some knifes, etc. A mace was a metal ball with metal spikes welded on the Ball. A chain was attached to a wood stick onto the ball. The Mace would not kill only torture. Other siege weapons included the ballista, a HUGE Crossbow- like slingshot that could send a huge tree trunk 3 football fields Long. The ballasta was manly for breaking down castle walls, or for scattering A heavily guarded area. The most commonly used weapon was the sword. It was a long metal Object that was very sharp on both sides. The sword could actually cut the Sheet metal on modern day cars. Imagine this power through your neck! Next to the sword, the "soldiers" held a small dagger in a pouch on Their belt. This was used to finish people off, as a last resort, or sometimes Even suicide missions. Trebuchet, the name strikes fear in people's eyes, a HUMONGOUS Slingshot that could send a big monkeys boulder 2 football fields. This Weapon could be used to demolish castle walls, or could even be used to kill Hundreds of people on the battlefield. Anyway used, it was a big dangerous Weapon. Medieval Warfare and Weaponry In the Middle Ages, the nobility of many cultures had large fortifications built to house a small town as well as themselves. These fortification were called castles, and they were so well defended that some historians have called it the most formidable weapon of medieval warfare (Hull 1). As one can imagine, conquering such a colossal structure cost much money, even more time, and many lives. There were three main ways to infiltrate a castle; each no more common than the other two. The first way to conquer to castle is known as the siege. In a siege, an army would bar passageways into the castle, and continue to pound away at the castle's defenses until it was vulnerable to a final attack. In this form of assault, the attacking party did not have to approach the castle, as was required in a storm, the second way to attack a castle. In a siege, large projectiles from catapults often bombarded the ramparts of the castle. Hunger, plague, or actual weapons such as Greek fire arrows killed off the defenders of the castle. Greek fire was a mixture comprised of highly flammable substances that was agonizingly hot. Bits of cloth were dipped into the Greek fire compound and wrapped it behind the head of an arrow, and then lit on fire. Yet another common tactic in the siege was undermining. Undermining was the digging of tunnels underneath towers. However, the purposes of such subt erranean activity were not for passage, but to create instability in the towers and in the end cause their disintegration. The second, more certain form of attack upon a castle was the blockade. To blockade a place was to preclude all entry and departure from the site. In doing so to a castle, one limited their food supply, for a castle, unlike a manor, could not survive unless contact with the outer world could be attained. However, starving a castle out was costly in both money and especially time. For a long while an army waited for the castle to deplete their resources, the army itself had to continue to supply themselves with such resources and the soldiers were to be paid for their vigilant act. Although it was costly and lengthy, blockade did work. Richard the Lionhearted's stronghold, the Chateau-Gaillard, which was built in only a year along the Seine River, was sacked on March 6, 1204 by

Saturday, March 14, 2020

How to Place a Checkbox Into a DBGrid

How to Place a Checkbox Into a DBGrid There are numerous ways and reasons to customize the output of a DBGrid in Delphi. One way is to add checkboxes so that the result is more visually attractive. By default, if you have a boolean field in your dataset, the DBGrid displays them as True or False depending on the value of the data field. However, it looks much better if you choose to use a true checkbox control to enable editing the fields. Create a Sample Application Start a new form in Delphi, and place a TDBGrid, TADOTable, and TADOConnection, TDataSource. Leave all the component names as they are when they were first dropped into the form (DBGrid1, ADOQuery1, AdoTable1, etc.). Use the Object Inspector to set a ConnectionString property of the ADOConnection1 component (TADOConnection) to point to the sample QuickiesContest.mdb MS Access database. Connect DBGrid1 to DataSource1, DataSource1 to ADOTable1, and finally ADOTable1 to ADOConnection1. The ADOTable1 TableName property should point to the Articles table (to make the DBGrid display the records of the Articles table). If you have set all the properties correctly, when you run the application (given that the Active property of the ADOTable1 component is True) you should see, by default, the DBGrid display the boolean fields value as True or False depending on the value of the data field. CheckBox in a DBGrid To show a checkbox inside a cell of a DBGrid, well need to make one available for us at run time. Select the Data controls page on the Component Palette and pick a TDBCheckbox. Drop one anywhere on the form - it doesnt matter where, since most of the time it will be invisible or floating over the grid. Tip: TDBCheckBox is a data-aware control that allows the user to select or deselect a single value, which is appropriate for boolean fields. Next, set its Visible property to False. Change the Color property of DBCheckBox1 to the same color as the DBGrid (so it blends in with the DBGrid) and remove the Caption. Most importantly, make sure the DBCheckBox1 is connected to the DataSource1 and to the correct field. Note that all the above DBCheckBox1s property values can be set in the forms OnCreate event like this: procedure TForm1.FormCreate(Sender: TObject);begin DBCheckBox1.DataSource : DataSource1; DBCheckBox1.DataField : Winner; DBCheckBox1.Visible : False; DBCheckBox1.Color : DBGrid1.Color; DBCheckBox1.Caption : ; //explained later in the article DBCheckBox1.ValueChecked : Yes a Winner!; DBCheckBox1.ValueUnChecked : Not this time.; end; What comes next is the most interesting part. While editing the boolean field in the DBGrid, we need to make sure the DBCheckBox1 is placed above (floating) the cell in the DBGrid displaying the boolean field. For the rest of the (non-focused) cells carrying the boolean fields (in the Winner column), we need to provide some graphical representation of the boolean value (True/False). This means you need at least two images for drawing: one for the checked state (True value) and one for the unchecked state (False value). The easiest way to accomplish this is to use the Windows API DrawFrameControl function to draw directly on the DBGrids canvas. Heres the code in the DBGrids OnDrawColumnCell event handler that occurs when the grid needs to paint a cell. procedure TForm1.DBGrid1DrawColumnCell( Sender: TObject; const Rect: TRect; DataCol: Integer; Column: TColumn; State: TGridDrawState); const IsChecked : array[Boolean] of Integer (DFCS_BUTTONCHECK, DFCS_BUTTONCHECK or DFCS_CHECKED);var DrawState: Integer; DrawRect: TRect;beginif (gdFocused in State) thenbeginif (Column.Field.FieldName DBCheckBox1.DataField) thenbegin DBCheckBox1.Left : Rect.Left DBGrid1.Left 2; DBCheckBox1.Top : Rect.Top DBGrid1.top 2; DBCheckBox1.Width : Rect.Right - Rect.Left; DBCheckBox1.Height : Rect.Bottom - Rect.Top; DBCheckBox1.Visible : True; endendelsebeginif (Column.Field.FieldName DBCheckBox1.DataField) thenbegin DrawRect:Rect; InflateRect(DrawRect,-1,-1); DrawState : ISChecked[Column.Field.AsBoolean]; DBGrid1.Canvas.FillRect(Rect); DrawFrameControl(DBGrid1.Canvas.Handle, DrawRect, DFC_BUTTON, DrawState); end; end; end; To finish this step, we need to make sure DBCheckBox1 is invisible when we leave the cell: procedure TForm1.DBGrid1ColExit(Sender: TObject);beginif DBGrid1.SelectedField.FieldName DBCheckBox1.DataField then DBCheckBox1.Visible : Falseend; We need just two more events to handle. Note that when in editing mode, all keystrokes are going to the DBGrids cell, we have to make sure they are sent to the CheckBox. In the case of a CheckBox we are primarily interested in the [Tab] and the [Space] key. [Tab] should move the input focus to the next cell, and [Space] should toggle the state of the CheckBox. procedure TForm1.DBGrid1KeyPress(Sender: TObject; var Key: Char);beginif (key Chr(9)) then Exit; if (DBGrid1.SelectedField.FieldName DBCheckBox1.DataField) thenbegin DBCheckBox1.SetFocus; SendMessage(DBCheckBox1.Handle, WM_Char, word(Key), 0); end;end; It could be appropriate for the Caption of the checkbox to change as the user checks or unchecks the box. Note that the DBCheckBox has two properties (ValueChecked and ValueUnChecked) used to specify the field value represented by the checkbox when it is checked or unchecked. This ValueChecked property holds Yes, a Winner!, and ValueUnChecked equals Not this time. procedure TForm1.DBCheckBox1Click(Sender: TObject);beginif DBCheckBox1.Checked then DBCheckBox1.Caption : DBCheckBox1.ValueChecked else DBCheckBox1.Caption : DBCheckBox1.ValueUnChecked;end; Run the project and youll see the checkboxes all over the Winner fields column.

Thursday, February 27, 2020

I just need the bibliography to be done Essay Example | Topics and Well Written Essays - 500 words

I just need the bibliography to be done - Essay Example 2006. africaresource. 17 Dec. 2007 . 8. Kiehl, Stephen. â€Å"Cashing in on the pop and hip-hop name-drop†. Baltimore Sun. 2004. Commercial Alert. 17 Dec. 2007 . 9. Mattus, Carolyn. â€Å"Hip-hops evolution, success examined†. THE HEIGHTS. 2005. BCHEIGHTS.com. 17 Dec. 2007 . 11. Silverstien, Matt. â€Å"Concerning Hip-Hop: A Repressive Agent or Vehicle for Activism?† Commercial Hip-Hop and Social Grassroots. 2006. africaresource. 17 Dec. 2007 . 14. â€Å"Since 1994, violent crime rates have declined, reaching the lowest level ever in 2005†. Bureau of Justice Statistics. 2006. Office of Justice Programs. U.S. Department of Justice. 17 Dec. 2007 . 16. Howard, Theresa. â€Å"Rapper 50 Cent sings a song of business success†. Advertising & Marketing. 2005. USA TODAY. 17 Dec. 2007 . 21. Ogunnaike, Lola. â€Å"Jay-Z, From Superstar to Suit†. The New York Times. 2005. NYTimes.com. 17 Dec. 2007 . 24. Wasserman, Todd. â€Å"Playing The Hip-Hop Name Drop†. Brandweek. 2005. ISIDE BRANDED ENTERTAINMENT. 17 Dec. 2007

Tuesday, February 11, 2020

Freuds Ideas Remain Influential Even When They Seem Implausible Essay

Freuds Ideas Remain Influential Even When They Seem Implausible - Essay Example According to Freud, the ego comes about during the infancy stage of human development and the goal of this aspect of mental development is to find satisfaction for the desires of the id but in a manner which is safe (Freud, 2010). While the id is mostly dominated by the instincts of the individual, the ego is dominated by reality and despite the fact that it works towards the fulfilment of the desires of the id, the ego can be said to be based on the control of these desires so that they do not get out of hand. The ego, therefore, functions not only in the unconscious level but also in the conscious level and this ensures that there is a balance between the two. The superego, on the other hand, develops during early childhood when the child comes to identify with the parent of the same sex, and this parent becomes the compass for the child’s moral development. It is the superego which is responsible for the development and upholding of moral values among individuals as a means of ensuring that they behave in a manner which is in accordance with the values and norms of the society. Moreover, it is responsible for the feelings of guilt which afflict individuals when they commit acts which go against the values of the society (Freud, 2013), and this enables them to correct their mistakes. According to Freud, there comes a time when there are conflicts between the id and the superego and when this occurs, it is normally the role of the ego to act as a mediator and to decide the best course of action that can be undertaken to solve the conflict. It is because of this that in some cases, the ego puts in place defence mechanisms which are designed to ensure that it is not overwhelmed by anxiety and this enables it to make the right decision about what to do.  It has been declared that the theories brought forth by Freud, while very good at providing explanations for behaviour, are not quite good at making predictions for the possible occurrence of such behavi our. It is for this reason that there has arisen a belief that Freud’s theories are not scientific because they can neither be proven false nor true. An example of such a scenario is the determination of what takes place in the unconscious mind because of the fact that this is something which cannot be tested or measured in an objective manner (Levin, 2010). It is because of this that it is believed that the theories propagated by Freud are neither scientific nor do they have objectivity. Because of the relatively few samples that he used, it has been declared that Freud’s studies and results were unrepresentative of the general population since he mainly made studies of himself, his patients and only one child. Since most of the studies consisted of his patients, mostly women of middle age.  

Friday, January 31, 2020

Analyse the way Beatrice and Benedick Essay Example for Free

Analyse the way Beatrice and Benedick Essay The characters Beatrice and Benedick in the William Shakespeare play â€Å"Much Ado About Nothing† can be described as sparring lovers. At the start of the play, it is difficult for them to converse without becoming involved in a â€Å"merry war† or a â€Å"skirmish of wit†. This attitude gradually changes as the play progresses. I shall analyse the way in which this attitude changes as Beatrice and Benedick engage in parlance. From Act One, Scene One, Beatrice demonstrates hypocrisy when to Benedick she says â€Å"I wonder that you will still be talking, Signor Benedick, nobody marks you†. The ironic part of this is that she is actually listening to him. Therefore, as much as she may like to deny it, she is giving the man she â€Å"detests† her undivided attention, and is noticing him. Benedick, in a quick flash of wit answers back â€Å"What, my dear Lady Disdain! Are you yet living? † As Benedick asks Beatrice if she is living, it presents the witty assumption that Benedick has not been aware of Beatrice’s presence. A very well-put reply to this from Beatrice is that â€Å"Disdain† can’t die whilst Benedick is there â€Å"feeding† it to carry on. This battle of wit which occurs between the both of them illustrates the deep loathing that they appear to have for one another. As we shall discover further on in the play, this seems only to be a guise for the immense passion they have for each other. There is, here, however, a suggestion from Beatrice that both of them have had a relationship before: â€Å"You always end with a jade’s trick. I know you of old†. The aforementioned evidence of a possible relationship provides a reason for the skirmish of wit, and also implies there may still be romantic feelings between the two. In Act Two, Scene One, Beatrice is dancing and having a conversation with a masked Benedick. It is not clear, and remains the decision of the reader whether Beatrice truly knows that she is speaking with Benedick. She goes on to describe him as â€Å"the prince’s jester, a very dull fool†. As there is a sense of possession â€Å"the prince’s jester†, it creates the impression that Beatrice sees Benedick as nothing more than a puppet. When speaking with Claudio, Benedick makes it clear he was shocked by this: â€Å"Lady Beatrice should know me, and not know me: the prince’s fool! Hah†¦Ã¢â‚¬  †¦ â€Å"Every word stabs†. Here, Shakespeare has used a dramatic device, ie: the masqued ball, and the inherent identity confusion to make Benedick believe that Beatrice had all along intended to speak ill of him. It is for this reason that I believe that Beatrice knew full well that she was indeed speaking to Benedick. In Act Two, Scene Three, Benedick is successful tricked into thinking that Beatrice is in love with him. However, this trick has not yet been carried out on Beatrice. In the garden, Beatrice approaches Benedick and announces â€Å"I do spy some marks of love in her†. This is ironic because there are none. The passion she shows is one of hate for what she is about to say: â€Å"Against my will I am sent to bid you come in to dinner†. When asked by Benedick if she â€Å"takes pleasure in the message†, she says â€Å"Yea, just so much as you may take upon a knife’s point† (ie: not at all). Benedick has got completely the wrong end of the stick in his soliloquy: â€Å"there’s a double meaning in that†, and thinks that she does not want him to come in, but instead to stay out in the garden with her. Hence, his going inside would not be a pleasurable message for her. However, this is an example of dramatic irony as we know this is not the case at all. Shakespeare points out the truth beneath the characters surface, as well as using language as his tool to juxtapose these feelings, in effect, switching the meaning around so that the connotations are what illuminate the truth. He is also able to use a technique to capture the truth beneath the surface of the characters. Everything that is spoken by the characters seems to have a deeper or double meaning under the words. In Act Four, Scene One, Benedick declares his love for Beatrice. He does this so she will call upon him to right Hero from the terrible injustice that recently occurred at the wedding scene. He asks her if it seems strange that he loves her. This is again an example of dramatic irony, because the audience knows that it’s not strange – she knows already that he loves her. Beatrice, usually extremely able to articulate herself is strangely not able to here. The use of commas and colons break up the following speech, as she is overcome by fierce emotions. She is therefore not able to articulate anything but the fact that she feels sorry for her poor cousin who has been wronged. â€Å"It were as possible for me to say, I loved nothing so well as you, but believe me not, and yet I lie not, I confess nothing, nor I deny nothing. † Beatrice, therefore equivocates here being deliberately ambiguous or unclear in order to mislead or withhold information, ie: her love for Benedick. This is particularly emphasised by the long sentence length. Benedick’s immediate rejection at the idea of killing Claudio â€Å"Not for the wide world! † elicits anger, and impatience in Beatrice who doesn’t wish to converse with Benedick any longer. After much deliberation, knowing it will please Beatrice, Benedick agrees to â€Å"use† his hand â€Å"in some other way than swearing by it†. In other words, he has agreed to engage Claudio in a duel. Beatrice’s reason for wanting him killed is that â€Å"he is now as valiant as Hercules†. This allusion to Hercules implies that Claudio has become too boastful, too big for his boots. In conclusion, it’s clear to see how the attitude between the two changes, and the relationship progresses. Shakespeare employs the use of juxtaposition to mask true feelings. The best illustration of this juxtaposition masking is of the relationship between Beatrice and Benedick. Their incessant banter and wit-battles mask the true feelings each has for the other.

Wednesday, January 22, 2020

The Art of Hospitality - The Greeks and the Odyssey Essay -- essays re

Each culture treats strangers and guests with distinct differences from every other culture. One of the most hospitable cultures was that of the ancient Greeks, exemplified in Homer’s The Odyssey by both gracious hosts and guests. In Greece and The Odyssey, not only was good hospitality etiquette expected, but the added pressure from the conviction that the gods would punish the host if guests were treated without respect (whether they were poor or rich) further compelled excellent manners. The Odyssey illustrates the proper etiquette when dealing with guests.   Ã‚  Ã‚  Ã‚  Ã‚  Whether friend or stranger, when a guest of any sort arrived the host would greet them and offer them food and drink before any further conversation or engagement of any kind would occur. If the host had considerable wealth, a maid would bring out a basin of water in a â€Å"graceful golden pitcher† to rinse their hands, seen in Book I (line 160) when Athena visits Telemachus, again in Book 4 (60) when Menelaus takes Telemachus and Athena as guests, and also in Book 7 when the King of the Phaeacians greets Odysseus. Appetizers, meats, and wines are all brought out and laid before the guest, as their coming is seen as a celebration, as seen when Telemachus is hosting Athena, â€Å"A staid housekeeper brought on bread to serve them,/appetizers aplenty too, lavishwith her bounty./A carver lifted platters of meat toward them,/meats of every sort†¦Ã¢â‚¬  (Book 1, 163-166) On several occasions, a particularly h...

Tuesday, January 14, 2020

Philosophy- Rationalism and Empiricism Essay

Immanuel Kant found the way to put subjective and objective perspectives together as part of the human transcendental structure. The idea of subjective truth comes from Rene Descartes and his vision on rationalism based on innate ideas that allow people to appreciate what they see in order to reach a conclusion. Secondly, we have John Locke’s idea of objective truth based on a blank state of mind and a phenomenon that allows people to appreciate their reality by relying on experiences with any object, human, place or something else. Descartes and Locke rejected the possibility of bringing these two elements together for a better understanding. Since both focused on what people see through their eyes and their mind process, without considering the importance of the physical nature, Kant argued that they both should work together in order to understand the physical nature of different things. Kant focused on the conscious mental state which explains the importance of both of these elements together. Thomas Nagel highlighted Kant’s perspective and argued that subjective phenomenon’s are linked to single points of view that the objective theory will never be able to abandon. If a person separates them from each other there will be no idea of how something could be true. Since we live in a society with different perspectives, truth is what everyone looks for in order to draw their own conclusions. Nagel argued that having personal experience is enough to have the necessary material for imagination. For example, Nagel offered a metaphor about a bat, in which he suggest the use of imagination to ask ourselves what would be like for us to behave as the bat behaves. It’s clear that Nagel relies on Aristotle’s vision of reality because his realism on subjectivity creates a belief in the existence of facts over the concepts that we create as humans. Although there are facts that people will never comprehend, there is a possibility that through a combination of both people can find the truth of things that they can’t understand. According to Nagel, there is no difference between mental and physical events because there are experiences in which people process things to reach a conclusion. People have the ability to perceive and behave and they both come along together. On the other side, Donald Davidson argued that mental events have physical causes and that we have reason to believe this even though people don’t know if there is a general psychophysical theory. But, what about non-intentional events? Nagel argued that his argument only applies to intentional mental events without considering that as humans have reasons to believe that sensations are physical processes as well. Physical processes don’t have the necessity to look for answers of how something happened. Finally, Kant’s theory argues that our experiences are significant since they can’t be the same because people’s different states of mind, but as human beings it’s important to be subjective to appreciate different phenomenon’s around them. Kant’s made these two perspectives dependent from each other, without leaving any gap in which they both could separate by any chance.