• 0 Posts
  • 82 Comments
Joined 1 year ago
cake
Cake day: June 18th, 2023

help-circle
  • Calling people stupid and lazy in nicer words is still calling people stupid and lazy.

    I think that’s a bit unfair here. What I’m saying is that expectations often seems to be that “Linux should be effortless, but it isn’t, so Linux sucks”, and then we quickly talk past each other on which aspects we are referring to. Let me make up three categories:

    For users transitioning to Linux from Windows, and …

    1. … it shouldn’t be an effort, but unfortunately sometimes is frustrating or annoying
    • Hardware control, e.g. drivers. More often than not it works with less effort than on Windows, except for very new hardware, and hardware that actually requires specific software (RGB led patterns, Gaming mouse profiles, all that stuff)
    • NVidia drivers can be a pain
    • When dual booting and Windows manages to fuck up something in Linux, and it looks like Linux is the culprit. (E.g. restart the computer from Windows, but it doesn’t release claim on hardware, which doesn’t let Linux claim it, so stuff like the WiFi adapter might not work.)
    • Specific software not available, like Adobe, Autodesk, etc.
    1. .… is something you can get someone else to do for you, but it’s just how things are, unrelated to Windows -> Linux or the other way around.
    • Installing the OS – downloading ISO, burning a bootable USB, BIOS, etc…
    1. … it’s expected that you figure out / learn, and if unwilling, Linux isn’t for you
    • Using the OS, which at the very least, cursory knowledge of the software/package manager, and roughly how this works.
    • Familiarizing yourself with KDE / Gnome, etc.

    So, I assume people who just thought I was calling people lazy and dumb thought I meant categories 1. and 2. I just mean category 3. If you expect everything to be the same as Windows, and the effort required to understand the differences is too much, then only Windows will fit your needs. The impression I get is a general unwillingness to “figure stuff out”. Not knowing shit is fine, complaining and not wanting to put in the effort to know stuff… how is that not being lazy?

    It was intended as kind advice without any the implied judgement of calling people dumb or lazy. If you don’t want to have to figure stuff out related to the third category, Linux will likely not be a good experience, or even a productive or good change. If you move to another country, you should make the effort to learn the culture. It’s not a good look to complain that things are different.

    If I were to try to suggest “a point” with all of this: Don’t suggest to people that Linux is effortless for Windows users. Linux is immensely better, in almost every way (though mind examples in first category). But, it requires learning the basics of how shit works. It’s not hard… the information is well put together and available.







  • I find this question very interesting. What does it mean to “know” a programming language. They map to certain paradigms for how to solve problems, in various degrees, with different tradeoffs there for surrounding tooling, libs, and what not.

    A bunch of the most familiar ones are procedural with different sprinkles on top, and they pretty much do the same things when it comes to the “language” side. So, “knowing” one, or another, IMO, has little to do with the syntax, parsing and keywords, and is much more if you have suffered through cryptic compile errors, figured out good debugging tooling, etc.

    Which is to say, if we compare these two list

    • C++, Haskell, Prolog
    • C++, Java, Python, Rust, Kotlin, Objective-C, Dart, etc

    I’d consider the first one much more impressive in terms of diversity in “knowing programming languages”. And, I say that as someone belonging squarely in the latter.



  • The image of USA is not good, at all, if that’s what you’re asking. I used to care, but some time around 2016 I simply gave up. Something about an obvious grifter and professional fuckwit, seriously considered to lead anything other than a burger to his fat face. The alternative, although infinitely better, is clearly suffering from some dementia. It’s just a shit show.

    And that’s just the politics. But it mirrors most other fucked up things in the US. The obvious and effective approaches are not considered. So… best to not spend too much effort and hope the impact of it reaching critical mass isn’t too bad.



  • Aha. For the desktop, I just use FreeTube that has those built in. Downside is not having the same interaction with the YouTube account to keep track of what you’ve seen.

    For the mobile device I used a modded version of the official app that also does them.

    For the TV I have a custom android app that I share a YouTube URI to, and it sends it to the home server, downloads the video with yt-dlp and makes it available on jellyfin.

    For some reason, having extensions on the browser just creeps me out. They have permissions to do so much, and know so much.







  • I don’t know… I’ve been using ChatGPT4. I use it only where the knowledge it outputs is not important. It’s good when I need help with language related things, as more of a writing assistant. Creative stuff is also OK, sometimes even impressive.

    With facts? On moderately complicated topics? I’d say it gets something subtly wrong about 80% of the time, and very obviously wrong 20%. The latter isn’t the problem.

    I don’t understand where the “intelligent” part would even come in. Sure, it requires a fair level of intelligence to understand and generate human language responses. But, to me, all I’ve seen fits: generate responses that seem plausible as responses to the input.

    If intelligence requires some deeper understanding of the world, and the facts and relationships between them, then I don’t see it. It’s just a coincidence when it looks like it happened. It’s impressive how often that is, but it’s still all it is.


  • okamiueru@lemmy.worldtoaww@lemmy.worldGrow up so fast
    link
    fedilink
    English
    arrow-up
    8
    ·
    4 months ago

    If anyone wants to recreate this. I’m 99% the best way to go about this is:

    1. Buy two identical fluffy toys.
    2. Take pictures of cute little puppy with fluffy toy.
    3. Hide one of the toys away 1-2 years.
    4. Take pictures of cute doggo with the not-destroyed fluffy toy.

  • Don’t know why you were downvoted. In any case, all terminals can be configured to start with a specific command and arguments. So, depending on your terminal, you might need to read the documentation, and/or search the web.

    In alacritty config, this is:

    shell:
      program: <CMD>
      args:
        - <ARGS>
    

    Then one of these:

    1. <CMD> is the path to tmux, and you have configured tmux to run the shell of your choice. Search the web for how.
    2. <CMD> is the path to your shell, and it supports launching in tmux. Search the web for how.

    For me, it’s the second one. I use fish, and I launch it with fish --command=tmux. So the above config looks like this:

    shell:
      program: /usr/bin/fish
      args:
        - --command=tmux