• 0 Posts
  • 94 Comments
Joined 11 months ago
cake
Cake day: July 25th, 2023

help-circle


  • Teach us then 😭

    I think this hits on another big generational difference. Those who grew up in the early days of personal computing and the Internet didn’t have teachers or a hallucinating language model to spoon feed them instant answers. They had to actually RTFM thoroughly before they could even think of asking in some arcane BBS, forum, or IRC for help from elders that had absolutely zero tolerance for incompetence or ignorance. MAN pages and help files came bundled, but the Internet (if you had it) was metered and inconvenient on a scale more like going to the library than ordering a pizza. They had to figure out how to ask the right questions. They had to figure out how to find their own answers. The Internet was so slow that all the really interesting bits were often just text. So much indexed and categorized one might need to learn a little more just to find the right details in that sea of text. There was a lot less instant gratification and no one expected to be able to solve their problems just by asking for help.

    I’ve seen way too many kids give up at the first pebble in their path because they are so accustomed to the instant gratification that has pervaded our culture since the dawn of smart phones.




  • Browse the wikis a bit and find a doctor you like. Watch some episodes from that Doctor until you’re bored. Repeat. You can watch them in any order you like.

    Starting with the 2005 reboot is probably easiest and most accessible. Watch for callbacks to previous adventures. If those stories sound interesting dive into the back story.

    Everybody has their favorite Doctor. Some like the leather clad skinhead. Some like the guy with the scarf and the Jelly Babies. Some weirdos like the guy with the celery stalk in his pocket. My favorite is the first Doctor. He’s in black and white, he’s witty, he’s grumpy and sometimes mean, and he lies. If you want to know about the origins of the Daleks you’ll need to find his episodes. The library is probably the best place to find these. I think there is always Doctor Who streaming or being broadcast somewhere at practically all times. I’m pretty sure I can search for Doctor Who on Plex and find some random episode streaming at any time.

    As others have mentioned, several large chunks of the original series are missing, so be prepared for that disappointment.


  • From the article it does seem that the failure of ability isn’t strictly related to computers per SE, but to an over all inability to think about the word problems given in an abstract and mathematically coherent way. They seemed to ask participants to solve what are essentially database query, reading comprehension, critical thinking, and logic problems in the context of an email suite. Word problems can be hard for anyone that hasn’t studied and practiced how to decipher them. It’s just that using a computer kind of forces one to confront those gaps in what should be a fundamental part of highschool education. Math and science classes aren’t just solving problems by wrote memorization or memorizing the periodic table, they are about problem solving. Lots of people fall through the gaps and don’t get that one special teacher who understood this.




  • Downloading from YouTube or Spotify is still piracy. And those sources offer mostly shit quality far removed from the artist’s intent.

    Believe it of not, there are things that aren’t on Spotify, YouTube, TIDAL, Apple Music, Bandcamp, or any streaming service. Sometimes when a streaming service does have a song or album, it’s either not the best quality or only a radio censored version available, even if Spotify claims it’s the explicit version. And that explicit tag feels like a slander because the original intent should be default and the radio edits should be the one’s with the CENSORED tag.

    There is great music out there you can’t purchase or stream a digital release of.

    There are old and often played CDs in my collection that can’t be ripped properly (by me) for one reason or another.

    There are some really high quality vinyl recordings out there, done by people with better hardware and more skill than I. Again, many of these vinyl releases are not available in any other format and are no longer available for purchase anywhere.

    The real primary reason I got into it, in the long ago times of Napster, was that I liked to make mixtapes/discs. When radio was no longer playing songs I wanted on those tapes, the wilds of Internet was the answer.

    I still regularly support the artists I like as directly as I can: buying albums and merch directly from them at shows or their own websites. And I spend more of that money on more artists and especially less popular artists specifically because of the habits listed above.


  • In my experience, 2 devices will ultimately save you effort and frustration. Anything you choose as a good NAS/seedbox will be unlikely to have a good from the couch interface or handle Netflix reliable and easily. A small Android TV box may have a much better interface, simple app setup, and support all the streaming services, but probably won’t be very powerful or convenient to use as a NAS. The NAS is always on, plugged directly into the Internet access point, and tucked away out of sight and sound. The Android TV or Apple TV box is silent, small, and can be mounted directly to the Beamer/Projector.

    Yes, Kodi exists and it’s add-ons can bridge this gap. But I still think that a SBC NAS running Jellyfin or plex + an Nvidia shield with jellyfin, Plex, Netflix, Spotify, YouTube, amaon, etc. will be so much easier to setup, manage, find support for, and upgrade.

    I have a similar setup even though my server has a direct HDMI link to my TV. I’m not a fan of viewing using the server it from the couch. Setting up IR remotes sucks always. And it’s confusing for anyone but me to use. But if my Nvidia Shield dies or I’m having network trouble, VLC a pretty good backup.








  • However, the issue is that I have to use sudo when using these commands and as a result after mounting I cannot make changes to my files in the drive(s) without using sudo.

    This isn’t because you’re using sudo to mount, that is the way to do it. This is because you’re mounting to a directory for which your regular user does not have write access. Create a directory owned by your user and make sure you have write access with sudo first. Or make it owned by a group that your user is a member (I use media) and give that group write access. Then mount the drive to that directory in the usual way (I prefer to clutter up my fstab with entries I rarely use). You should now have access without sudo.

    9 out of 10 times new users are struggling with access, it’s not a problem with the software, but a problem with permissions.



  • Docker compose is just a setting file for a container. It’s the same advantage you get using an ssh config file instead of typing out and specifying a user, IP, port, and private key to use each time. What’s the advantage to putting all my containers into one compose file? It’s not like I’m running docker commands from the terminal manually to start and stop them unless something goes wrong, I let systemd handle that. And I’d much rather the systemd be able to individually start, stop, and monitor individual containers rather than have to bring them all down if one fails.