Software evolves, and so does culture.
TL;DR: Avoid old terms like whitelists, blacklists, master, etc.
Problems
Racial Connotations
Exclusionary Language
Diverse Perspectives
Solutions
- Use alternative terminology
Context
Language evolves, and technical terms should follow it.
You can change racial names with alternative terminology:
Allowlist: Replace "whitelist" with "allowlist." This term maintains the intended meaning without racial connotations.
Denylist: Substitute "blacklist" with "denylist." This term conveys the same concept without perpetuating negative racial associations.
Permit List and Block List: Another option is to use "permit list" in place of "whitelist" and "block list" instead of "blacklist."
Main branches: You can replace "master" with "main".
Master/Slave: You can replace them with Primary/Replica/Mirror etc.
Sample Code
Wrong
val whitelist = listOf("Barbie", "Ken")
val blacklist = listOf("Midge")
val gitCommand = "git pull origin master"
val process = Runtime.getRuntime().exec(gitCommand)
Right
val allowlist = listOf("Barbie", "Ken")
val denylist = listOf("Midge")
val gitCommand = "git pull origin main"
val process = Runtime.getRuntime().exec(gitCommand)
Detection
[X] Semi-Automatic
You can set up a denylist (not a blacklist) of terms you need to double-check for accuracy.
Exceptions
- References to old manuals
Tags
- Naming
Conclusion
Just as we refactor code to enhance its quality, we should also refactor our language and terminology to promote inclusivity and diversity.
By eliminating racially insensitive terms like "whitelist" and "blacklist" in favor of more inclusive alternatives, we contribute to a more equitable and welcoming tech industry.
Let's embrace change and create a coding environment where everyone feels valued, regardless of their background or ethnicity.
Relations
More Info
Prevalence of racist language in discussions of predatory publishing
Disclaimer
Code Smells are my opinion.
Credits
Photo by Aarón Blanco Tejedor on Unsplash
An ultimate joint challenge for the biological and the computational sciences is the understanding of the mechanisms of the human brain, and its relationship with the human mind.
Tony Hoare
Software Engineering Great Quotes
Maxi Contieri ・ Dec 28 '20
This article is part of the CodeSmell Series.
Top comments (5)
I respect your opinion. Let's hear what other people have to say about it
Okay, this is good.
What do you suggest for the "slave"? You know, master-slave is heavily used in DB replication.
I think Mirror/Replica/Secondary are better names.
Will add them to the article as well