Earlier quoted context omitted.
A former employer had a first letter of given name + last name (actually first 5 letters) convention for email addresses. They did have a fallback--usually with second letter of given name. But, of course, a lot of people just automatically emailed the convention with the result that certain email "twins" got misdirected mail. A very common one at one point was that the CFO shared a first letter of name with his daug…
> A former employer had a first letter of given name + last name (actually first 5 letters) convention for email addresses I once heard a story (possibly apocryphal) about a place which used a similar “first initial and truncated surname” convention for usernames, except theirs was first three letters of surname, followed by first initial, followed by some digits. And it all worked great until they hired a guy named…
When your last name is Null, nothing works
91–100 of 310 posts
Re: When your last name is Null, nothing works
#92Earlier quoted context omitted.
Which systems do this? I could see situations where reading in a text file, you have might assume the value null is not the string "null". I am struggling to think of other situations.
Bash, C strings, URL query strings, and CSVs off the top of my head.
Re: When your last name is Null, nothing works
#93Earlier quoted context omitted.
I set-up a directory system for a small school. The students logins were a combination or initials and date of birth. When I created the scheme I knew that a set of twins would break the system. Somewhere between 3 and 5 years we finally got a set of twins that needed to modify the system. I called them to my office and found out which one came out first and appended 1 their usernames and 2.
I anticipated twins with The school directory sync system I made for a small District (sub-5000 enrollment). I appended a random two digit number to first initial, last name (EAnderson96). So far none of the parents who have "weaponized"(1) the naming of their children have managed to break it since we brought it up in '99. (1) Hypothetical John Smith and his siblings Jane Smith, James Smith, Janet Smith, Jack Smith,…
Converting it to an HTML character entity is not really expected behaviour, but it was among the most amusing I’ve seen.
O'Brien was it? Bonus points if you edit the profile and those are expanded too. Hello Mr. O'Brien.
Re: When your last name is Null, nothing works
#94The number of times that a website rejects my first name because it has a hyphen in it, even in 2025, is astounding. I get told all manner of things by support staff, like "just leave it out" as if it's just not an important part of my name or anything.
Or handle single-digit month numbers in a date.
Or...
Re: When your last name is Null, nothing works
#95I have 4 names (two first names and two surnames), pretty common thing in my country. But I've had issues several times when flying because they assume it's two different people? How stupid is that?
What about last names like "da Silva"?
Re: When your last name is Null, nothing works
#96I have my own mildly amusing story of breaking systems with my name. I have a twin with the same first initial. Any time we had to use a system at school which constructed usernames from some combination of first initial, surname, and date of birth, only one account would be provisioned between the two of us. It became almost a ritual in the first term of the school year for us to make a visit to IT Support and reque…
Did anyone ever ask that of you or your twin?
Re: When your last name is Null, nothing works
#97This is hilarious: Even those without the last name Null are finding themselves caught in the void. Joseph Tartaro got a license plate with the word “NULL” on it nearly 10 years ago. The 36-year-old security auditor thought it would be funny to drive around with the symbol for an empty value. Maybe a police officer who tried to give him a ticket would end up writing null into the system and not be able to process it,…
I'm not the biggest expert on databases, although I've worked with them a bit, but how does this occur in the first place? Usually, associations are done with primary/foreign keys. What database would allow null in that case?
Re: When your last name is Null, nothing works
#98Who's checking if a string matches "null" rather than is null!?
Re: When your last name is Null, nothing works
#99This is hilarious: Even those without the last name Null are finding themselves caught in the void. Joseph Tartaro got a license plate with the word “NULL” on it nearly 10 years ago. The 36-year-old security auditor thought it would be funny to drive around with the symbol for an empty value. Maybe a police officer who tried to give him a ticket would end up writing null into the system and not be able to process it,…
> A database had associated the word “null” with his personal information and citations were sent to Tartaro, who lives in Los Angeles. I'm not the biggest expert on databases, although I've worked with them a bit, but how does this occur in the first place? Usually, associations are done with primary/foreign keys. What database would allow null in that case?
final String myNullString = "" + null;
System.out.println(myNullString);