Saturday, October 12, 2019

Free College Essays - Lessons Learned in Moby Dick :: Moby Dick Essays

There is much to be learned from the theme of the novel Moby-Dick.   As in any book, there is a message or a sort of subliminal â€Å"moral of the story† type lesson you can learn from Moby-Dick.   The novel, Moby-Dick, can teach you many things if you can remain focussed long enough.   However, the most prominent lesson that can be learned from the work is not that complicated and rather apparent.   This lesson can be summed up in one sentence; don’t become to focussed and obsessed with one goal to the point that you exclude the more important things in life.   This lesson is represented with Ahab’s peculiar obsession with hunting and killing a whale.   By setting this as his most significant goal in life, he begins to ignore more important things such as the lives of his crewmen, and eventually his own life.   This mistake wound Ahab up dead. Although the novel isn’t trying to say that if you over obsess with a matter or issue in your life that you will die, it’s simply trying to say that if you put minor self-centered goals before what’s most important, you will more than likely regret it.   This lesson is very true, and can be related to real life instances when compared to examples such as government dictatorships or social relationships.   For instance, many dictatorships are lead by one person with overwhelming power over his or her nation.   This, in most cases, ends up with a greedy and uncontrollable leader who leads their country to certain downfall.   Also, on a much more common scale, some relationships can symbolize this lesson.   For example, say one person is very much so attracted to another.

Friday, October 11, 2019

A Contribution to the Economy Turning Into a Life Threatening Situation

In this growing economy, where people are involved in a rat race for survival, there are times we do not realize that the deeds we are doing for the betterment of the economy could affect our lives. An example of such a scenario could be the toxic secretion of a leather industry into the sea.Of course when we look at the leather factory, we consider that the leather that is being created in the factory will be further used in making goods such as shoes and bags which can then be exported to other countries for sale.Such a description for the factory would mean that the factory itself has a fine intention of building the economy as a whole. However, what one does not realize is that the toxic waste which is emanating from the factory into the sea could cause a lot of diseases for those living in the vicinity.SolutionIn order to overcome this life threatening scenario into a less critical one would be by considering negotiation or mediation in the legal terms where the two parties may get together to reach an agreement. The only solution that may come in mind when in such a situation is to talk to the owner of the factory in order to convince about the difficulties being faced by the citizens. The citizens may also get together to from a public representation against the intoxication and approach the law making aspect of the country if a mutual agreement cannot be achieved between the two.ReferencesInternet. (2007). How Laws Are Made. Retrieved on January 25, 2009 from: http://bensguide.gpo.gov/9-12/lawmaking/index.html New York State Archives. Environmental Affairs in New York State: An Historical Overview. Retrieved on January 25, 2009 from: http://www.archives.nysed.gov/a/research/res_topics_env_hist_machine_toxic.shtml The Internet Movie Database. (2009). A Civil Action. Retrieved on January 25, 2009 from: http://www.imdb.com/title/tt0120633/plotsummary

Thursday, October 10, 2019

Compare the ways the poems/poet present injustice Essay

The two poems I have chosen are Limbo by Edward Kamau Brathuaite and Nothing’s Changed by Tatamkhula Afrika. This poem tells the story of slavery in a rhyming, rhythmic dance. It is either Heaven or Hell, so if you’re in limbo you are in between. It is about the actions of the dance, and the history of a people which is being enacted. Going down and under the limbo stick is likened to the slaves’ going down into the hold of the ship, which carries them into slavery. Nothing’s Changed is about the destruction of district 6, where people of all colours and beliefs lived together. However after the apartheid it was declared a ‘whites-only’ area. I chose these 2 poems as they are both injustice and tell in 2 different scenarios. Three techniques I chose to compare are structure, imagery and juxtaposition The structure for Limbo is that there are no punctuation until the last sentence where there is a full stop to end it. This is because it is symbolic to the slaves’ continuous suffering. Also something that is very effective and which is not recognised quickly is that the poem begins with a capital letter, to show the journey has begun and ends with a full stop to show the journey has ended. This is a great technique used to show injustice. Nothing’s changed structure is the poem is set out in six stanzas, each of eight fairly short lines. The title and the last line of poem are the same. The poet is trying to emphasise the same old District Six he returns to still hasn’t changed. He is saying even though that the apartheid has ended in reality it still very much exists. Yes the signs have gone but he feels there are still the same attitudes, social divisions and tensions. The way he has written give you a clear understanding so in a way it shows injustice is in the poem. Imagery presents injustice in the poem, it says â€Å"limbo like me† so either join me in the dance or I am in limbo. This gives you imagery. Also â€Å"Long dark deck is the silence in front of me† â€Å"stick is the whip/ and the dark deck is slavery† gives you imagery to. It shows they are on a boat so there must be water around and it is silent. The word slavery makes you think of an image. Also you picture a boat full of slaves on the water going somewhere and it is full of silence. Nothing Changed is ‘I press my nose, to the clear panes, know, before I see them.’ You can picture the poet pressing his nose onto the window and he can see that the place was once theirs but now it belongs to white people. It’s like there is a barrier that blocks his path into going there. This definitely presents injustice as he is not able to go there because of his colour. Both these poems give vivid pictures when you read them. Juxtaposition also presents injustice in both these poems. In Limbo there is good and bad, as in heaven and hell in the poem. It first starts sad and then happy so â€Å"stick is the whip and the dark deck is slavery† then later on â€Å"up up up up / and the music is saving† â€Å"The drum stick knock / and the darkness is over me† it is like the bad has gone and the good is here, everyone can be happy. In Nothing’s Changed it shows black and white people, being separate. â€Å"new, up-market, haute cuisine, guard at the gatepost, whites only inn† then to â€Å"Down the road, working man’s cafe sells bunny chows. Comparing the 2different stores the rich one for white only and the poor to black people.

