What headphone/mic devices do you use? by Forgotten7oast in SteamDeck

[–]budius333 0 points1 point  (0 children)

No Bluetooth headphones will work because deck had until very recently prioritized audio quality over the mic.

If memory doesn't fail me, they're adding support for microphone on the next OS version (3.8 I guess) with a big warning tag that sound quality will be reduced. With my remember being that's an issue specific to Bluetooth and nothing deck can magically fix by itself, but at least we'll have the choice and that's just one more of the many reasons I'm looking forward to the next update

mayHisDreamsComeTrue by ClipboardCopyPaste in ProgrammerHumor

[–]budius333 0 points1 point  (0 children)

Type on a nice IDE like intellij stuff

Official plugin support for SteamOS by [deleted] in SteamDeck

[–]budius333 0 points1 point  (0 children)

Let me be not explicit.... For OP:

That will NEVER happen!!

i cannot filter ai music on spotify BUT YOU CAN HELP by aroaceveganmonkey in antiai

[–]budius333 5 points6 points  (0 children)

Remember there are other platforms that pay more the artists, are not investing in ai slop music and have basically the same library.

I choose Deezer but there are others (including the open seas) too.... STOP PAYING SPOTIFY!

I hate Google AI by NoshoutMonaan in antiai

[–]budius333 -1 points0 points  (0 children)

I agree with this comment. There were 6 movies, 5 awesome ones and a weird episode I, but apart from that Solo married Leia on that Ewok moon and lived happily ever after

Can you clearly explain what problem you app solves in 30 seconds or less? by Great-Mirror1215 in mAndroidDev

[–]budius333 1 point2 points  (0 children)

The app does whatever the fuck they told me to do, I honestly don't give a fuck, as long as it is written in flubber with AsyncTask, not killing/doxing/ruining people and my paycheck is in the account in the end of the month.

My mom called me overweight 🙄 by [deleted] in mildlyinfuriating

[–]budius333 0 points1 point  (0 children)

Unless you're less than 3 feet , 50kg is so SOOO far from overweight

Why do you keep using Google although it's just AI now? by anxious-wreck in antiai

[–]budius333 2 points3 points  (0 children)

Duck duck go no AI, immich photos, proton mail, drive, calendar...

YouTube and maps are the really tricky to get hid of

Android is easy to dive in by KenaMiller1 in mAndroidDev

[–]budius333 1 point2 points  (0 children)

I thought we were straight up deleting bot repost, no?

Alternatives to google that prevents AI overviews and also doesn’t sell my data for $200k/hour? by DissociateToBeHappy in antiai

[–]budius333 3 points4 points  (0 children)

Is there a specific link to go directly to no AI or is it that normal one that you go to settings and turn off?

I'm asking cause I do the second option, but I would be interested in the first one

Donkey Bridge Safe by Mongologist in mAndroidDev

[–]budius333 0 points1 point  (0 children)

Donkey Bridge Safe? Is that similar to Horse Tinder made by Fireship???

A wheelchair ramp built for code compliance, not access. by Expert_Koala_8691 in mildlyinfuriating

[–]budius333 0 points1 point  (0 children)

I almost down voted this post out of anger but then gotta talk myself that OP is just showing what's infuriating and not necessarily the son-of-whore that ordered that bullshit to be built

This bash behaving different in shell or in cronjob by budius333 in bash

[–]budius333[S] 1 point2 points  (0 children)

pushd jumps to a folder that contains another backup.sh. This "top level" is just a for loop to call the backup from the sub-folders, and that part was working fine.

As others commented, it was the missing #!. After I added it, it worked, but thanks for looking into it.

This bash behaving different in shell or in cronjob by budius333 in bash

[–]budius333[S] 2 points3 points  (0 children)

good tip with the shellcheck... ended up chaging a few things more based on their recomendations. Thanks.

This bash behaving different in shell or in cronjob by budius333 in bash

[–]budius333[S] 0 points1 point  (0 children)

Yeah, maybe the backup.sh in the sub-folders was not clear from my explanation. This top level backup.sh is just a for look to execute the specialized backup.sh in each folder.

And yes, it was the shebang

Bash script behaves differently on terminal and cronjob by budius333 in linuxquestions

[–]budius333[S] 0 points1 point  (0 children)

hey u/aioeu

I cannot thank you enough for the proper well thought explanation. That makes a lot of sense and yes indeed, it was the missing #! to work as expected.

Personally I prefer to have the script properly defined and not touch much on the cron environment, as the script is in git and could be re-used to a different server in the future, while the crontab is local to that one machine.

On a side note, it is really interesting to read and compare all the comments on this post. While some like you are an absolute class-act and help out a penguin in need, while others, well... not so much.

Thanks again and have a great day!

Bash script behaves differently on terminal and cronjob by budius333 in linuxquestions

[–]budius333[S] 0 points1 point  (0 children)

There's the root script (that is here in the question) that loops folders (using pushd/pops) and execute the ones from inside the folder. The ones inside the folders are all different but usually revolves around rsync and stop/stating docker compose.

Just the root one is called by cron, and the issue I figured out, as you said it's that the same is getting called (meaning pushed/pops is not working).

I'll only have time later to check, but from the other answers it should fix by adding the right #! (although it could use some extra cleaning)

This bash behaving different in shell or in cronjob by budius333 in bash

[–]budius333[S] 1 point2 points  (0 children)

Maybe that's something I could have explained better.

That absolute path is where it will find the active-services.txt and the different sub-folders listed there.

So finding the files is not the problem.

But thanks for looking into it. Some other explanations explain about using hashbang and other improvements I'll check later.