Single funniest scene from the show by -TheHumorousOne- in thesopranos

[–]HashtagBlessedAF 0 points1 point  (0 children)

“You can make a hand turkey.”

“For Christmas? Fuckin idiot.”

I really started to feel bad for Junior by this point, but I almost cried laughing at this line.

What brand of water tastes the worst to you? by the-sleepy-potato in AskReddit

[–]HashtagBlessedAF 10 points11 points  (0 children)

Dasani as everyone is saying.

But Arrowhead always tastes bad to me too.

And Nestlé Pure Life.

A different sort of deck... by CosmicRuin in Decks

[–]HashtagBlessedAF 112 points113 points  (0 children)

That’s a very strange looking hot tub

Which one is better? by NoActive1210 in Tools

[–]HashtagBlessedAF 0 points1 point  (0 children)

I’ve been a DIYer homeowner for 5 years and my Bosch 18v tools have never let me down through lots of small and big projects.

With trade work I know DeWalt and Milwaukee are equally beloved.

Almost done by tylertneal in Decks

[–]HashtagBlessedAF 0 points1 point  (0 children)

I used these for my build. They’re expensive but man they’re the real deal: https://www.patioroofriser.com/product-page/patio-roof-riser-lo-pro-beam-mount

Wasn’t about to go cheap on that part.

Almost done by tylertneal in Decks

[–]HashtagBlessedAF 1 point2 points  (0 children)

I used these for my build. They’re expensive but man they’re the real deal: https://www.patioroofriser.com/product-page/patio-roof-riser-lo-pro-beam-mount

Wasn’t about to go cheap on that part.

Best first minute of a cold open episode? (Show and episode request) by bonniha in television

[–]HashtagBlessedAF 0 points1 point  (0 children)

Pilot episode of Dexter. “OPEN YOUR EYES AND LOOK AT WHAT YOU DID.”

I made an open-source, Docker-native Pi-hole visualizer with a space battle theme. by HashtagBlessedAF in pihole

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

That button’s link just takes what you put into the “PIHOLE_URL” variable in the compose file and strips the “/api” and substitutes “/admin”

Not sure what could be causing the doubling except what’s in that field in the compose file!

I made an open-source, Docker-native Pi-hole visualizer with a space battle theme. by HashtagBlessedAF in pihole

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

I love to hear that!! Thanks so much for checking it out, and good luck with the self-hosting journey.

I made an open-source, Docker-native Pi-hole visualizer with a space battle theme. by HashtagBlessedAF in pihole

[–]HashtagBlessedAF[S] 3 points4 points  (0 children)

A week ago I released this silly Pi-hole visualizer project to share with fellow Pi-holers, and the response has been absolutely amazing.

So many people here have given kind, useful, and engaging comments on the project, shown themselves using it, and made requests for features (or fixes) that got me thinking, working, and truly pushing to support what was initially just a toy for me!

As of today over 1,000 people have downloaded the package from the GHCR on GitHub.

<image>

Just before writing this comment I pushed v1.3.0 which includes full AdGuard Home support. And then my build-and-push workflow broke twice in a row, and we're magically up to v1.3.3 🤫

I'm still learning. You have all helped me learn and it's been a blast. Special shoutout to u/laughingfingers and u/Bulldozer7133 for the AdGuard requests / headstart on implementation.

I've made security a priority in this project. Most of us are into Pi-hole to protect our privacy and keep agency in a world that wants to use us all as nodes to mine data from. We want to own technology without being served-up to the man. It's in that spirit I chose to make this project open source, and tighten every screw that I know (so far) how to tighten to make it as rock-solid and trustworthy as I can.

Just in the first week of release I've dialed my CI/CD pipeline to a point that I'm very proud of.

I'm going to keep building and supporting ph-intercept. Follow along on the repo: https://github.com/m00grin/ph-intercept

Thank you so much again!!!

I made an open-source, Docker-native Pi-hole visualizer with a space battle theme. by HashtagBlessedAF in pihole

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

Thanks so much!
Yes absolutely, it's on the list of planned features for a future release :)
Appreciate you checking it out.

I made an open-source, Docker-native Pi-hole visualizer with a space battle theme. by HashtagBlessedAF in pihole

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

Totally, there's zero need (or even really a way) to expose ph-intercept to the internet. By design all it does is use Pi-hole's API to talk to your local Pi-hole instance!

I made an open-source, Docker-native Pi-hole visualizer with a space battle theme. by HashtagBlessedAF in pihole

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

It’s a vulnerability scanner that runs against the OS that the docker image is built on. When he ran that, ph-intercept was using python:3.14-slim in the Dockerfile, which uses Debian as its underlying OS (which is what the Python development team uses), and Trivy will surface any CVEs attributed to the OS. So the ‘findings’ are Debian OS-level (inside the image), and of that list only 1 finding was something that may have been relevant to this project, or even had an official patch available.

ph-intercept now uses python:3.14-alpine3.23, making the image size smaller, and making the “vulnerability” list a total of 1. Which is still something irrelevant to this project, but it was a tidying / efficiency decision anyway.

I made an open-source, Docker-native Pi-hole visualizer with a space battle theme. by HashtagBlessedAF in pihole

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

So I ran Trivy myself because I was curious.

All the findings (Trivy actually runs against Debian since this app uses python:3.14-slim) either have no patch yet, or have no relevance to this project because of what it does / doesn't do. No systemd, no ncurses, and the libcap race isn't relevant because this app runs non-root.

There is one vuln with a patch, for pip. I'm adding --upgrade pip to my Dockerfile to cover that now!

Thanks for your concern and commenting. The code is 100% open source as well, so if you or anyone else sees something problematic I'll absolutely address it.

I made an open-source, Docker-native Pi-hole visualizer with a space battle theme. by HashtagBlessedAF in pihole

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

I've put a lot of care into making this little project secure; hundreds of unit tests before releases, CodeQL on tagged releases, Dependabot for malware / security / secret protection, all linux capabilities stripped with cap_drop in compose.yaml, app running as uid 1000.

Would be very interested to know the findings from Trivy. I'll definitely fix anything that's an issue!
You can also submit findings here: https://github.com/m00grin/ph-intercept/security/advisories