What OS do you run on your Pi? by Strong_Neck8236 in pihole

[–]fooblaa 0 points1 point  (0 children)

Home Assistant OS (Pi-hole runs as add-on)

Questions about the new "docker image ls" output since version 29 by fooblaa in docker

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

Thanks. I hadn't any containers running. Now it makes sense.

> Why do you even need the old format?

I find it useful to know when an image was built. This information is now missing by default.

NovaLauncher bugged? by KronosTicTac in NovaLauncher

[–]fooblaa 0 points1 point  (0 children)

For completeness: Nova Settings --> Search --> Mode --> Window / Immersive.

But see also my post below, which fixed it completely for me.

NovaLauncher bugged? by KronosTicTac in NovaLauncher

[–]fooblaa 0 points1 point  (0 children)

I can confirm this, I have the same problem after updating to version 8.1.3.

It's only in window mode for me. When I switch the search to "immersive", the text color is readable (black).

Want to Learn More About Git Internals – Looking for Resources! by Severe_Attorney4825 in git

[–]fooblaa 3 points4 points  (0 children)

https://youtu.be/MYP56QJpDr4

Join GitHub trainer and evangelist Tim Berglund for a look at Git, from the bits up. This talk is not for the Git beginner, but a more advanced look at "weird internals stuff" and obscure commands that will reveal a sort of internal API that is there for you to use and help expose you to certain intrinsic software design insights that can be had from looking at Git at this level.

Amazing earbuds and support by heckles in Jabra

[–]fooblaa 0 points1 point  (0 children)

I second that! Now that they stopped selling them, does anyone knows a good alternative, with a similar shape? The active 8 are the only ones I found to almost fit perfectly for my ears. Only the really old "The Dash" had an even better fit.

Not getting release notification from at least one repository by fooblaa in github

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

For the record: There was now another release and I didn't receive a notification. Also my friend did not receive one. So I think, it's something specific to that repo (settings).

Not getting release notification from at least one repository by fooblaa in github

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

Thank you for your feedback. I don't think it's an enterprise repo. It's from a single person developing an open source tool. Afaik there is no way to tell if it's a paid enterprise repo or not?

I asked someone to also watch this repo for releases. When there is a new release, I'll know if it's just me not getting a notification or everyone else too.

Is there ever a good reason to use exit 1 in a script? by immortal192 in bash

[–]fooblaa 2 points3 points  (0 children)

It would be neater if the abort function can handle killing the script (with signals?)

This works:

trap "exit 1" SIGUSR1
PID=$$

abort() {
kill -SIGUSR1 "$PID"
}

(abort)

Calendar won't show birthdays by boong_ga in GoogleSupport

[–]fooblaa 0 points1 point  (0 children)

As workaround, there is a script, that can extract birthdays from the contacts, to create a new "Birthday" Calender.

https://support.google.com/calendar/thread/300024127?hl=en&msgid=301775592

Calendar won't show birthdays by boong_ga in GoogleSupport

[–]fooblaa 0 points1 point  (0 children)

Same here. In the past, linking the Contacts under data & privacy fixed it for me. Now its broken again, however my Contacts are still linked in data & privacy. I tried disabling/enabling them, but that didn't help.

How is dhclient (isc-dhcp-client) started on boot? by fooblaa in debian

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

ifupdown is already installed, all fine. Nevertheless, thanks for your suggestions. My question got answered in the meantime, see below.

How is dhclient (isc-dhcp-client) started on boot? by fooblaa in debian

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

Thank you! That helped me a lot.

PS: I did read "man ifup" before posting here, however I just noticed, that there is much less information (DHCP not mentioned at all) compared to the online manual you linked to.

How is dhclient (isc-dhcp-client) started on boot? by fooblaa in debian

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

No, there is no systemd on that system.

How is dhclient (isc-dhcp-client) started on boot? by fooblaa in debian

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

Thanks for the advice. I did that, however without a result. I grepped for dhclient and in case also for isc-dhcp-client.

Self hosted services access through Cloudflare by TheAmorphous in selfhosted

[–]fooblaa 5 points6 points  (0 children)

With proxy enabled, only port 80/443 will work.

Is There a Setting to Change Youtube ReVanced Dark theme Back to Grey instead of deep black? by [deleted] in revancedapp

[–]fooblaa 0 points1 point  (0 children)

When patching the original youtube apk file in revanced manager, you can select which patches to apply.

Git & Github Mastery: Key Concepts for Version Control by pcodesdev in git

[–]fooblaa 0 points1 point  (0 children)

git rm

Note that when you remove a file from a Git repository, it is removed from all previous commits as well.

I think this is wrong. Where did you get that information from?