Apartheid, which means "being apart" in Afrikaans, was the system of racial separation that was implemented in South Africa after the Second World War (although it had roots in the earlier twentieth century.) Like segregation in the American South, it was cast as an enlightened measure to keep mutually antagonistic races separate, but it was, as was always clear, about maintaining white supremacy in the country. It outlawed marriage and sex between the races, and actually forced black farmers off of lands designated for whites. Apartheid was enforced by state-implemented violence, with white policemen violently putting down peaceful protests against the institution, especially beginning in the 1970s. This system, which finally came to an end in 1994 under the leadership of F.W. de Klerk, was consistently challenged by black South Africans led by Nelson Mandela (who spent decades in prison for his efforts) and others. It was among the most flagrantly racist legal and social systems to exist anywhere in the world in the late twentieth century.
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