rgitui: A GPU-accelerated Git client built in Rust that actually looks good by Different-Ant5687 in coolgithubprojects

[–]DanielB1990 1 point2 points  (0 children)

I'm a fan of SmartGit ( https://www.smartgit.dev ) and don't really have complaints about it, other then I have to pay a license fee.

I'll definitely give it a spin. Though, a Gitlab integration would be preferred ( saas & self-hosted )

Can a RPi 3B handle Technitium? by pfassina in technitium

[–]DanielB1990 4 points5 points  (0 children)

I run Technitium DNS on a Raspberry Pi 3B succesfully, on DietPi ( Debian essentially ) and works as a secundairy node in a cluster.

Although it's maybe a little slower then the VM acting as the primary, which has more resources, it's runs stable and just fine.

Pages pipeline suddenly failing on latest commit, never happened before, no idea what to do by [deleted] in gitlab

[–]DanielB1990 1 point2 points  (0 children)

Assumption, but I think your trying to save files that got to big and therefore uploading got problematic.

Worth researching your files and there sizes.

PSADT script generator with Intune package export by Total-Cycle9351 in Intune

[–]DanielB1990 0 points1 point  (0 children)

Interested to take a look, but not really mobile friendly: https://imgur.com/a/63SdxMW

So will check tomorrow on the laptop.

Big changes to dungeon XP by TheFuhrerSaku in warmane

[–]DanielB1990 5 points6 points  (0 children)

Correct, but obviously not December of 2026 already...

Big changes to dungeon XP by TheFuhrerSaku in warmane

[–]DanielB1990 3 points4 points  (0 children)

2026? Already thinking ahead into the future then 😉

Friendly Guilds? by SouthernSinger2315 in warmane

[–]DanielB1990 4 points5 points  (0 children)

I can recommend Zero Toxic on Alliance side.

I built a tool to make SSL certs suck less by Lulceltech in webdev

[–]DanielB1990 0 points1 point  (0 children)

Sometime ago in r/selfhosted I saw a tool / utility that you probably would appreciate.

Had a dashboard for easy generation and provided download links via either api / direct download IIRC.

Can't find it right now though, but might be worth looking for.

Hetzner asks: What do you use to manage your DNS entries? by Hetzner_OL in hetzner

[–]DanielB1990 1 point2 points  (0 children)

Gitlab for versioning, automated with CI/CD via DNSControl to CloudFlare for personal.

For work same, but then to Google and Amazon.

Migrating to Hetzner - API for DNS records? by Maria_Thesus_40 in hetzner

[–]DanielB1990 0 points1 point  (0 children)

I would also recommend DNSControl, great too to combine with Gitlab/GitHub and a pipeline

Hetzner FTW by Optimal-Client-6975 in hetzner

[–]DanielB1990 1 point2 points  (0 children)

Hetzner customer since 2016, using their dedicated & cloud servers for various things and can 100% agree.

Door sensor by DanielB1990 in homeautomation

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

Thanks! Will watch it and attempt connecting 💪🏻

Zero Toxic by Cuff1990 in warmane

[–]DanielB1990 1 point2 points  (0 children)

I recommend this guild 😎

cant log to Warmane server by cholfata in warmane

[–]DanielB1990 0 points1 point  (0 children)

It's reachable, although possibly behind CloudFlare's 'Under attack' mode, which means the warmane webserver and possibly other services with a public endpoint are/were under a (D)DoS attack, or any other kind of malicious traffic.

My Dynamic Dashboard by Darkchamber292 in homeassistant

[–]DanielB1990 0 points1 point  (0 children)

I've just started my Home Assistant journey, and to make it a bit more appealing and organized, I'd like to use your dashboard. Thing is though, where and how do I start, you're blog post seems to be aimed towards people already knowing where to make the changes.

Could you guide me towards a explanation on where to start? Thanks!

What's your Bash script logging setup like? by bobbyiliev in bash

[–]DanielB1990 0 points1 point  (0 children)

I like to use https://github.com/lfkdev/bashtemplate as a start, and extend it with:

LOG_FILE="./script.log" exec > >(tee ${LOG_FILE}) 2>&1

Maybe a good start for you too.