walden

joined 11 months ago
[–] walden@wetshav.ing 1 points 1 day ago

That's not necessarily true.

[–] walden@wetshav.ing 3 points 1 day ago

That's Concourse D, which isn't attached to A or B/C. I wonder if they have one near those gates, too.

[–] walden@wetshav.ing 1 points 3 days ago (1 children)

It's also against the NEC in the US, I think. People expect low voltage wires to be low voltage and handle them as such. If a high voltage somehow ends up touching a low voltage bare wire, your friendly Ethernet cable could turn deadly.

[–] walden@wetshav.ing 2 points 1 week ago* (last edited 1 week ago)

I've played around with water twice, most recently within the past couple of weeks.

My house has well water which is very clear and refreshing, but relatively hard. We have a water softener, so what comes out of the tap has 0 hardness.

That doesn't mean there's nothing in it, just no calcium (or magnesium, I think).

My water is also pretty basic (high pH).

Soft, basic water can lead to boring coffee from what I've read.

Most recently I followed the instructions at Barista Hustle to make my own water using distilled water, baking soda, and epsom salt.

I'm loving the espressos I'm getting, so the next thing for me to do is switch back to my well water and see if gets noticeably worse.

To answer your question, though -- it depends on your water.

Look for a water report from your municipality. If things are pretty reasonable, a filter may not change your coffee game.

I've heard that RO filters are the best type, but you may end up removing too much good stuff. In that case you can re-add your own minerals to taste.

[–] walden@wetshav.ing 11 points 1 week ago (1 children)

You don't need a separate list if everyone is getting taxed the same.

[–] walden@wetshav.ing 1 points 1 week ago

I'm currently in the middle of my umteenth watch-through. I'm excited, but naturally nothing can really top the earlier seasons. And that's ok. Any Sunny is better than no Sunny.

[–] walden@wetshav.ing 1 points 1 week ago (1 children)

The iPhone has 2FA enabled, or F-book?

[–] walden@wetshav.ing 6 points 1 week ago

Official word from wildlife experts is to help turtles across the road, carrying them in the direction they're facing.

Except for Snapping Turtles. There's no safe place to grab them unless you have thick leather gloves.

[–] walden@wetshav.ing 5 points 2 weeks ago
[–] walden@wetshav.ing 1 points 2 weeks ago

Thanks for bringing this format to my attention. I opened it in a browser and it's pretty sweet.

Hopefully app support will grown over time... Otherwise it'll be .gif 'till the end.

[–] walden@wetshav.ing 3 points 2 weeks ago (1 children)

If you ever get curious, PieFed has a list of differences. https://join.piefed.social/features/

Nothing wrong with Lemmy, really. The developers just have ideological differences.

[–] walden@wetshav.ing 2 points 2 weeks ago* (last edited 2 weeks ago) (3 children)

I use em dashes all the time but always with spaces, and the ones I use are fake. Just two regular dashes. I didn't notice the lack of spaces -- certainly a bit odd!

Edit: looks like my -- gets translated to an actual em dash in the web gui so that's cool.

 

Frigate is NVR software with motion detection, object detection, recording, etc.. It has matured a lot over the past couple of years and I'm really happy with it.

I've been running Frigate for a while, but with version 0.17.0 it sounded like things have changed enough for me to update how I do things. I'm writing all of the following in case anyone else is in the same boat. There's a lot to read, but hopefully it helps make sense of the options.

Keeping my camera feeds the same, I was interested in switching my object detector from a Google Coral to the embedded graphics in my 13th gen Intel CPU. The main reason for this was because the Google Coral was flaky and I was having to reboot all the time. Maybe because I run Frigate in a virtual machine in Proxmox, so the Coral has to be passed through to the VM? Not sure.

I also wanted to figure out how to get the camera streams to work better in Home Assistant.

Switching from Google Coral to OpenVINO

This was relatively straight forward. I mostly followed these directions and ended up with:

detectors:  
  ov:  
    type: openvino  
    device: GPU  

Switching from the default to YOLOv9

Frigate comes with some default ability to detect objects such as person and car. I kept hearing that YOLOv9 was more accurate, and they even got YOLOv9 working with Google Coral devices, just with a limited set of objects. So, I wanted to switch.

This took me a minute to wrap my head around since it's not enabled out of the box.

