Jargon: postfix
As a guild of craftsmen, we software developers, should be aware of our jargon when talking to others. The jargon can distract from the intention you're trying to convey. One term that I accidentally stumbled upon was 'postfix'. I was creating a method that concatenated prefix + term + postfix. While writing the code I started wondering if I should have used the term 'suffix' instead of 'postfix'.
[JARGON++]
Probably I used the term post(fix), because it's a great contrast to pre. Still I was dumbfounded to discover that postfix is a term specifically originating from our field of computer programming (e.g. postfix operators: expr++ and expr-- ). Suffix on the other hand originated in linguistics, a long time ago.
So long story short; don't start an argument with that linguist machine learning colleague of yours, you probably both mean the same thing.
Sources:
https://english.stackexchange.com/questions/81263/postfix-or-suffix
https://www.merriam-webster.com/dictionary/postfix
https://docs.oracle.com/javase/tutorial/java/nutsandbolts/operators.html
[JARGON++]
Probably I used the term post(fix), because it's a great contrast to pre. Still I was dumbfounded to discover that postfix is a term specifically originating from our field of computer programming (e.g. postfix operators: expr++ and expr-- ). Suffix on the other hand originated in linguistics, a long time ago.
So long story short; don't start an argument with that linguist machine learning colleague of yours, you probably both mean the same thing.
Sources:
https://english.stackexchange.com/questions/81263/postfix-or-suffix
https://www.merriam-webster.com/dictionary/postfix
https://docs.oracle.com/javase/tutorial/java/nutsandbolts/operators.html
Comments
Post a Comment