Linux server admin, MySQL/TSQL database admin, Python programmer, Linux gaming enthusiast and a forever GM.

  • 0 Posts
  • 75 Comments
Joined 2 years ago
cake
Cake day: June 8th, 2023

help-circle
  • Europe is primarily white people

    Hah, that’s telling. Just FYI, there’s been generations upon generations of racism and ethnic hatred here in Eastern Europe. I guess we have the advanced racists: the ones who don’t hate you for your skin colour, but who your parents were, religion and primary language.

    I’ll bet that if your dad grew up here in Romania, he’d be complaining about those sneaky Szeklers trying to steal Transylvania and Roma people being subhuman.

    Also, he seems the type to pine for Europe because “We’re all Christian!”. Trust me, you haven’t seen “Christian love” like state religions persecuting people of the wrong sect. Orthodox Christianity is the state religion here, and Protestants of all stripes get treated like heathens.


  • Hi, Eastern European here. We begged to join NATO. We kicked and screamed, wheeled and dealed, anything we could to get that coveted NATO membership.

    You know why? Because we’ve been dealing with expansionist Russian imperialism for our entire histories. Different coats of paint in different time periods, but it’s all the same shit. The US is an empire, but at least here it’s preferable to Russia’s imperial ambitions.



  • If you’re interested, the short version is that instances (A.K.A servers) are run by different people in different places. A reason to move instances might be:

    1. My admin, the owner of the instance, has been doing things I heavily disagree with (bans, blocks, etc)

    2. I don’t agree with the rules on my instance.

    3. The instance is run in a country which criminalizes something that I care about, and so has to ban discussion of that thing (piracy, porn, etc).

    4. I want to run a community on a specific instance for whatever reason, and so need an account there





  • My younger cat taught me to play fetch with her. She finds a receipt or other small bit of paper, brings it to me, and wants me to crumple it into a ball. Then, after throwing it, she brings it back and drops it at my feet. This normally continues about 10-20 times until she gets bored or loses the paper.




  • In Uni I ran Gentoo as my daily driver. It was stupid, but I learned a lot.

    Trying and failing to get a working desktop environment, using IRC on the command line to get help from people who knew what they were doing and could advise a dumb kid like me, following their advice and getting a working DE after a reboot was the most hackerman I ever felt. I was convinced I was real hot shit. In actuality, I’d followed the advice to tweak the kernel config to get working drivers :))






  • I know someone who got had by a spearfishing call. They knew all the details about his phone contract, sounded 100% legit. The scammer got thousands of dollars in prepaid SIM cards from his account.

    After the police investigation, turned out that the scammer was actually a former employee of the phone company who downloaded a copy of the customer list when he got fired.


  • 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.



  • 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