(no title)
tyrion | 4 years ago
However, you are helping push the web become an increasingly centralized place, controlled by just a few entities, with interests which are very different from yours.
You may think that there is no harm in doing so. Most people use Chrome anyway. And what difference can one more web app make?
However, it is exactly this laziness by skilled developers, who are the only that understand the problem, which brought us to the current situation. There is no way to fix this problem, if the people that understand it do not take a stand.
Next time that your manager asks you if you can have that sweet feature, instead of saying "sure, we just need to drop support for Firefox", please consider trying to explain what are the consequences in the long term.
I know this isn't easy for many people, which do not feel comfortable questioning orders or plans. However, this is our responsibility. Nobody else is going to care, if we do not care.
lxgr|4 years ago
Yes, many pages support only Chrome for no good reason at all, but in this instance, the ball is 100% with Mozilla.
Jiocus|4 years ago
unknown|4 years ago
[deleted]
sam_goody|4 years ago
If we could create an feeling that companies that claim to be developer friendly make sure that FF is also compatible, it would be a huge win for all involved.
whywhywhywhy|4 years ago
This idea that only Chrome matters is absolutely coming from the bottom up and when you point out something broken in Safari the first response from them is "Does it work in Chrome?" before they even look at it because they themselves don't even test in a second browser.
ballenf|4 years ago
There's an annoying assumption from other devs that I must be using Safari out of ignorance. They quickly get over it, but it's a problematic first impression thing when working with new teams.
lotsofpulp|4 years ago
I would have thought at least iOS Safari would be a major consideration for anyone due to the ubiquity of iOS devices.
musicale|4 years ago
I suppose we're back in the golden era of "Works Best With Internet Explorer."
olliej|4 years ago
Induane|4 years ago
Safari is a different beast because I don't have a Mac and it's support for a lot of standards is pretty dismal. It's like the IE6 of browsers these days.
I keep the JS simple though and for CSS I keep around a few handy LESS functions so I can get some basic stuff on crap browsers. Stuff like:
.opacity(@default, @percent) { -webkit-opacity: @default; -khtml-opacity: @default; -moz-opacity: @default; -ms-opacity: @default; -o-opacity: @default; opacity: @default; // ms-filter *SHOULD* work on IE8 & 9 but ... doesn't always // for me? WTF... anyway (filter should also work). This // should be listed before filter to be safe -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=@percent)"; filter: alpha(opacity=@percent); /* support: IE8 oh god we're all gonna die*/ }
or
.box-shadow(@value) { -webkit-box-shadow: @value; -khtml-box-shadow: @value; -moz-box-shadow: @value; -ms-box-shadow: @value; -o-box-shadow: @value; box-shadow: @value; }
This way I don't rely on some framework like Bootstrap, and I can write fairly simple stylesheets. I used to transpile compliant and legacy sheets and serve different urls depending on user agent strings but that didn't work well and was generally crap so - one it is.
Don't worry, when I transpile I strip my unprofessional comments.
aseipp|4 years ago
If the future of the web relies on developers groveling at the feet of a manager, then there's no fight or discussion to be had, because the web has already unequivocally lost. The only thing that's happening is a discussion about whether to parade on the corpse or not.
rchaud|4 years ago
I see a lot of this 'devs v suits' type language used on HN, with the implication being that the developers are principled stewards of technology suffering under the cosh of KPI-obsessed MBAs.
What causes this? The majority of product managers I've met have technical backgrounds, and they have also had to cut corners to keep their product roadmaps on track.
hiccuphippo|4 years ago
spankalee|4 years ago
Using features that not all browsers have implemented _yet_ isn't always bad for the open web. If the feature is important, the other browsers prioritize it.
EveYoung|4 years ago
sfink|4 years ago
moron4hire|4 years ago
That's the problem. Firefox isn't keeping up with standards.
sfink|4 years ago
And to be clear, Firefox is behind on the relevant standard here. Though even then, it's more nuanced than that: Mozilla is ok with prototyping it even though they would prefer for it to use a more secure mechanism -- see https://mozilla.github.io/standards-positions/#webrtc-insert...
From what I can tell, Mozilla is in the place of playing catch-up because the other players chose to forge ahead without resolving their objections.
[Ok, "our objections". I work for Mozilla. Not in a relevant area until recently, but it looks like I will be doing some very relevant work starting as soon as I close this damn tab.]
burnte|4 years ago
efields|4 years ago
I don’t mean that as an insult; I’m happy there are folks like you with passion in this space.
If you’re old enough, you still wake up in the middle of the night sweating about IE 6 or 7 bugs that HAD to be solved with brute force even though the feature worked just fine in Firefox and Chrome. After years of struggle, most of the world uses a very compliant and continuously upgraded browser.
Please… take the win.
sfink|4 years ago
ok_coo|4 years ago
I know we don't want another situation of one browser dominating the web but Chrome (and Firefox) improved building for the web so much. I don't know if people forget or weren't around for the IE days but it was absolutely terrible and a life-waste.
ptx|4 years ago
syshum|4 years ago
hartator|4 years ago
Does it? Open source standardization is a good thing. Still not sure why html/css/js engine should be the exception. No one is calling for competition for QR code, torrent protocol, or the other billion of very dominant open source projects.
swsieber|4 years ago
cpeterso|4 years ago
homarp|4 years ago
cblconfederate|4 years ago
px43|4 years ago
dkonofalski|4 years ago
unknown_error|4 years ago
If Mozilla moved to some Webkit/Blink/Chromium derivative like everyone else, the world could standardize on that renderer and they are still free to "innovate" on the browser UI/chrome surrounding that engine and differentiate themselves that way.
As it is, Gecko adds nothing to the web ecosystem anymore and wastes everyone's time.
gbromios|4 years ago
my webrtc-based video conference app doesn't currently support ff and never will unless compatibility with chrome's implementation comes around. My manager would have me committed if I tried to pull that shit, and I'm already notorious for refusing to do things on principle. Suggesting that we don't support firefox because I'm lazy? No, vendors force us to choose, and if the alternative is NO video? Here on earth, where we're trying to cultivate a competitive advantage and survive as a business venture, that's an incredibly easy choice.
edit: other commenters have made the point much more elegantly than I but I leave my words here as a testament to how infuriated I am at this condescending suggestion.
ivanche|4 years ago
antipaul|4 years ago
unyttigfjelltol|4 years ago
I configure FF to use a different user agent, as a security measure. It's a short hop from browsing the Internet with FF to disabiling browser identification.