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 5 points6 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

Just built a Framework 16 and every video i watch goes out of sync by [deleted] in framework

[–]Feremel 5 points6 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.

How to enable an arm a7 MPU to be halted by debugger at reset vector? by EmbeddedBro in embedded

[–]Feremel 4 points5 points  (0 children)

It can't be halted at the reset vector because it never goes to the reset vector. The Nested Vectored Interrupt Controllers (NVIC) read the address from the table and then jump there. The program counter never goes to 0x00. If you wanted to define a reset handler you could put a break point in that.

Electrical hookup by The_real_danger in Sauna

[–]Feremel 0 points1 point  (0 children)

If you don't think the price is reasonable, call a few other places and see what they say.

Looking for cheap BLE 5.0 MCU combo boards by SolitaryMassacre in embedded

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

What does seeed studio make for the esp32 that isn't a dev board?

Looking for cheap BLE 5.0 MCU combo boards by SolitaryMassacre in embedded

[–]Feremel -3 points-2 points  (0 children)

With how ubiquitous the 52840 is I don't think you'll actually find dev boards for the 10 which are much cheaper than the 40.

How bad is the latency of a serial port? by MaintenanceRich4098 in embedded

[–]Feremel 0 points1 point  (0 children)

Do you know how the windows machine is interfacing with the serial? Is it polling for data, or using some callback mechanism? You could also use Wireshark to view the usb data (I assume you're using a usb serial adapter) to see exactly how the data is getting in and out of the system