Remix.run Logo
arsome a day ago

name.Length > 0

is probably pretty safe.

pridkett a day ago | parent | next [-]

That only works if you’re concatenating the first and last name fields. Some people have no last name and thus would fail this validation if the system had fields for first and last name.

Macha 19 hours ago | parent | next [-]

Honestly I wish we could just abolish first and last name fields and replace them with a single free text name field since there's so many edge cases where first and last is an oversimplification that leads to errors. Unfortunately we have to interact with external systems that themselves insist on first and last name fields, and pushing it to the user to decide which is part of what name is wrong less often than string.split, so we're forced to become part of the problem.

caseyohara 18 hours ago | parent | next [-]

I did this in the product where I work. We operate globally so having separate first and last name fields was making less sense. So I merged them into a singular full name field.

The first and only people to complain about that change were our product marketing team, because now they couldn’t “personalize” emails like `Hi <firstname>,`. I had the hardest time convincing them that while the concept of first and last names are common in the west, it is not a universal concept.

So as a compromise, we added a “Preferred Name” field where users can enter their first name or whatever name they prefer to be called. Still better than separate first and last name fields.

cudder 3 hours ago | parent [-]

I tried this too, and a customer angrily asked why they can't sort their report alphabetically by last name. Sigh.

arkh 6 hours ago | parent | prev | next [-]

One field?

Like people have only one name... I like the Human Name from the FHIR standard: https://hl7.org/fhir/datatypes.html#HumanName

People can have many names (depending on usage and of "when", think about marriage) and even if each of those human names can handle multiple parts the "text" field is what you should use to represent the name in UIs.

I encourage people to go check the examples the standards gives, especially the Japanese and Scandinavian ones.

JimDabell 14 hours ago | parent | prev [-]

It’s not just external systems. In many (most?) places, when sorting by name, you use the family names first, then the given names. So you can’t correctly sort by name unless you split the fields. Having a single field, in this case, is “an oversimplification that leads to errors”.

cluckindan a day ago | parent | prev [-]

some people have no name at all

exitb a day ago | parent [-]

Any notable examples apart from young children and Michael Scott that one time?

ndsipa_pomu a day ago | parent [-]

I've been compiling a list of them:

dvfjsdhgfv 21 hours ago | parent [-]

You seem to have forgotten quite a few, like

poizan42 a day ago | parent | prev | next [-]

See point 40 and 32-36 on Falsehoods programmers believe about names[1]

[1] https://www.kalzumeus.com/2010/06/17/falsehoods-programmers-...

from-nibly a day ago | parent [-]

I know that this is trying to be helpful but the snark in this list detracts from the problem.

i80and 18 hours ago | parent [-]

Whether it's healthy or not, programmers tend to love snark, and that snark has kept this list circulating and hopefully educating for a long time to this very day

tomxor a day ago | parent | prev [-]

What if my name is

chuckadams 18 hours ago | parent [-]

Slim Shady?