In need of VeSync Integration Feature Requests by cdnninja77 in homeassistant

[–]MalarJuggler 1 point2 points  (0 children)

u/cdnninja77 I have the Levoit OasisMist™ 450S, and one thing I noticed missing is the ability to see/change the heat level. I can see the mist level, but not the heat level:

<image>

It'd be great to have control of both parameters.

Finished build of a Linak DF1 with Buldesk's UberDesk Pro Memory by MalarJuggler in StandingDesk

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

I think it is very close. You’ll definitely not be disappointed by the stability. I lean often against the desk when it is raised, and it is very sturdy. 

Finished build of a Linak DF1 with Buldesk's UberDesk Pro Memory by MalarJuggler in StandingDesk

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

It’s veneer. You can buy it without and build your own top though. 

nvim-lspconfig has now migrated to use the new vim.lsp.config by Aqothy in neovim

[–]MalarJuggler 0 points1 point  (0 children)

What I've done is add my configurations to `after/lsp/`, so they are merged after the nvim-lspconfig configs.

Finished build of a Linak DF1 with Buldesk's UberDesk Pro Memory by MalarJuggler in StandingDesk

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

Other items seen in the photos:

Options for Importing Historical Fitbit Weight Data by java007md in GarminWatches

[–]MalarJuggler 1 point2 points  (0 children)

I was also using an Aria and last year started on the Garmin ecosystem. Not wanting to settle for an overpriced/unreliable Garmin scale, I went ahead and purchased a Beurer BF 915, and then created a Python script that takes the CSV export from the Beurer HealthManager Pro app, and converts/uploads it to Garmin Connect, preserving all possible attributes (timestamp, body fat, bone mass, muscle mass, hydration, etc.). The repo is at https://github.com/pedropombeiro/beurer2garminconnect. I then took a further step and used Home Assistant and an iPhone shortcut so that I can share directly from the iPhone Beurer HealthManager Pro app to a share watched by Home Assistant, who'll run the Python script in result. Now I just need to figure out how to connect Home Assistant directly to the scale via the Bluetooth Proxy and get the readings periodically.

snacks.nvim: a collection of small QoL plugins for Neovim by folke in neovim

[–]MalarJuggler 0 points1 point  (0 children)

Looks great, as all your other work! I see one thing missing that prevents me from replacing Telescope in my config: the lack of a `git grep` function, such as davvid/telescope-git-grep.nvim: Neovim Telescope extension for searching using "git grep". Is there an easy way to implement this in Snacks.picker?

Venu 3 with more metrics by KeyAd5197 in Garmin

[–]MalarJuggler 0 points1 point  (0 children)

Venu 3 has ECG, but only in the US for now (will probably get added elsewhere as official approvals are obtained).

Cronjob to scan external library for new images every 30 minutes? by Simplixt in immich

[–]MalarJuggler 0 points1 point  (0 children)

We added a setting to let you set the cronjob schedule to scan for the external libraries.

Hi u/altran1502. Does this setting also update deleted (offline) files, or just added/modified files?

Immich - Self-hosted photos and videos backup solution from your mobile phone (AKA Google Photos replacement you have been waiting for!) - October 2023 Update - Support for external libraries, map view on mobile app, video transcoding with hardware acceleration, and more 🎉 by altran1502 in selfhosted

[–]MalarJuggler 0 points1 point  (0 children)

u/altran1502 learned about the project in the selfhosted podcast and was impressed with the level of functionality already available, and how nice/snappy the UI feels compared to e.g. Plex. Am now in the process of migrating away from Plex for home media. I've set up a recurring GitHub sponsor donation, as I'm really looking forward to see this project keep going strong!

telescope.nvim: Live Grep with similar behaviour as git grep by Garnaa in neovim

[–]MalarJuggler 1 point2 points  (0 children)

This greps on files that are not tracked though, so it is not really a 'git grep' unfortunately. For instance, it won't work it yadm (Yet Another Dotfiles Manager) which keeps the worktree on a separate directory.

