A related article that I found so interesting I could barely put it down, and helped convince me to leave Reddit and come here instead: https://medium.com/@max.p.schlienger/the-cargo-cult-of-the-ennui-engine-890c541cebcb.
OpenStars
Tbf, when this post was first made, the article was not linked and instead it was just a link to the picture. So... this is one time that not reading it made sense!:-P
Thank you for the feedback. Frankly I wasn't certain what all would be auto-populated from the video and did not want everything to be duplicated - this is my first post from this account and while the second for Lemmy overall, the first again for a video link, and to this community.
I edited the post from the old body of "This Video Will Make You Angry, by CGP Grey" to now:
A video titled "This Video Will Make You Angry", by CGP Grey, about how memes evolve in the same manner as living organisms, though in this case those most successful tend to be the ones that engender anger in their target audience.
Anyway, it's a 9-year-old video, and yet one that I had not seen from him before somehow, though certainly the concept has made the rounds. Even so I found it interesting, and in light of the upcoming election season (in the USA and world-wide) thought it might be worth sharing:-).
How "meta" then that CGP Grey chose to use a click-baity title to talk about why people use click-bait content:-).
Hrm... are you so sure that it does not? :-P
Not technically no, though neither does it fully embrace the spirit of FOSS either. Anyway I was explaining the appearance of those two being at odds with one another in the meme. Anyone who does not enjoy meme content can simply block this community and move on with the serious side of life.:-)
Tell that to Google...
This has no right to be this damn funny!!?!!
Are those... four beans beneath those jeans?
("beans" is another term for some types of paws, especially on cats)
I feel like I've seen his face somewhere before?
There, and there, and there, and there! :-P
It has nothing to do with bash specifically - other shells like sh, csh, tcsh, zsh, etc. are the same. Whitespace in UNIX is just that way by design. And it's been a long while since I used a Windows CLI but they were that way too - plus added all that weirdness about ~1 at the ends of filenames, and Mac OSX also. So not even just UNIX, but it's how the CLIs tend to work, where whitespace acts as the "delimiter" between arguments sent to a program.
program_name arg1 arg2 arg3 arg4
So if you use whitespace like "cp file 1 file 2", the CLI sends arg1="file", arg2="1", arg3="file", arg4="2", rather than arg1="file 1" and arg2="file 2". These are just the foundational rules of how CLIs work - a computer can't read your mind, and this is how you precisely tell it what you want, within this highly rigid framework to avoid misunderstandings.
The alternative is to use a GUI, so like see file, drag file, and ofc that has its own set of tradeoffs good and bad.