I added the following to my config based on these directions :

model:  
  model_type: yolo-generic  
  width: 320 # <--- should match the imgsize set during model export  
  height: 320 # <--- should match the imgsize set during model export  
  input_tensor: nchw  
  input_dtype: float  
  path: /config/model_cache/yolo.onnx  
  labelmap_path: /labelmap/coco-80.txt  

... except for me the yolo file is called yolov9-t-320.onnx instead of yolo.onnx... but I could have just as easily renamed the file.

That brings us to the next part -- how to get the yolo.onnx file. It's a bit buried in the documentation, but I ran the commands provided here. I just copied the whole block of provided commands and ran them all at once. The result is an .onnx file in whatever folder you're currently in.

The .onnx file needs to be copied to /config/model_cache/, wherever that might be based on your Docker Compose.

That made me wonder about the other file, coco-80.txt. Well, it turns out coco-80.txt is already included inside the container, so nothing to do there. That file is handy though, because it lists 80 possible things that you can track. Here's the list on github.

I won't go over the rest of the camera/motion configuration, because if you're doing this then you definitely need to dive into the documentation for a bunch of other stuff.

Making the streams work in Home Assistant

I've had the Frigate integration running in Home Assistant for a long time, but clicking on the cameras only showed a still frame, and no video would play.

Home Assistant is not on the same host as Frigate, by the way. Otherwise I'd have an easier time with this. But that's not how mine is set up.

It turns out my problem was caused by me using go2rtc in my Frigate setup. go2rtc is great and acts as a re-streamer. This might reduce bandwidth which is important especially for wifi cameras. But, it's optional, and I learned that I don't want it.

go2rtc should work with Home Assistant if they're both running on the same host (same IP address), or if you run the Docker stack with network_mode: host so it has full access to everything. I tried doing that, but for some reason Frigate got into a boot loop, so I changed it back to the bridge network that I had previously.

The reason for this, apparently, is that go2rtc requires more than whatever published ports they say to open in Docker. Maybe it uses random ports or some other network magic. I'm not sure.

The downside of not having go2rtc is that the camera feeds in the Frigate UI are limited to 720p. I can live with that. The feeds in Home Assistant are still full quality, and recordings are still full quality.

By removing go2rtc from my config, Home Assistant now streams directly from the cameras themselves instead of looking for the go2rtc restream. You may have to click "Reconfigure" in the Home Assistant integration for the API to catch up.

Hope this helps. If not, sorry you had to read all of this.

 

I made this post 3 months ago: https://sh.itjust.works/post/50242033

@stevetech@aussie.zone was super helpful in checking that my Mikrotik configuration was set up correctly. There's a mess of IPv6 information out there for Mikrotik and it's confusing for a mid-nerd like myself.

Anyway, I checked the other day and boom, I had a prefix assigned by my ISP (Frontier).

Unfortunately Frontier has decided to give out /64 prefixes. The downside to that is you can't use SLAAC inside your LAN to do subnetting (guest networks, VLANs, etc).

So my next step is to learn about DHCPv6 to manage things inside my LAN.

There are comments on other forums that are hopeful that since Verizon bought Frontier, they'll eventually switch to handing out /56 prefixes.

 

Don't worry, this post isn't about shutting anything down or forcing a move to PieFed!

Basically, I've become a huge fan of PieFed as compared to Lemmy. There are philosophical differences between the two, but it is typically left to the admins on whether to implement these differences (icons for new users, icons for people with low karma, tracking karma in general, the list goes on).

