The winter of 1620-1621 was a very disturbing time for the Pilgrims at Plymouth. It can be said that nothing sustained the Pilgrims during this time because a majority of them died from illness during what has been dubbed the "starving time." Pilgrims that survived this winter did so by chance and through their powerful faith in their destiny and their God. In the spring, the natives in the area made contact with the Pilgrims. Having been decimated by a deadly plague themselves, the Native Americans came in peace. One of them, the last surviving member of the Patuxet, was extremely helpful to the survival of the Plymouth Colony. Having been abducted and brought to Spain, Squanto escaped and was hired by an English company, where he learned to speak the language. He returned to the area of New England in 1618. After meeting the Pilgrims, he taught them how to sustain themselves with agriculture (corn) and fishing. He showed them the lay of the land and acted as a mediator between the Europeans and the Indians. Had it not been for the help of Squanto, it is unlikely that the Pilgrims would have survived.
As a software engineer, I need to sometimes describe a piece of code as something that lacks performance or was not written with performance in mind. Example: This kind of coding style leads to unmaintainable and unperformant code. Based on my Google searches, this isn't a real word. What is the correct way to describe this? EDIT My usage of "performance" here is in regard to speed and efficiency. For example, the better the performance of code the faster the application runs. My question and example target the negative definition, which is in reference to preventing inefficient coding practices. Answer This kind of coding style leads to unmaintainable and unperformant code. In my opinion, reads more easily as: This coding style leads to unmaintainable and poorly performing code. The key to well-written documentation and reports lies in ease of understanding. Adding poorly understood words such as performant decreases that ease. In addressing the use of such a poorly ...
Comments
Post a Comment