• 0 Posts
  • 44 Comments
Joined 17 days ago
cake
Cake day: June 25th, 2024

help-circle

  • This is how the retro computer community does it. Instead of trying to keep an aging 30-40 year old floppy or hard drive working, people make all kinds of interface adapters to convert it to be able to use SD and Compact Flash cards. It’s usually something like an AVR or PIC microcontroller that talks to the ancient computer on one end, and interfaces with the newer storage medium on the other, acting as a middleman.

    I have a NES cart that does this with ROM files on an external card. As long as you make it speak the old protocol, you’ll fool the machine into thinking it’s using the same old equipment.

    It’s hilarious when some of these old machines install OSes like Windows 3.11 in like two seconds with a solid state upgrade.



  • You know what, a high tech futuristic implant would be cool. Imagine being able to get high just by thinking about it, and the implant stimulates your brain cells like THC or alcohol would, or make you think you’re playing on the beach tossing a beach ball with some dolphins while you’re at work grinding away. Or controlling vehicles like fighter jets with just your mind. You become the plane and can feel every air current across your wings, turning it into a precision flying machine able to thread canyon gaps all day.

    But not anything from this asshole.







  • TimeSquirrel@kbin.melroy.orgtoLinux@lemmy.mlNot really sure I get Wayland
    link
    fedilink
    arrow-up
    11
    arrow-down
    2
    ·
    edit-2
    3 days ago

    It was created in a time when physical restrictions on access to the machine was enough. If you weren’t meant to be in the lab, somebody found out real quick.

    Wasn’t just that, it was everything. DOS, early Windows, etc all didn’t give a rat’s ass about security. In 1986 you could just go over to your friends house and turn on their machine and just go through all their shit laid bare. I don’t even think we had BIOS passwords at the time. At least the machines I used didn’t. It was a wild time.



  • I program embedded devices. There’s not often just a ready to go library for what you want to do when you’re doing bare metal. You’re given a C compiler with the bare minimums, and that’s it. You’re expected to mostly build what you need by yourself. That includes file-parsing routines. A microcontroller doesn’t even have any idea what a filesystem is unless you build one. I gotta do all that myself with an SD card through low level SPI stuff.

    On general purpose OSes, yes, you have a plethora of frameworks and libraries to choose from. In this world, the cool stuff, like C++ Boost libraries for example, doesn’t exist.