Live data from Hacker News

Falsehoods programmers believe about video

haasn.xyz

81–90 of 139 posts

Re: Falsehoods programmers believe about video

#82
post #79

Earlier quoted context omitted.

AFAIK, The YouTube implementation does all of those. Here is a demo: https://www.youtube.com/watch?v=BbqPe-IceP4 Please do not spread falsehoods. Disclamer: I work at YouTube.

http://take.ms/fwwhx That is frustratingly poor contrast.

This might be because you might have changed your settings for CC in the past.

Here is what mine look like http://imgur.com/HLIVXQ6

You can click settings again to change font sizes, font family, colors, etc.

Re: Falsehoods programmers believe about video

#83
post #62

Earlier quoted context omitted.

But sometimes your government expects names to be broken into given and family names (the US, Japan, and China all seem to make this assumption -- every government form I've seen from those countries wants your name fully broken out). I've no direct experience with, say, Russian or Latin American governments, but cultures that use explicit patronymic or matronymic names might expect that broken out as well. If you ev…

I'm explicitly disregarding government websites here, since the government has a legitimate reason to care about my full name (and gets to define what a "legal" name means), and also 99% of the websites that I sign up for are unrelated to the government. There's no reason for a social network to report the names of all its users to a government agency automatically, and I'm skeptical that even my bank would have such…

I don't mean reporting all the names, but for example if you ever transmit payments there is a KYC process, and if you are a bank you must report any suspicious money laundering activity.

At the end of the day there are cultural conventions around names, and various agencies use them. I don't see why software should be explicitly culturally neutral, unless your audience is explicitly a global one (and even then, I think localization is preferable to just sticking names into a single field).

Re: Falsehoods programmers believe about video

#84
post #30

Earlier quoted context omitted.

It's true that you have to draw a line somewhere based on technical and business constraints, but an important takeaway of the names article is that you almost certainly don't need to do anything with a name other than treat it as an opaque string that can be displayed back to the user. For example, I'm struggling to think of a good reason why user registration would require separate first name and last name fields,…

But sometimes your government expects names to be broken into given and family names (the US, Japan, and China all seem to make this assumption -- every government form I've seen from those countries wants your name fully broken out). I've no direct experience with, say, Russian or Latin American governments, but cultures that use explicit patronymic or matronymic names might expect that broken out as well. If you ev…

>I've no direct experience with, say, Russian or Latin American governments, but cultures that use explicit patronymic or matronymic names might expect that broken out as well.

In Ukraine we either have three fields in government forms (Family name, Given name, Patronymic) or two (Family name, Given name), for example on ticket booking forms. Or just one, but you should write names in FGP order.

Funny thing is that patronymic part is left out in transliteration, so in travel documents you see FGP form in Cyrillic and FG form in Latin letters. Transliteration algorithm is a bit funny, so people tend to have different Latin spelling of same name. And even different Cyrillic spelling of same name, depending if it's written in Ukrainian or Russian - Ukrainian, because Russian doesn't have dotted and double-dotted "i", the use "и" instead.

In past the formal way to address people used given name and patronymic, but that's not that true anymore.

In documents, sometimes full FGP form is only used at the start of the document and subsequent uses just include family name and first two letters of given and patronymic name. Tha is the only thing you can safely do automatically. Signatures also use this short form.

Other thing is that, male and female version of patronymic and family name can differ, so you can't even compare names, not just process them automatically.

And the good thing with patronymic names - combination of three names and birth date uniquely identifies 99.7% of voters, so this really matters.

Re: Falsehoods programmers believe about video

#85
post #79

Earlier quoted context omitted.

http://take.ms/fwwhx That is frustratingly poor contrast.

This might be because you might have changed your settings for CC in the past. Here is what mine look like http://imgur.com/HLIVXQ6 You can click settings again to change font sizes, font family, colors, etc.

I have to change my CC settings every damn couple of days because they revert to the same white-on-white 400% bullshit. So thanks for that.

Re: Falsehoods programmers believe about video

#86
post #85

Earlier quoted context omitted.

This might be because you might have changed your settings for CC in the past. Here is what mine look like http://imgur.com/HLIVXQ6 You can click settings again to change font sizes, font family, colors, etc.

I have to change my CC settings every damn couple of days because they revert to the same white-on-white 400% bullshit. So thanks for that.

I am not sure, but the screenshot I submitted seems to be the default settings.

However, software that is 100% perfect is pretty much impossible to write, and if you think there's a systematic issue, please file a bug, so it can help others in same situation.

Re: Falsehoods programmers believe about video

#87

Earlier quoted context omitted.

It's also missing the most common error I see: conflating subtitles with closed captions. Closed captions are positioned on the screen to indicate who's talking, have descriptive audio for sound effects, and should be in a high contrast easy to read font (most people with hearing deficiencies also have problems seeing, ie: out of date prescriptions for both hearing aids and eye glasses). As far as I know, QuickTime d…

Okay, so how are subtitles different?

Subtitles are simply translations of speech or text into another language, and are generally (though not always) center aligned near the bottom of the frame.

Re: Falsehoods programmers believe about video

#88

can we have falsehoods programmers believe besides video that are more common? this list probably is relevant for 1% of programmers here.

Just type "falsehoods programmers believe" into the search box at the bottom of the page and you'll get a ton of previous articles on falsehoods in various domains that have been posted here over the years:

https://hn.algolia.com/?query=falsehoods%20programmers%20bel...

And while this topic is not personally relevant to me since I don't work with video decoding, I do find learning about different technologies interesting. Reading this gives me an appreciation for how much effort goes into making video, something we all take for granted, work.

If people only posted articles that were relevant to a majority of readers, HN would be a much less interesting place.

Re: Falsehoods programmers believe about video

#89
post #32
post #31

Earlier quoted context omitted.

That's easy, it's to make better marketing materials. "Dear [first name]," flows better than "Dear [opaque string],".

That's what the marketing department may believe, but in reality that's super creepy. Let's not pretend that I'm on a friendly first-name basis with corporations, or that in reality I'm anything more than an autogenerated numeric ID in a database as far as the corporation is concerned. Furthermore, nobody but my mother calls me by my real first name, and this holds for half of my cohort. And why does any company thin…

I understand what you're saying, but I find the first-name greeting stuff to be probably the least problematic of marketing behaviors big businesses can do. Send me your regular catalog of electronics parts, but it's got my name on it? Sure, whatev, Mouser Electronics.

Far creepier is the thing where they use your purchase history to make predictions about your health condition, like where Target would send out baby-related stuff when its algorithms discerned that customers were likely pregnant: http://www.businessinsider.com/the-incredible-story-of-how-t...

Compared to that stuff, "Dear Frondo" seems absolutely benign.

Re: Falsehoods programmers believe about video

#90
post #79

Earlier quoted context omitted.

AFAIK, The YouTube implementation does all of those. Here is a demo: https://www.youtube.com/watch?v=BbqPe-IceP4 Please do not spread falsehoods. Disclamer: I work at YouTube.

http://take.ms/fwwhx That is frustratingly poor contrast.

I hate it when it does that, but you can change it with the gear thingy.
Post reply on HN