You use so much open source software–often indirectly–that it’s almost impossible to avoid every asshole with an opinion.
That said, there is one dev where I disagreed with his actions so much that I actively avoid his stuff. It’s not really political, but he’s one of those devs who can do incredible work on his own, but has the social skills of a moldy sandwich. You may have used his work in the past indirectly, as his event library (libev) used to be the basis for Node.js. (The Node.js devs moved elsewhere many years ago due to technical issues such as Windows compatibility).
Anyways, he had a Perl event library known as AnyEvent. It has a bit of a weird, inside-out interface compared to most other event libs, but it works really well once you get the hang of it. The problem that came up was that he didn’t like the way a certain extension module used AnyEvent. He threw a tantrum and had AnyEvent detect if that extension was loaded, and die() with a big error message about his personal opinion on the matter. This broke perfectly functioning systems when they upgraded AnyEvent.
That’s when I stopped using his stuff and urged my coworkers to do the same. Can’t risk that time bomb going off. Wasn’t a small matter, either, as he also wrote the most common way to parse JSON on Perl.
You use so much open source software–often indirectly–that it’s almost impossible to avoid every asshole with an opinion.
That said, there is one dev where I disagreed with his actions so much that I actively avoid his stuff. It’s not really political, but he’s one of those devs who can do incredible work on his own, but has the social skills of a moldy sandwich. You may have used his work in the past indirectly, as his event library (libev) used to be the basis for Node.js. (The Node.js devs moved elsewhere many years ago due to technical issues such as Windows compatibility).
Anyways, he had a Perl event library known as AnyEvent. It has a bit of a weird, inside-out interface compared to most other event libs, but it works really well once you get the hang of it. The problem that came up was that he didn’t like the way a certain extension module used AnyEvent. He threw a tantrum and had AnyEvent detect if that extension was loaded, and
die()
with a big error message about his personal opinion on the matter. This broke perfectly functioning systems when they upgraded AnyEvent.That’s when I stopped using his stuff and urged my coworkers to do the same. Can’t risk that time bomb going off. Wasn’t a small matter, either, as he also wrote the most common way to parse JSON on Perl.