• 0 Posts
  • 20 Comments
Joined 1 year ago
cake
Cake day: June 13th, 2023

help-circle
  • It is stupid easy to get a free .edu account. It will not hamper spammers in the slightest. Even if they don’t want to make a few .edu accounts a day to do their spamming, they can just buy .edu accounts in bulk for about 10 cents per. No one is making thousands of kbin accounts to spam from, they make a handful a day, and use them till they get banned. Then they make a few more.

    .edu accounts are a terrible way to try and prevent spam on kbin. There is literally an industry around generating fake .edu accounts. You can buy them in bulk. Some colleges receive 10’s of thousands of fake applications a month trying to get free .edu emails.







  • Any time I tried to get someone to check out Reddit, I hated having to preface it with, oh and you’re going to want to block these 30 subs, they’re horrible, and here’s another 100 that are kinda gross, I’ll email you my list…

    There’s stuff to block, but there’s stuff that should be banned too. I remember recommending some of the SQL reddits to coworkers just weeks before the jailbait crap hit the national news. It’s up to ernest how he wants to run this place, but I hope we don’t let the bar go too low.





  • I’ve had success with trivial things, like write a log file parser with this pattern, or give me a basic 3 part left-right-center header in html. Works ok for trivial side projects. I would never trust it in production. Its a tool, nothing more at this point. Like an electric drill, better than a hand crank, but you still need to know how to use it.



  • It’s software that lives in the hardware. It provides low-level control and functionality specific to that device. It runs on the hardware itself, not the CPU of the computer.

    For example, a hard drive. We don’t want the OS to have to know how to interact with every type of hard drive. Seagate does things differently than Western Digital, an SSD works very different than a hard drive, etc… The OS sends the same commands to all types of hard drives, but each hard drive needs to know how to actually comply with the commands. If the OS is asking for a dozen different files all over the drive, it would be dumb to try and read them all at the same time. The OS doesn’t really know where they are on the spinning disk, but the drive does. Firmware written specifically for the device can do a much better job planing how to fetch the data so the read head doesn’t need to go back and forth a bunch of times, but instead make one good pass fetching all the data as it comes to it.

    Hope that helps.