374
Comments (24)
sorted by:
You're viewing a single comment thread. View all comments, or full comment thread.
21
Generaallucas [S] 21 points ago +21 / -0

Stuff I figured out (until now):

2 people have no date of birth.

177 people have the Unix Timestamp (1970-01-01) as DoB

42 have birth set as 1800-01-01

19 have birth set as 1900-01-01.

13 have birth set as 1901-01-01.

2 have birth set as 1914-03-01, 2 more 1914-10-30

Total BirthDay irregularities (for now) are 332. If I set the date to 1920-01-01 ( a handful of centinarians could've voted) it rises to 1074.

A couple of people have no postal code despite having an address.

EDIT: I'll keep editing this post as more data gets processed. More coming up. Please ensure this comment and no other one stays on top! I'll share source code later on a repo.

12
undefined 12 points ago +12 / -0

Don't forget 1/1/1970

If the data was ever stored as a unix timestamp, it may zero to that date as well

8
Generaallucas [S] 8 points ago +8 / -0

i'll add it to the list.

Edit: good call anon, found dozens more!

3
Ih8leftists 3 points ago +3 / -0

What's wrong with that date?

2
Generaallucas [S] 2 points ago +2 / -0

Unix timestamp number 0 (meaning the value was not set) is 1970-01-01.this memory-light method was used a lot during early computing.

1
Ih8leftists 1 point ago +1 / -0

So if a date wasn't set it was set by the program to be that date?

2
undefined 2 points ago +2 / -0

Unix time stamp logic is like this: The current time in some software programs is counted as "the number of seconds since January 1st, 1970 12:00:00 am"

So if there's 60 seconds * 60 minutes * 24 hours * 365 days, you have around 31,536,000 seconds per year

So if the unix timestamp is 31,536,000 - then the date is January 1 1971 (one year + 1/1/1970)

If the timestamp is Zero (or just left blank) many systems will incorrectly parse that as zero seconds past 1/1/1970

Does that make sense?

edit: here's a calculator for you to play with, if you're curious https://www.unixtimestamp.com/index.php

1
Ih8leftists 1 point ago +1 / -0

Thanks