• 0 Posts
  • 31 Comments
Joined 5 months ago
cake
Cake day: January 31st, 2024

help-circle

  • They can be slow to adopt changes. I think the Mozilla foundation getting more funding, staffing, and refocusing on their browser would be the better solution.

    While Chromium is an open source project, it is still developed and maintained by Google. For something as important as a web browser, I think it’s imperative that there’s an option outside of their control.


  • That’d certainly be a good feature, but it feels to me like it’s a fairly niche need. And as per that post, it’s also a big technical effort. I can see why there isn’t anything in the way of development updates.

    That is me being a bit of an apologist for Firefox though. If you consider Firefox unusable because of that, then that’s a pretty valid frustration.

    Still, I’d encourage you to try and find a way to make it work for you because Chrome is evil.


  • As long as the record is in good condition, I find the sound comperable. I’ve played the same song on a high bitrate digital audio file and on vinyl and I found both equally pleasing to listen to.

    I have a Fluance RT80 turntable, and am using the built in preamp. It’s connected to a home audio receiver (Sony STRDH590) with a 2.1 speaker setup (Polk Audio Monitor 60 Series II Floorstanding Speakers and a Polk Audio PSW10 10" Powered Subwoofer). A pretty midrange setup in others words. And I’m no audiophile, so weigh accordingly.

    Edit: I realized you asked specifically about streaming. This link https://support.spotify.com/us/artists/article/audio-file-formats/ indicates that Spotify does up to OGG 320kbps/AC3 256kbps which is comparable to my personal audio library. So, statement holds.








  • I wonder how repairable and maintainable these will be as compared to EV’s from other markets and if replacement batteries will be available as the original ones reach the end of their useful life.

    If these concerns end up being valid, and the tariffs are large enough that these cars aren’t priced particularly competitively, that’d be enough for this EV consumer to pass it up for his next vehicle. Will be interested to see how it plays out.

    Edit: Wanted to say I’m not against Chinese EV’s. If it ends up making sense to get one, I will.





  • It doesn’t copy data, no. Symlink is short for symbolic link. So it’s a pointer to another location. But it might be useful for you. Taking a guess at your goal, here’s a relevant example.

    Say you moved all of your emulation stuff stored under /media/largehdd/retroarch. You could then symlink that directory to ~/.config/retroarch like so:

    ln -s /media/largehdd/retroarch ~/.config/retroarch

    That data is still stored on the large drive but will now also show under that symlinked directory.






  • This doesn’t fit the question exactly but I feel it’s in the same spirit, and a kind of interesting solution, I think.

    Back in the early days of scryptcoin mining, I had a few gpu mining rigs running Linux. Occasionally they would hard lock and I’d have to power cycle them.

    What I ended up doing is getting some usb to serial adapters, wrote a python script that ran on startup and would send a character over serial at a set interval in a loop. That was hooked up, if I recall correctly, to an attiny85 using softwareserial and some ttl to rs232 conversion. It would listen over serial and if it didn’t receive anything with a reasonable time frame it’d flip a relay that cut mains power to the pc, then flipped it back. A deadman’s switch, of a sort. It worked great!