• 3 Posts
  • 116 Comments
Joined 1 year ago
cake
Cake day: September 7th, 2023

help-circle





  • That’s actually very easy to do and you don’t need any special equipment. Simply use a male-male 3.5mm cable and connect one end from the stereo output of the cassette player and the other end into the microphone jack of any computer you own. Play the cassette - you can test the audio quality by running arecord -f cd - | aplay - - you will have to tune the volume output of the cassette player and the input sensitivity of the microphone.

    From there, if you’re paranoid, you could use arecord to save the output to a .wav file and encode it once the recording is done, but I had no problem just using oggenc directly on the piped audio. The final command looked like this: arecord -f cd - | oggenc -q 5 -o file.ogg - (change to -q 10 if you want lossless encoding).

    I’m not sure if this is the best quality per se, but I would definitely recommend it over using specialized equipment like cassette-mp3 converters. The problem with those devices is that if they use underpowered hardware, you might experience buffering issues where the encoding hardware can’t keep up with the audio stream or something like that. But doing it on a computer ensures that you will have all the processing power you need to make sure that this doesn’t happen.

    Good luck! I found it very easy to do - it took 5-10 minutes of setup.



  • I’m working my way through Valheim. I started last year and then stopped shortly before fighting the second boss and never got around to picking it back up. Now I’m back at it and working through the third biome. I still have a long way to go and hope that I can continue to sink at least 100 more hours into it.

    I also got Metro 2033 and Last Light on the Steam winter sale. I started Metro Exodus a few years ago and also stopped pretty early, so I’m hoping that this time I can stick with it through the whole series. I also got Grim Dawn and it doesn’t play great on the Deck, but hopefully I’ll be able to get used to it with a bit of effort.

    Outside of those, Wildermyth and Brotato are my main chillout games and I’m pretty sure they’ll also get 50-100 hours each this year.






  • Indeed, Reddit was a great example of this. All of the stupid things they tried to pull off in the past few years (selling user data, turning off the API, insulting their users, VPN blocking, to name a few) would have not worked when they were a growing website. Now that they have so many low quality users, they can do that successfully because they know that said users are too dumb to realize how they’re being abused. Even larger websites like Twitter and Facebook operate this way.

    The takeaway here is: don’t focus on having many users, focus on having good users. All relationships are a two-way street, and if you’re on the side of the street with too many people, you don’t have any personal leverage on your own. It’s in your best interests to get out of that relationship.



  • But part of the appeal of Linux is the fact that you can repurpose existing computers running other OSes to run Linux instead. This is a great way to lower the barrier to entry for Linux, because it’s easy to test it on a Live USB or a dual boot. It’s much harder to do this on phones because they have locked bootloaders.

    Another problem is that phones are not productivity devices - they’re consumption devices. Maybe this is just my personal bias, but I don’t think people will be as passionate about liberating their phones because they’re inherently less useful than computers. Convenient, yes, but useful? Not as much.

    That said, I would love to be proven wrong. I would definitely consider a Linux phone if they become more popular/useful, but I can’t really justify spending hundreds of euros/dollars on something for which I don’t see any particular use.





  • I agree, I don’t think they have any limit. Look at how invasive platforms like Facebook are, and yet they’re still massively popular. Mobile operating systems are several times worse than Windows is for privacy and data harvesting, and people clearly don’t care at all. They’ll even happily consent to ever more levels of it - there’s no evidence to suggest that they’ll ever stop.

    One of the biggest “mistakes” Microsoft made was not realizing how lucrative data collection could be. Back in the quaint old days of early PC computing, spyware was actually considered a bad thing. When Google came along, that philosophy was flipped on its head. Over the past 15 years, Microsoft has seeing what these spyware vendors are doing and salivating because they know that they are still the kings of computing - they still have total control the PC market and there’s a good chance that it’s not really going anywhere because most people hate change - even though Linux is starting to make inroads in quite a few places.

    It would not be surprising if, in a few years, a Windows OS looks like a Google search page, or a cable television channel.



  • I haven’t done too much work with WASM myself, but when I did, the only languages I saw recommended were Rust, C++, or TinyGo. From what I’ve heard, Rust and C++ are smoother than TinyGo. Garbage collected languages usually aren’t great choices for compiling to wasm because wasm doesn’t have any native garbage collection support. That limits your selection down a lot.

    But another option you may want to consider is Nim. As I understand, it compiles to C, so any C->Wasm compiler should theoretically work for you as well. I did a quick search and wasn’t able to find any great resources on how to do this, but you might get a bit more lucky. Good luck!