Nothing But the Truth by Avi is a book written from several points of view, where each person tells a different "truth." The main character, Philip, decides his English teacher, Miss Narwin, does not like him because she gives him poor grades and has high expectations for his work, so in trying to get out of her class, he disrupts her homeroom class by humming the "National Anthem." The rules clearly state that students should "stand at respectful, silent attention" during the playing of the anthem, but when Miss Narwin sends Philip to the assistant principal's office for being disruptive, Phil tells the AP that Miss Narwin just does not like him. Later, this becomes fodder for the newspaper, which accuses Miss Narwin of stifling Philip's patriotism. Miss Narwin never really follows up by calling Philip's parents or getting her truth across to the newspaper reporter, and in the end, she resigns and Philip does not get to run track due to his grades. He ends up leaving the school. Philip starts the ball rolling, causing his situation, as well as Miss Narwin's, to become ones he can't turn back from. Everyone loses because the whole truth never comes out.
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