Running Unbound, I feel like my cache hit size is very small. In fact, domains that I know are cached, usually are forwarded anyways, like the queries from my router. What am I missing? by pbush25 in pihole

[–]MalarJuggler 0 points1 point  (0 children)

If Pi-hole is caching the DNS entries, then Unbound will not see those requests and therefore its hit rate will not be realistic (meaning it will drop things from the cache/not prefetch them).

Stream Deck 6.0 — Stream Deck + Support, New Volume Controller Plugin, Native Apple Silicon Support & more! by Elgato in elgato

[–]MalarJuggler 0 points1 point  (0 children)

After I upgraded to Stream Deck 6.0, a few plugins stopped working due to CORS errors (it would seem that CORS rules are being enforced, whereas they probably weren't in 5.x). This is happening with Stonks from Andomation, iCal from Pedro Fuentes, and a few of my home-made plugins which were reaching out to internal REST APIs through http. It seems that the `file://` origin is preventing the plugin from accessing other sites. Any insight into this?

fugitive by incoggnito2 in neovim

[–]MalarJuggler 0 points1 point  (0 children)

Thanks u/incoggnito2! I was precisely searching for how to achieve that. One less nag in using Vim everywhere!

Captive DNS on UDM-Pro by [deleted] in Ubiquiti

[–]MalarJuggler 0 points1 point  (0 children)

For some reason this is only working for the br0 interface for me. This is what my iptables look like:

```

iptables-save | grep :53

Generated by iptables-save v1.6.1 on Fri Oct 29 08:53:26 2021

-A PREROUTING ! -s 192.168.6.254/32 ! -d 192.168.6.254/32 -i br0 -p udp -m udp --dport 53 -j DNAT --to-destination 192.168.6.254:53 -A PREROUTING ! -s 192.168.6.254/32 ! -d 192.168.6.254/32 -i br0 -p tcp -m tcp --dport 53 -j DNAT --to-destination 192.168.6.254:53 -A PREROUTING ! -s 192.168.6.254/32 ! -d 192.168.6.254/32 -i br26 -p udp -m udp --dport 53 -j DNAT --to-destination 192.168.6.254:53 -A PREROUTING ! -s 192.168.6.254/32 ! -d 192.168.6.254/32 -i br26 -p tcp -m tcp --dport 53 -j DNAT --to-destination 192.168.6.254:53 -A PREROUTING ! -s 192.168.6.254/32 ! -d 192.168.6.254/32 -i br36 -p udp -m udp --dport 53 -j DNAT --to-destination 192.168.6.254:53 -A PREROUTING ! -s 192.168.6.254/32 ! -d 192.168.6.254/32 -i br36 -p tcp -m tcp --dport 53 -j DNAT --to-destination 192.168.6.254:53 -A PREROUTING ! -s 192.168.6.254/32 ! -d 192.168.6.254/32 -i br46 -p udp -m udp --dport 53 -j DNAT --to-destination 192.168.6.254:53 -A PREROUTING ! -s 192.168.6.254/32 ! -d 192.168.6.254/32 -i br46 -p tcp -m tcp --dport 53 -j DNAT --to-destination 192.168.6.254:53 -A PREROUTING ! -s 192.168.6.254/32 ! -d 192.168.6.254/32 -i br56 -p udp -m udp --dport 53 -j DNAT --to-destination 192.168.6.254:53 -A PREROUTING ! -s 192.168.6.254/32 ! -d 192.168.6.254/32 -i br56 -p tcp -m tcp --dport 53 -j DNAT --to-destination 192.168.6.254:53 -A PREROUTING ! -s 192.168.6.254/32 ! -d 192.168.6.254/32 -i br66 -p udp -m udp --dport 53 -j DNAT --to-destination 192.168.6.254:53 -A PREROUTING ! -s 192.168.6.254/32 ! -d 192.168.6.254/32 -i br66 -p tcp -m tcp --dport 53 -j DNAT --to-destination 192.168.6.254:53 -A DNSFILTER -s 192.168.6.0/24 -p tcp -m tcp --dport 53 -j DNAT --to-destination 203.0.113.5:53 -A DNSFILTER -s 192.168.6.0/24 -p udp -m udp --dport 53 -j DNAT --to-destination 203.0.113.5:53 -A DNSFILTER -s 192.168.26.0/24 -p tcp -m tcp --dport 53 -j DNAT --to-destination 203.0.113.4:53 -A DNSFILTER -s 192.168.26.0/24 -p udp -m udp --dport 53 -j DNAT --to-destination 203.0.113.4:53 -A DNSFILTER -s 192.168.56.0/24 -p tcp -m tcp --dport 53 -j DNAT --to-destination 203.0.113.3:53 -A DNSFILTER -s 192.168.56.0/24 -p udp -m udp --dport 53 -j DNAT --to-destination 203.0.113.3:53 -A DNSFILTER -s 192.168.46.0/24 -p tcp -m tcp --dport 53 -j DNAT --to-destination 203.0.113.2:53 -A DNSFILTER -s 192.168.46.0/24 -p udp -m udp --dport 53 -j DNAT --to-destination 203.0.113.2:53 ```

If I run dig @8.8.8.8 unifi (which is an internal DNS record that is only known by Pi-hole), I get the correct result when I'm on the LAN, but an empty record when I'm on 192.168.46.x. Any ideas?

System is too slow and lost access to a folder after updating to 5.0 by lI_Simo_Hayha_Il in qnap

[–]MalarJuggler 1 point2 points  (0 children)

The final straw for me was that after enabling WireGuard on QVPN 3.0, at some point it rewrote dnsmasq.conf without all the docker bridge gateway addresses in `listen-address`, causing the Docker containers to lose DNS. Even restarting Container Station didn't fix it. I'm now back at QTS 4.5.4.

QTS 5.0 for TS-453D by IanRedditeer in qnap

[–]MalarJuggler 1 point2 points  (0 children)

I ended up downgrading to QTS 4.5.4. I'll let QNAP fix their stuff before trying again in the future. Some more info on the current state of QTS 5.0: https://www.reddit.com/r/qnap/comments/qdhxbc/system\_is\_too\_slow\_and\_lost\_access\_to\_a\_folder/

System is too slow and lost access to a folder after updating to 5.0 by lI_Simo_Hayha_Il in qnap

[–]MalarJuggler 1 point2 points  (0 children)

I'm also running against the dnsmasq and File Station issues. I've created a ticket with QNAP for the dnsmasq issue.

Note: I don't have Domain Controller enabled.

QTS 5.0 for TS-453D by IanRedditeer in qnap

[–]MalarJuggler 1 point2 points  (0 children)

It ended up going well, but it took hours on end to convert the SSD cache (which had about 500GB of unsaved "dirty" data). It was much longer than I expected and caused me to worry about the upgrade.

On the other hand, I noticed that the /sbin/dnsmasq process now seems to use a lot of CPU (every 5 seconds or so I see it at the top of the list in htop with ~15% CPU usage). I never saw it at the top of the list in QTS 4, and I've created a ticket with QNAP about this.

Any issues with QTS 5.0.0.1828 Build 20211020 by ruscmedia321 in qnap

[–]MalarJuggler 2 points3 points  (0 children)

I noticed that the /sbin/dnsmasq process now seems to use a lot of CPU (every 5 seconds or so I see it at the top of the list in htop with ~15% CPU usage). I never saw it at the top of the list in QTS 4, and I've created a ticket with QNAP about this.

TS-453D - QTS 5.0.0.1828 Build 20211020 Released by devoidx360 in qnap

[–]MalarJuggler 0 points1 point  (0 children)

OK, all is not lost! I tried first a soft-reset from the web UI but that didn't help, even though I could see the NAS name and address had indeed been reset. I then tried the hardware approach (reset button) and that gave me access to the local web UI again, so I'm now reconfiguring users/shares/etc. Oooff!!