• 0 Posts
  • 23 Comments
Joined 2 years ago
cake
Cake day: June 2nd, 2023

help-circle
  • They haven’t updated their wikis for Operating Costs or Hosting since late 2022, somewhat aligned with their blog post on handling the mass influx of users from “E-day”.

    Back then this was 6 AMD 5950 16/32 with 128GB of RAM and 2x3.84TB SSDs, with one “storage provider” with an AMD epyc 32/64 with 400GB of RAM and 10TB of storage.

    Their hosting provider doesn’t offer these same SKUs, but roughly equivalent could be about €200/mo for each of the former, and the beefiest high RAM option is like €800/mo, totalling €2K/mo?

    Curious how much the infrastructure has grown, but I haven’t seen anything else. Even so, these costs are extremely high.
















  • The generalized approach in industry is to use API calls, and create classes to structure the data you receive as JSON or XML. At that point, it is entirely up to you how to format and display the data from your classes. Take a look at some of the Lemmy client code like Mlem, Memmy, or Voyager as examples. Though they have gotten more complicated, they all follow this client-server model for front end development.

    However, due to recent shenanigans around API and RSS by companies, mostly those looking to prevent AI companies from using their data for free, the alternative, much worse method is to take the HTML output from a standard web request, and try to reverse engineer the page information into a class structure. This sucks, breaks frequently, and requires you to code around ads and other junk on pages in order to get at the content.