Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Did you not install any networking programs?View attachment 7781379
I think all this shit is message from god that i should just fuck off to Win10 but even then i had same problem that i fixed somehow but i forgot how.....
I think he did try saying it was a bugfix. But Linus saw that it was a lot more than a bugfix. From what I recall, he did something similar before, but the "bugfixes" were gradually just turning into late commits. And he has already caused problems with missing the merge window in the past.He has the debilitating autism. He would've gotten farther trying to push the merge as a bugfix.
It sucks because bcachefs is pretty cool, much like reiser4 was back in the day, but whoops
He uses mac. He updated recently, and apparently they added some ai, feature that automatically adds animations when it detects you doing hand gestures. They don't come through on the actual stream. But I guess you can see them from their discord.
Great Moments in Shell Scripting (Link):
Bash:# delete only when it is empty directory if [ $( find ${MOUNTPOINT} | head | wc -l | bc ) -eq 1 ] then rm -r "${MOUNTPOINT}" fi
Nope, baked into the camera driver, or some other part of the OS. The sales guy I mentioned earlier had it show up in slack and google meet.If thats in Teams, thats a Microsoft thing they have added to it. It happens on windows as well. See https://learn.microsoft.com/en-us/answers/questions/4430991/live-gesture-animations
This is pretty standard these days. "Pipe curl to sh" is a security horror but they do it anyway.Found another program that suggests the "just run this script off the Internet as root" nonsense again. Ollama. At least they point you at the source but it's pretty ugly for a shell script.
llama.cpp is better.Found another program that suggests the "just run this script off the Internet as root" nonsense again. Ollama. At least they point you at the source but it's pretty ugly for a shell script.
View attachment 7784346
Piping head into wc into bc cannot simply be due to not having any bashisms, can it? Is this some kind of final form of POSIX shell autism?Great Moments in Shell Scripting (Link):
Bash:# delete only when it is empty directory if [ $( find ${MOUNTPOINT} | head | wc -l | bc ) -eq 1 ] then rm -r "${MOUNTPOINT}" fi
Often they determine what package manager system you have then add the correct repository to your sources list. At least that's how Brave works.And usually scipts like these just download a tarball and extract it into /usr/local/bin, which makes me wonder... why not just make a self-extracting archive? It would also save everyone the headache of making sure that some specific packages that you decided to use in the script are available.
Looking at the script, it makes sure you're running Linux or WSL2, sets up an ollama user, adds ollama to systemd as a service, probes your GPU and sees if it's AMD or NVIDIA, installs CUDA or ROCm accordingly or sets it to CPU-only if you don't have a supported GPU. So, yeah, it's pretty involved.And usually scipts like these just download a tarball and extract it into /usr/local/bin, which makes me wonder... why not just make a self-extracting archive? It would also save everyone the headache of making sure that some specific packages that you decided to use in the script are available.
https://gpo.zugaina.org/app-misc/ollama -- Two Gentoo overlays are listed here but only one is seen in eselect repository, and that's the one packaging 0.5.x when latest stable is 0.11.x. It's server-first shitware that thinks it's sane to install a systemd service in order to use a piece of software. Much better to just DIY my build.Ollama is likely packaged by your distro. They probably should have that as the first instruction.
Nope, baked into the camera driver, or some other part of the OS. The sales guy I mentioned earlier had it show up in slack and google meet.
And they could make it a standard format. So everyone will all do it the same, and have the same requirements to make them work.And usually scipts like these just download a tarball and extract it into /usr/local/bin, which makes me wonder... why not just make a self-extracting archive? It would also save everyone the headache of making sure that some specific packages that you decided to use in the script are available.
I'm sure there is another way they could have done it in posix sh. I don't want to bother thinking about how I would try doing it. Even though more strict posix shells won't have some of the nice things bash has, they aren't THAT limited.Piping head into wc into bc cannot simply be due to not having any bashisms, can it? Is this some kind of final form of POSIX shell autism?
I'm sure there is another way they could have done it in posix sh. I don't want to bother thinking about how I would try doing it. Even though more strict posix shells won't have some of the nice things bash has, they aren't THAT limited.
man 1 rmdir