(no title)
id00 | 7 months ago
I don't know this particular project but seeing threads like this kill any motivation to contribute.
id00 | 7 months ago
I don't know this particular project but seeing threads like this kill any motivation to contribute.
csmantle|7 months ago
Hilift|7 months ago
unknown|7 months ago
[deleted]
repeekad|7 months ago
saidinesh5|7 months ago
"We are a fast moving start up (even at 3-4 years old), we believe in moving fast and breaking things ... That's why we don't do code reviews or unit tests.. we just edit live running code and restart the server"
Vs
"This one line change needs 4 -5 commits to add feature flags,unit tests, integration tests - all to be reviewed by different teams and wait 1-2 months to be deployed properly to production"
mgraczyk|7 months ago
id00|7 months ago
motorest|7 months ago
I feel this is a needlessly obtuse statement. I'll explain you why, as I've worked professionally with frontend development. From your comment it seems you don't have that type of context.
The text that is expected to feature in a UI element is a critical factor in cross cutting concerns such as product management and UX design, and it involves things like internationalization and accessibility support. This means that if you change a line of text, it needs to be translated to all supported languages, and the translation needs to meet usability and GUI requirements. This check needs to be done in each and every single locale supported.
I can give you a very concrete example. Once I was tasked with changing a single line of text in a button featured in a dialog. It turns out the french translation ended up being too long that forced line breaks. The UI framework didn't handled those line breaks well and reflowed the whole UI, causing a huge mess. This required new translation requests, but it turned out that the new translations were too vague and ambiguous. Product Managers got involved because the french translation resulted in poor user experience. Ultimately the whole dialog was redesigned.
But to you it's just a text on a single button, isn't it?