Our users, meaning people with accounts on a wetshaving hosted platform (so not including people who interact from other instances), are split about 50/50 between PieFed (https://wetshav.ing/) and Lemmy (https://sub.wetshaving.social/).

What's wrong with the current setup? One minor inconvenience -- the private BVWSC Voting community.

Ideally we would all be on one platform so we all see the voting posts, but as of now it requires workarounds for visibility.

I propose the following:

  1. Turn off registration for Lemmy -- no new users.
  2. For people who land on Lemmy, have a blurb pointing them to PieFed.
  3. Keep Lemmy turned on to preserve everything.
  4. Urge the rest of our users to consider PieFed.

I'm sure there are opinions on both sides and I'm happy to keep things how they are if there's no consensus.

This isn't a cost saving thing or a lack of interest thing, as both servers will be kept on.

PieFed is supported by most of the major mobile apps, but if there's some incompatibility then let me know. I don't have a way of knowing which mobile apps people use.

PieFed does have a way to sort of migrate your Lemmy account so you don't lose all of the communities you're following. So that's cool!

Really the only advantage is having everyone on the same instance for the private voting community. That's it. So sound off if you don't think it's worth it!

 

November 28th, 2025

  • Brush: Maggard Razors 24mm Synthetic
  • Razor: Gillette Red Tip Super Speed
  • Blade: Astra Superior Platinum SP (1)
  • Lather: Summer Break Soaps - Woodshop - Soap
  • Post Shave: Summer Break Soaps - Woodshop - Aftershave
  • Post Shave: Nivea - Sensitive - Balm

Astra SP are very popular, but historically they haven't appealed to me for various reasons. I haven't used one in a while so decided to see if I was missing anything. They're fine... but I'm not missing anything.

The soap base from Summer Break Soaps is incredible! Woodshop is a wonderful, warm scent.

 

I've had Frontier fiber internet for the past 2-ish years. No complaints at all, but the nerd in me desires IPv6. I have the Frontier provided ONT device but declined their router. I have a MikroTik RB5009 which has been "searching" for an IPv6 prefix.

Anyway, I found this link during my research some time ago, and it finally looks like Frontier is enabling IPv6 for people.

I'm still not sure I'll be able to get it until I get the settings just right, but thought I'd share.

 

@porkbuttsntaters666@sub.wetshaving.social was kind enough to send me this selection as a reward for "keeping our servers running". Fitting that it was delivered today after a big Cloudlfare outage (granted only PieFed is set up behind Cloudflare and Lemmy is running around commando)!

I'm starting to run low on balm so that's a welcome addition. I can tell that I'm going to enjoy The Stargazer, also fitting with all of the Aurora activity last week.

I'll finally get to see what all the hype is (was?) around Haslinger. This and Mitchel's Wool Fat are two sort of "classics" that I've never had the pleasure of using (R.I.P Mitchel's).

Thanks for the kind gesture! This is a hobby for me so no thanks necessary, but I appreciate it nonetheless!

 

Congrats @pi_dash_rho@sub.wetshaving.social! Send me your details and I'll ship this out.

Results

 
  • What's a PIF? Pay it Forward - I'm giving this away to a winner.
  • Who can enter? Anyone whose username I recognize. If you're seeing this but haven't interacted with this community before I'll probably just pass your name over. No offense, but this is a unique aftershave and I want it to go to someone who will appreciate it.
  • Why is this being done on Lemmy/PieFed instead of Discord/Reddit? - I prefer not to use Reddit if I don't have to. I won't crosspost it there because it seems in bad taste. I'll crosspost this on Discord, though, because it's a chill bunch there.
  • What is Lemmy/PieFed? Lemmy started as a Reddit alternative, and PieFed started as a Lemmy alternative. Lemmy is the OG, and PieFed is the new kid in town. I can't make a decision for you on which to join, but my personal preference these days is PieFed (though all of the SOTD posts are still made on Lemmy. Either way, make an account on either one (or both) and subscribe to wetshaving and interact from there.

This is a used aftershave, and I think someone along the lines must have added more cooling agent than the default. All or most CL aftershaves have a little bit of menthol, but this one hits way too hard for me.

To enter, just leave a comment here to the tune of "I'm in".

CONUS only, unfortunately. Alcohol and whatnot. If you want to enter and have me ship it to a re-shipper, I have no qualms with that.

The PIF will close in roughly 2 or 3 days, and I'll ship it out in the next week or two depending on work :-)

 

I don't think he's on the fediverse, so figured I'd make a post about TheStallionPartThree's new soap busines, Fanzine Saponifications. Available on Etsy. Link ----> https://www.etsy.com/shop/FanzineSapone

This is Not a Test is an original scent by him using EO's.

Caravaggio is a dupe of Killian Dark Lord.

There are also some shaving brushes available made by Rad Dino.

 

After seeing pictures of it and voting for it on multiple occasions on the contests held here, I got to see a Eurasian eagle-owl in person today. I was a little far away so the picture isn't that great, but I was very impressed.

I also got to see a Barn Owl, and it was beautiful!

view more: next ›