• 0 Posts
  • 19 Comments
Joined 1 year ago
cake
Cake day: January 9th, 2024

help-circle



  • Also worth mentioning that they’ve only been snatching people off the street, meaning people who didn’t have any active warrants. If they did have warrants, they probably would have been arrested already. They’re not deporting people who are already in prison. At this point, “criminal” means anyone suspected of a crime, and that suspicion extends to any kind of criminal record, even if you’ve already served time.

    Obviously, they’re going to drop the “criminal” pretense soon enough, but they will start grabbing ex-felons first. I’m terrified for members of my family who absolutely fit the description of these kinds of targets: ex-felons with tattoos who look vaguely brown.


  • valtia@lemmy.worldtoMicroblog Memes@lemmy.worldData can be hurtful
    link
    fedilink
    English
    arrow-up
    6
    arrow-down
    1
    ·
    1 month ago

    Hobbies, classes, sports teams, volunteering

    If you want to meet women, take a pottery class, join a softball league, take knitting lessons, join a book club, volunteer at a local animal shelter, go to the library regularly, join a protest, join a running or biking group, or even look around on one of those meetup apps for activities in your area

    Maybe your problem was that you only went to your gym and your bar, instead of trying to meet new people? The point is, it’s easy to get stuck into a routine, and swiping on Tinder often becomes part of the routine



  • iirc it’s also only helpful if you’re already deficient in vitamin A, which the majority of Americans aren’t. It’s the same thing with Ivermectin: it looked like it was helpful for covid in aggregate, but only in developing countries where parasites are common. So, treating someone’s parasites with a horse dewormer made the person healthier overall and meant their immune system could commit more resources to fighting covid, but someone without parasites (meaning the majority of Americans) would get absolutely no benefit.




  • in this case you would just overwrite the existing row, you wouldn’t use de-duplication because it would do the opposite of what you wanted in that case.

    … That’s what I said, you’d just update the row, i.e. replace the existing data, i.e. overwrite what’s already there

    Definitionally, the actual identity of the person MUST be unique, otherwise you’re going to somehow return two rows, when you call one, which is functionally impossible given how a DB is designed.

    … I don’t think you understand how modern databases are designed



  • i genuinely cannot think of a single instance where you would want to delete one entry, and replace it with a reference to another

    Well, there’s not always a benefit to keeping historical data. Sometimes you only want the most up-to-date information in a particular table or database, so you’d just update the row (replace). It depends on the use case of a given table.

    what elon is implying here (remove “duplicate” entries, however that’s supposed to work)

    Elon believes that each row in a table should be unique based on the SSN only, so a given SSN should appear only once with the person’s name and details on it. Yes, it’s an extremely dumb idea, but he’s a famously stupid person.


  • There can be duplicate SSNs due to name changes of an individual, that’s the easiest answer. In general, it’s common to just add a new record in cases where a person’s information changes so you can retain the old record(s) and thus have a history for a person. That’s how the SSA is able to figure out if a person changed their gender, they just look up that information using the same SSN and see if the gender in the new application is different from the old data.