I take my shitposts very seriously.

  • 2 Posts
  • 253 Comments
Joined 1 year ago
cake
Cake day: June 24th, 2023

help-circle
  • It makes sense if you represent complex numbers as (a, b) pairs, where a is the real part and b is the imaginary part (just like the popular a + bi representation that can be expanded to a * (1, 0) + b * (0, 1)). AB’s length is (1, 0), AC’s length is (0, 1), and BC’s length will also be a complex number.

    I think.


  • As a former ADHD kid myself (as in, former kid, still ADHD), I would at least worry about how the condition might affect their academic, social, and emotional development. I was an unfortunate Gifted Kid and picked up a lot of knowledge from cartoons (back when cartoons had educational value), but that came with the cost that I never learned discipline, and never learned how to study. I know that my consistently falling test scores confused and devastated my parents.

    But all that was two decades ago. I hope that ADHD is more understood now and kids don’t have to remain undiagnosed and untreated.


  • Never ask:

    • A man his salary
    • A woman her age
    • An audiophile how much they paid for their hoard

     

    On second thought, ask all of those questions.

    • Secrecy is how employers get away with wage inequality.
    • “I didn’t know she was 17” does not work in a court of law.
    • An audiophile will proudly point at their favourite budget headset. I mean, the Samson SR-850 is just insane value for its price. Sure, it’s a symphony of plastics, the design is just a straight rip-off of the AKG K240, and the fixed cable is a bummer, but the frequency response and the soundstage are out of this world. Plus the impedance is only 32 ohms: it easily runs out of a smartphone.






  • I tried dual-booting Win10 and Arch for a few months. It was problematic.

    I had to set the clock every time I switched because one expected the hardware clock to use UTC time and the other expected local time.

    NTFS on Linux is not good. The driver works, but there are fundamental differences between NTFS and Unix-like filesystems that makes cooperation difficult (e.g. NTFS uses ACLs instead of the user/group ownership and user/group/others permissions of Unix). Windows also places additional restrictions on the filesystem (e.g. NTFS supports file names that contain :, Windows doesn’t) that can completely bork the volume if violated.

    But the worst offender, and what made me nuke Windows entirely, is Windows Update. It completely fucked up the boot partition, deleted the bootloader, then died and left Windows unusable.

    These are all issues that can be solved, if you know how to solve them. My advice is to go cold turkey and delete Windows from your life.









  • (edit) I assume you’re mounting the NTFS volume using fstab, which is how you should mount internal drives. If you’re trying to use the file manager to mount it dynamically, you really should look into how to use the fstab file.

    I’d like to see your mount options.

    As others have said, it’s best to explicitly mount it with the rw option.

    Second, because NTFS doesn’t understand the Unix-like file ownership of users and groups, you have to specify the UID and GID of the mounted filesystem using the uid= and gid= mount options. If you don’t specify these, all files within the NTFS volume will appear as being owned by root. Use the uid=1000,gid=1000 options to mount the volume as owned by your user.

    Third, use the windows_names option as well. Otherwise the filesystem will allow you to create files with illegal names, and that will completely fuck up the volume when mounted on Windows. For example, the : character is permitted by NTFS, but not by Windows.

    Although, in general, just avoid using NTFS on Linux if you can. The driver is good, but there are too many basic conceptual differences between NTFS and most Linux filesystems.