Just your normal everyday casual software dev. Nothing to see here.

People can share differing opinions without immediately being on the reverse side. Avoid looking at things as black and white. You can like both waffles and pancakes, just like you can hate both waffles and pancakes.

been trying to lower my social presence on services as of late, may go inactive randomly as a result.

  • 0 Posts
  • 496 Comments
Joined 3 years ago
cake
Cake day: August 15th, 2023

help-circle













  • I agree but, thats sort of the point. The first alternative is a lot of money that takes a bunch of time to setup, just for the city to very cheaply and quickly reverse it. They had already /tried/ that approach and the city said no, doing it themselves was just a bad plan to begin with.

    The city at the moment is out maybe 20 minutes to take the sign down, and then can go back to sticking their head in the sand.

    A damaged road? can take weeks to months to fix, and requires a dedicated crew and equipment, all while forcing vehicles to slow down due to it, while using tools that are likely just laying about the garage. Don’t take me wrong, both methods are super illegal, but, one is morally bad, cheap and hard to fix, where one is morally good, expensive, time consuming and easily fixed.

    Our local playground has no traffic signs (aside from a playground sign) and a very faded crosswalk, but everyone knows to slow way down before reaching it because if they don’t the potholes(winter kills the roads) will make them regret it.

    The town “fixes” it every few years or so.



  • Pika@sh.itjust.workstoLinux@lemmy.mlRTFM
    link
    fedilink
    English
    arrow-up
    8
    arrow-down
    4
    ·
    edit-2
    16 days ago

    this is an absolutely toxic take of the issue. I took OP’s statement as less of a “I won’t read the manual” and more of a “I struggle to be able to read manuals”

    Which is fully fair , there are many times I had read the manual, and then had to look up the issue further anyway because I either missed the poorly written section, or misunderstood what it was saying.

    If you want a prime example of that, go look at ffmpeg and try to figure out how to select a specific language for subtitles on a video without looking it up online. its via -map as an advanced option, which is described as a parameter to extract specific streams (which also means they would need to map the video and the audio streams since including a -map removes every auto stream). but map doesn’t tell you subtitle tracks are index:s. it does tell you that you can look at stream specifiers for valid search options, which does include s as a type, and lets you know that you can use m for metadata tagging, but you would need to make the connection that the type is s, and the meta data search flag would be m:language:langcode, and you need to make the connection the entire string has to be concated so its index:s:m:language:langcode For someone who is learning ffmpeg and video transcoding, that is not a very good setup. The stream specifiers give a few examples of what the potentials are but, the location where it specifies the types are in a different area than the one where it specifies the metadata keys. At that point just asking online or searching is way easier.

    Note: this is just an issue I have see people come across because ffmpeg is one of the more complicated programs (the man page is over 2300 lines)

    is it in the manual? yes. is someone who doesn’t know how to use ffmpeg and is trying to learn it going to find it? that’s debatable.

    If I was in that situation, my next step would be googling it, and if I couldn’t find it via searching, I would be reaching out to communities. At that point “RTFM” is useless to me.