Wednesday, October 9, 2019

Calculating Distance Between Tow Points on Earth Surface Using Gps Coordinates

DISTANCE CALCULATION Because of the near-spherical shape of the Earth (technically an oblate spheroid) , calculating an accurate distance between two points requires the use of spherical geometry and trigonometric math functions. However, you can calculate an approximate distance using much simpler math functions. For many applications the approximate distance calculation provides sufficient accuracy with much less complexity. The following approximate distance calculations are relatively simple, but can produce distance errors of 10 percent of more. These approximate calculations are performed using latitude and longitude values in degrees. The first approximation requires only simple math functions: Approximate distance in miles: sqrt(x * x + y * y) where x = 69. 1 * (lat2 lat1) and y = 53. 0 * (lon2 lon1) You can improve the accuracy of this approximate distance calculation by adding the cosine math function Improved approximate distance in miles: sqrt(x * x + y * y) where x = 69. 1 * (lat2 lat1) and y = 69. 1 * (lon2 lon1) * cos(lat1/57. 3) If you need greater accuracy, you can use the Great Circle Distance Formula. This formula requires use of spherical geometry and a high level of floating point mathematical accuracy about 15 digits of accuracy (sometimes called double-precision). In order to use this formula properly make sure your software application or programming language is capable of double-precision floating point calculations. In addition, the trig math functions used in this formula require conversion of the latitude and longitude values from decimal degrees to radians. To convert latitude or longitude from decimal degrees to radians, divide the latitude and longitude values in this database by 180/pi, or approximately 57. 9577951. The radius of the Earth is assumed to be 6,378. 8 kilometers, or 3,963. 0 miles. If you convert all latitude and longitude values in the database to radians before the calculation, use this equation: Great Circle Distance Formula using radians: 3963. 0 * arccos[sin(lat1) * sin(lat2) + cos(lat1) * cos(lat2) * cos(lon2 lon1)] If you do NOT first convert th e latitude and longitude values in the database to radians, you must include the degrees-to-radians conversion in the calculation. Substituting degrees for radians, the formula becomes: Great Circle Distance Formula using decimal degrees 963. 0 * arccos[sin(lat1/57. 2958) * sin(lat2/57. 2958) + cos(lat1/57. 2958) * cos(lat2/57. 2958) * cos(lon2/57. 2958 -lon1/57. 2958)] OR r * acos[sin(lat1) * sin(lat2) + cos(lat1) * cos(lat2) * cos(lon2 lon1)] Where r is the radius of the earth in whatever units you desire. r=3437. 74677 (nautical miles) r=6378. 7 (kilometers) r=3963. 0 (statute miles) If the software application or programming language you are using has no arccosine function, you can calculate the same result using the arctangent function, which most applications and languages do support. Use the following equation: 3963. 0 * arctan[sqrt(1-x^2)/x] where x = [sin(lat1/57. 2958) * sin(lat2/57. 2958)] + [cos(lat1/57. 2958) * cos(lat2/57. 2958) * cos(lon2/57. 2958 lon1/57. 2958)] If your distance calculations produce wildly incorrect results, check for these possible problems: 1. Did you convert the latitude and longitude values from degrees to radians? Trigonometric math functions such as sine and cosine normally require conversion of degrees to radians, as described above. 2. Are the equations implemented correctly with necessary parentheses? Remember the old math precedence rule MDAS multiply, divide, add, subtract. 3. Does your software application or programming language provide sufficient mathematical accuracy? For best results, you need about 15 digits of accuracy. 4. When you imported the data from the text files your latitude/longitude values may have been truncated. Make sure you did not lose any of the digits to the right of the decimal point during import. 5. Have you lost any precision of your decimal values due to rounding during importing or calling custom math functions

