I'm sure some large percentage are bots, and another percentage are trolls.
Barbarian
Wow, it's almost like there might be people with different opinions that use Linux and Linux users aren't a single hivemind.
Yeah, I work daily with a database with a very important non-ID field that is denormalized throughout most of the database. It's not a common design pattern, but it is done from time to time.
It's necessary to split it out into different tables if you have a one-to-many relationship. Let's say you have a list of driver licenses the person has had over the years, for example. Then you'd need the second table. So something like this:
SSN_Table
ID | SSN | Other info
Driver_License_Table
ID | SSN_ID | Issue_Date | Expiry_Date | Other_Info
Then you could do something like pull up a person's latest driver's license, or list all the ones they had, or pull up the SSN associated with that license.
Theoretically, yeah, that's one solution. The more reasonable thing to do would be to use the foreign key though. So, for example:
SSN_Table
ID | SSN | Other info
Other_Table
ID | SSN_ID | Other info
When you want to connect them to have both sets of info, it'd be the following:
SELECT * FROM SSN_Table JOIN Other_Table ON SSN_Table.ID = Other_Table.SSN_ID
EDIT: Oh, just to clear up any confusion, the SSN_ID in this simple example is not the SSN itself. To access that in this example query, it'd by SSN_Table.SSN
Short version: he might have frozen hiring air traffic controllers, he might not have. The ambiguity caused de facto hiring freezes in a profession that was already understaffed and vital to air safety.
There is a legitimate argument to be made with reasonable people on both sides as to exactly how old is old enough to confidently say that there's not a power imbalance due to age alone. Whether that's 18, 21, 24 or some other number is an open question.
30+? If they wanna date somebody more than double their age, that's completely their business.
At least at the start, the instance was mostly networking and sysadmin nerds. During reddit's APIocalypse, our admin started up the server and put up a detailed post about the hardware, infrastructure and benchmarking everything. Stuff like that is what drew me and many others to this instance.
New rules for homeschooling include mandatory 10 minute hate against the enemy of the day, pledge of allegiance to a photo of Trump, and a once a year field trip to throw rotten tomatoes at homeless people.
The amount of civil unrest that'd cause would cause the situation to be far from fine. The US and EU like to pretend like there's some magic money-fuelled forcefield that protects them, but millions of desperate people fighting for their lives can cause a lot of damage if pushed into a corner like that.
The EU and US regularly lose their minds over a few thousand refugees. What do you think will happen when millions of climate refugees start moving?
Support networks are so incredibly important to parents. Don't have kids of my own, but am helping with my sibling's kids. Babysitting and just general support split with my parents. Thankfully, they don't need financial help but that'd be on the cards if it came to it.
Support networks like this, whether it's family, neighbours, friends or some combination is almost mandatory if you're not very wealthy. It takes a village to raise a child, after all.