Hector Hugh Munro, better known by his pen-name Saki, was the author of The Open Window. Saki was born in present-day Myanmar in 1870, and in his early childhood he was sent to live with family in England. He intended to follow in his father's footsteps and become a police officer in Burma, but this was not to be. When he contracted malaria, he was too ill to work and was sent back to England. He began his writing career as a journalist and published his first book in 1900. He spent some time traveling and writing as a foreign affairs correspondent but settled in London in 1908. From here, he penned a number of witty short stories, including The Open Window. Saki was a gay man but had to keep his romantic life very private because, at the time, homosexual relationships were illegal in England. He served in the First World War, and was killed by a German sniper on the 14th of November, 1916.
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