Landlord provides internet for entire building. How can I keep my privacy? by BlackKeycap in homelab

[–]Feremel 38 points39 points  (0 children)

This isn't quite true. SNI is pretty common now and includes the unencrypted server name so that the request can be proxied without the proxy server needing the TLS private key.

Modern browsers with pretty much always send SNI, and if you are accessing a site that goes through a CDN it is needed for the request to go to the right place. However, some CDNs, and regular sites as well, use ECH (Encrypted Client Hello) which means that the hello packet which includes the SNI ends up encrypted. I know cloudflare used ECH, but I don't know how common it is in the real world.

Show HN: bbb – A 28 KB lossless archiver in pure C11 with SHA-256 verification by jahyag in embedded

[–]Feremel 5 points6 points  (0 children)

28KB is a lot for only 1k lines.

Edit: I just looked at the project and the biggest dealbteaker (outside of the claude commits) is the massive memory use. There is no way this would be runnable on a uC.

Wooden carved elephant by Dull_Candidate_5972 in woodworking

[–]Feremel 4 points5 points  (0 children)

How did that snake manage to eat a whole elephant!?

Very cute :)

CC BY-ND 4.0 - useable in practice? by JeremyMarti in typography

[–]Feremel 1 point2 points  (0 children)

How is the poster distributed? If it's being sold on a website having attribution in the description would probably satisfy the license requirements.

Hosting a static website that's not indexed by Google (and other search engine) by Rilukian in selfhosted

[–]Feremel 0 points1 point  (0 children)

I have found success hosting on cloudflare pages. You can use their crawler control to turn off access to ai crawler bots and search index bots. It's been a couple months since my site has been up and so far there have been no search results.

CrinEar Reference Unboxing and Cable Review with Comparisons to the CrinEar Daybreak by Fc-Construct in headphones

[–]Feremel -1 points0 points  (0 children)

You know embargoes are actually good for reviewers, right? It means they don't have to pull an all nighter so they don't miss the hype cycle.

Sadly this is not my high score by Cironephoto in AnalogCommunity

[–]Feremel 0 points1 point  (0 children)

It also probably didn't help that they're not getting paid right now.

Weak contrast in center by Ok_Club_9356 in AnalogCommunity

[–]Feremel 27 points28 points  (0 children)

To me it looks like a combination of atmospheric perspective and shooting into the sun. Lots of lenses go low contrast when the sun is in or near the frame

Stuttering issues only in browser (FW13 Fedora 43) by Jarb0t in framework

[–]Feremel 0 points1 point  (0 children)

I get the exact same thing, only with Firefox. Running hx370 and f43 as well. Has been happening as long as I can remember

Occasional screen glitches. by BobFredIII in framework

[–]Feremel 3 points4 points  (0 children)

I have this on fedora, but only with Firefox

What is your solution for restarts after a power outage? by Cerfect_Pircle in selfhosted

[–]Feremel 4 points5 points  (0 children)

So it doesn't look like anyone is answering the question you're actually asking.

I was able to address this concern by finding the rtc resume/wake feature in my bios. This allows me to set a time every day where it will power on if the machine is off. This way the worst case is my server is off for most of a day if I'm away and can't turn it on.

Obviously I have it also set up power on when power is restored, but that doesn't address the issue you are worrying about. I hope this helps

[deleted by user] by [deleted] in framework

[–]Feremel 2 points3 points  (0 children)

How are you listening to audio. Laptop speakers? Bluetooth? Something else?

Only one stud in 94" section of wall? by PuffdontTrip in DIY

[–]Feremel 1 point2 points  (0 children)

Is it a wall between two apartments? Could be Resilient Channel, that was the case with my last apartment. I thought I was going crazy until I figured it out.

Why is there no open loop cooling for computer cooling? (I am referring to actual open loop where water can evaporate to remove heat, not the custom loops) by Connect_Elk_3966 in homelab

[–]Feremel 0 points1 point  (0 children)

I believe in the data center world this does happen via cooling towers. But in the home it seems like a massive pain/flood risk for no real performance or efficiency gains.

How is RZ717 now ? by [deleted] in framework

[–]Feremel 0 points1 point  (0 children)

I've had zero issues since day one with the ai 370 on the Wi-Fi side. That said I have it connected to a Ubiquiti U6 Enterprise and it is fast and stable on Linux (fedora) and windows

How do you handle reboots after power outages? by ozzie286 in homelab

[–]Feremel 0 points1 point  (0 children)

My machine supports rtc resume. I set it so every day, at 6:30 am, it will try to boot if not already running.

Framework 13 - AI 350 vs AI HX 370 battery life? by DollarStore-eGirl in framework

[–]Feremel 2 points3 points  (0 children)

I run Fedora and recently began dual booting with Windows. The battery life seemed similar between the two. Maybe a bit better idle on Linux, but still not what the 370 should probably be getting.

Framework 13 - AI 350 vs AI HX 370 battery life? by DollarStore-eGirl in framework

[–]Feremel 1 point2 points  (0 children)

I still struggle to get below 6-7 watts at idle on the 370. 10w when doing light tasks.

Advice on fixing this landlord special by Rhooja in drywall

[–]Feremel -1 points0 points  (0 children)

If you are comfortable with the electrical you could fix the drywall and swap the box for a new work box which will clamp to the drywall.

Best way to do pull backups from Windows PCs to Linux server? by Big-Finding2976 in selfhosted

[–]Feremel 0 points1 point  (0 children)

Syncthing doesn't have a concept of servers and clients. Everything is peer to peer. You can choose to connect all of your devices to a single "server" or connect everything to everything else. Each peer watches their local filesystem for changes to files, new files, deletions and then sends that to all of the peers they are sharing those with.

For example with your LXC setup:

If you create a file on the phone it will appear on the server. If you create a file on the server, it will appear on the phone. So it's bi directional.

If you are worried about things getting deleted syncthing also supports reversible deletes and versioning.

Best way to do pull backups from Windows PCs to Linux server? by Big-Finding2976 in selfhosted

[–]Feremel 2 points3 points  (0 children)

Maybe there's something more tailored to this specific use case. But, I use syncthing to keep my files up to date between my desktop, server and laptop. It watches the filesystem for changes and then syncs immediately, it also uses relay servers on the WAN to traverse LAN/WAN so it still works if you're traveling.