walden

joined 8 months ago
[–] walden@wetshav.ing 0 points 1 week ago* (last edited 1 week ago)

What's your opinion of people dropping capital letters at the beginning of sentences over the years, especially in informal online spaces?

I just noticed one more thing. You confidently say that the current record is held by Apollo 13. In the link you provided earlier (https://en.wikipedia.org/wiki/Apollo_13#cite_note-130), it says they only beat Apollo 10 by 240 km. If 240 km is good enough for you to believe 13 holds the record, then how come you don't want to accept the upcoming record with a difference of 6602 km?

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

If the moon wasn't adjacent to their path, would they ever get pulled back to earth by earths gravity?

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

Thanks for the explanation. It's an odd combination of pedantry and ignoring facts.

Apollo 13 - 400,171 km (248,655 miles)
Artemis 2 - 406,773 km (252,757 miles)

One of those is clearly further.

I tend to agree about language changing, presidents not having speech writers because they can't read anyway, etc., but in the case of "not breaking a record because it's not a high enough margin" I have to completely disagree.

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

Sorry, if they break the record by 1%, but also "no, they are not", then which one is it?

I know it depends on timing and stuff as far as their furthest distance from Earth. Is it the "distance travelled" statistic? Like actual mileage flown as opposed to absolute distance from Earth?

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

Such a cool photo with the auroras.

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

Very expensive... But the Nuwave is very nicely built and nearly silent on the lower settings. It comes with enough filters to last you 5+ years. Replacements after that seem to be $20 each, and they last a year.

I don't use the wifi function, but it's a thing.

The price has gone up a lot since I bought it. Would be hard to justify now.

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

I half agree with you. I shower daily but only use soap on my pits and bits. If I've done yardwork or exercise I'll hit everything with soap, though.

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

You didn't ask me, but as someone who has fiddled with these things my favorite sensor is the BME680, specifically the board that Adafruit sells. It costs more than other sensors, but that's because it's the best. It also does temperature, atmospheric pressure, and measures VOC. I think you can even use it to detect when someone takes a poo, but I haven't tried.

I connect mine to LOLIN D1 Minies running Tasmota.

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

That's wonderful.

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

I will miss the auto-post on the 9th of each month.

Thanks for the chuckles.

[–] walden@wetshav.ing 0 points 3 weeks ago

Ah, for head shaving, from what I understand, it becomes more difficult for us face shavers to make a recommendation. I've heard over and over that the absolute best head shaving razor is the Blackland Vector, but at $220 USD it might be out of your budget. It'll last you multiple lifetimes, though. It takes AC blades.

As far as Hajamat, they appear to be clones of the Edwin Jagger DE89. DE89 clones are a dime a dozen, because it's a generally good, inexpensive design. They're all made out of Zamak, including the Edwin Jagger ones.

I heard years ago that the Muhle version of the DE89, which they call the Muhle R89, has brass threads instead of Zamak. That's the version I have, but I haven't scratched the chrome plating off to test. Brass is much better than Zamak, for what it's worth.

Anyway, at this point I think you should stray from that razor head. You've been there, done that. Check https://italianbarber.com/ and see if anything strikes your fancy. Most of their razors are stainless steel, Made in Canada, and are cheaper than similar options. They have this chart to help choose which razors to consider (just keep in mind aggression/blade feel/efficiency are all subjective, so this chart is just "an effort"). One of my favorite razors is the RazoRock GOAT, which hasn't made it into that chart yet.

 

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 also posted this at !networking@sh.itjust.works and someone told me about this community.

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.

 

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 ›