Tuesday, October 8, 2019

Some Reflections on the Reading of Statutes Essay

Some Reflections on the Reading of Statutes - Essay Example Secondly, the plain meaning rule states â€Å"the language of the statute is clear, there is no need to look outside the statute to its legislative history in order to ascertain the statute’s meaning†. I agree with Felix Frankfurter that the language of the statute should be the starting point for identifying the meaning of the statute. Reading the text closely is the starting point for properly understanding and interpreting a statute. However, sometimes the initial understanding may be incorrect thus rereading the statute is a sure way of understanding its meaning. Thirdly, the legislative process has numerous components as well as actors participating in each of these components. Thus, it is almost impossible to identify the intent as well as the true sense of the words used in constructing a statute. Bills have multiple sponsors with regards to legislators. The bill is then introduced to a committee that has multiple employees who assist in producing a report on the bill. Finally, the bill is passed by the legislature and it is clear that it is almost impossible to discern the meaning of the bill at this point. Even though the passage of a bill requires consensus using a voting system, legislators vote for different reasons. Therefore, it is possible that legislators share different meanings of the bill but have the same interests. Thus, I would suggest that judicial construction should involve the incorporation of a classification statute or a general provision and withhold judges from performing construction.

Monday, October 7, 2019

The Innovative Entrepreneur Coursework Example | Topics and Well Written Essays - 250 words

The Innovative Entrepreneur - Coursework Example An example of disruptive innovation was the iPod. I admired the product because it changed how people listen and buy music (Kahney, 2011). I decided that this was an innovation because it created a new platform to get access to music which did not exist before. Starbuck recent market development strategy of â€Å"Skinny Lattes† and low fat/calorie syrup was innovative. I admired the innovation because it was able to address the increasing change in consumption behavior as more people become concerned about their health. This was innovative because it was able to create a product that fits human health through reducing the level of calories. I decided that the idea was innovative because it was able to address an existing problem of obesity (Starbucks Corporation, 2014). However, the current innovative idea might affect the consumption of other foods. This might affect the company’s performance in the market. The change of PayPal business model from a cryptography company to an online money transfer company was innovative. Currently, PayPal enables people to transfer money online from one part of the world to another within a short time. I admire this innovative idea because it was able to identify a gap that existed in the market, an aspect that led to creation of one of the most successful company in the world (Cohan, 2013). However, the disadvantage of the move is that it affected the original idea that led to establishment of the company. Kahney,  L. (2011, October 22). An Illustrated History of the iPod And Its Massive Impact [iPod 10th Anniversary] | Cult of Mac. Retrieved  May  27, 2014, from

Sunday, October 6, 2019

Recruitment of Employees in the Field of Property Market of Hong Kong Research Proposal

Recruitment of Employees in the Field of Property Market of Hong Kong - Research Proposal Example The growth in the world economy has created opportunities for many people around the world thus reducing the gap between higher and middle class. Increase in earning capabilities gave rise to spending capabilities resulting in the real estate boom which was also the cause of latest economic recession during 2008. The boom in real estate was seen all over the world which pumped the stock market prices of many companies involved and manufacturing products required for construction. The strengthening economic relations with the Mainland have maintained Hong Kong’s status as an international financial center and a regional business hub. The overall residential property market staged a strong rebound in 2009 and is continuing in 2010 (Hong Kong Property Market Report 2010). In view of the economic strengthening of Hong Kong, it is necessary that human resource is managed effectively. It is evident from the report that property market is booming once again after the looming recessio n and the boom also creates employment opportunities. Human resource management is important in property market because efficient employees need to be recruited and appointed in a suitable position so as to gain the competitive edge over the rivals and at the same time it is also necessary to retain the employees by implementing various promotional schemes. The 2007 credit crisis engulfed the whole world into its ambit badly affecting the real estate boom. However, the recent report by Global Property Guide (1) in its Mid-2010 Property Recommendation mentioned that the world’s property markets are recovering slowly and steadily. According to the Global Property Guide’s survey, it is revealed from the official housing price statistics that 19 out of 36 countries experienced house price increase during the year to end Q1 2010.  Ã‚