Skip Navigation

User banner

data1701d (He/Him)

@ data1701d @startrek.website

Posts
39
Comments
459
Joined
2 yr. ago

"Life forms. You precious little lifeforms. You tiny little lifeforms. Where are you?"

Lt. Cmdr Data, Star Trek: Generations

  • Oh, my gosh. That video is hilarious. Makes the episode 10 times funnier, and it was already beautifully campy to begin with.

    And don’t forget the sequel episode in TAS, in which the planet tries to kill them because it’s depressed about its creator dying. Although it’s not as hilarious an episode as the one where Captain Kirk literally defends the human rights of Satan.

  • I would ditch Discord, but the TMBW server is just so darn good and I can't leave that behind. Maybe I could convince them to set up a Matrix bridge (they already self-host MediaWiki), but then they'd probably end up basically doing this just for me.

    My university's Linux User's Group is on Discord, but they have it bridged with a Matrix server; due to the current state of things in the US, they only allow political discussion in certain encrypted channels that are exclusive to the Matrix server.

  • So an ancient alien technology that can literally bring people back from the dead doesn't count as "fancy"?

  • Maybe Muppet Orville would be more viable, since they’re both Disney?

    And we have Seth McFarlane play the Kermit the Frog plush on his desk. Not a plush of Seth McFarlane, but a full-size Seth McFarlane wearing a Kermit onsie and sitting on the desk. (Although then, it breaks what makes Muppet adaptations good - the humans taking their roles entirely seriously.$

    Although Kermit’s too nice to be Ed, and Mrs. Piggy is a really bad fit for Kelly. Okay, maybe a lot of the characters on The Orville would be really hard to map to Muppets.

  • Yes, all 100 years of them, because that's the only thing they can look forward to in their careers.

  • ?

  • Indeed, and where despite supposed to be getting married, Lwaxana spoils Alexander, and in doing so, is a better parent than Worf ever was.

    And somehow, it all works out, and Worf, Alexander, Deanna, and Lwaxana all end up in a mud bath in a holodeck program that gives the vibes of the aliens' version of Alice in Wonderland.

  • Martin Freeman’s 2005 film portrayal, which I admittedly don’t hate, but still think Jones does a better job overall.

  • Oh. Duh.

  • Sounds like a Cheekface song... or at least a lyric..

  • You know, while that badge is mostly non-canonical, I could totally see those Starfleet security guys who wear those dorky helmets also having one of those.

  • I mean, how else do you explain TNG:"Cost of Living", which I think overall is perhaps the most drug trip episodes of TNG, and that's including "Frame of Mind".

  • Deleted

    Howdy, Y'all

    Jump
  • I didn’t even know there was a Quantum Leap reboot, but then again, I’ve never watched Quantum Leap to begin with.

  • Level 14:

  • I mean, it’s in “a galaxy far, far away”, and pretty much all of Star Trek takes place in the Milky Way Galaxy - the only time they ever leave is in, true to its name, TNG:”Where No One Has Gone Before”, when the traveller sends them to M-33.

    It could be conceivable that anything that happened in Star Wars is just in a very distant part of the universe that would take millions or billions of years for any ship to get from there.

    Though honestly, I personally like to imagine that Tom Paris really likes Star Wars, but when he brings it up, everyone thinks it’s just another one of his campy 20th century films.

  • Deleted

    Howdy, Y'all

    Jump
  • What about fan gender-non-binary babe nerds?!

    On another note, is there any sci-fi series that has a non-binary character who’s just a normal human and not non-binary for reasons of space magic or being an alien? I mean, Adira from DIS sort of fills that box, since all other people we’ve seen joined with symbionts were cis (more or less), but the symbiont means not quite.

    It still really drove me nuts when they revealed T’Lir in the IDW comics to be an Organian in disguise, although I guess we don’t know how Organian gender works; maybe there are cis Organians, and that makes it a bit better?

  • But this is Simon Jones, the original Arthur Dent, who played him both in the original radio series and the 1981 TV adaptation. I don’t think it can get more real.

  • It would be even more brutal if he remembered to say “Brother of Jeremy Aster”.

  • I also recommend dd on a live USB, but with some advice.

    First off - and I'm really surprised nobody's warned you - be EXTREMELY CAREFUL with dd; it is a very powerful tool, but with great potential for data loss. Check your command over and over again to make sure it's doing what you want before running it, and make sure you have a backup beforehand; it will happily mow over any disk you tell it. Also, do it when you're fully awake, not at 1 AM or something.

    I would call myself an experienced dd user, and even I messed up once recently; I was trying to create a bootable USB when I was really tired. Instead, I overwrote a drive. Luckily, it wasn't my root drive, and I had a full backup of its contents, so I was able to reformat the drive and restore from backup.

    Also, don't run a bare minumum dd command like dd if=/dev/whateverdevice1 of=/dev/whateverdevice2; it's going to be an absolute pain in the rear.

    dd bs=1M oflag=sync status=progress if=/dev/whateverdevice1 of=/dev/whateverdevice2

    • bs=1M: The size of block it tries to copy at a time. Play with this a bit, as different drives have different optimal block sizes.
    • oflag=sync: Basically, most operating systems don't actually write data to the drive right away, but store it in a buffer in RAM to be written later. This is usually fine, but sometimes, you want to be certain that data has actually been written to a drive; this flag turns off that buffering so that when dd is done, the data will for sure actually be on the drive. In lieu of this, you could also just run the sync command afterwards, which forces it to write the current buffer to disk, but I prefer the dd way. It should also do it automatically during shutdown, but I have had cases where a system hangs during shutdown and I'm not certain if syncing is done or not.
    • status=progress: Gives the command a progress bar. It's just really darn convenient and allows you to see how much time is left, how fast the drive is going, etcetera. I don't know how anyone uses dd without this. Otherwise, it just shows nothing, and you're left anxiously wondering when it will be done.
    • if is input drive, of is output drive. I prefer lsblk for looking at the list of drivers.

    You'll usually need to run dd with sudo.

    Once you do a successful copy, you'll need to extend your BTRFS partition using GParted or similar. If you have a partition after your main one, like swap, you'll need to delete the swap partition before extending, then recreate the swap partition and update fstab accordingly.