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

help-circle













  • It depends on the source. Lemmy uses “pict-rs” as the built in image hosting mechanism, this includes a way to fetch small thumbnails. But other hosts, like catbox.moe or Imgur or anywhere else might not be being fetched efficiently.

    Additionally, pict-rs uses imagemagik to transform the image on request. If that transformation doesn’t already exist (cached), or the host is over-loaded or under-spec’d, then you might see a delay in the request response

    Your best bet is to use your developer tools to check network usage and response times if you are interested



  • I’m in my mid 30’s and I spent A LONG time working out, getting as fit as I could.

    I still hated my body when I looked in the mirror, and I hated every second of the workout. “Post workout” I was so proud, but like, that’s equivalent to drinking so you could appreciate being sober.

    I stopped a while ago and started just trying to eat healthy and focus on other sources of happiness. I’m much happier since!


  • I’m in my mid 30’s and I spent A LONG time working out, getting as fit as I could.

    I still hated my body when I looked in the mirror, and I hated every second of the workout. “Post workout” I was so proud, but like, that’s equivalent to drinking so you could appreciate being sober.

    I stopped a while ago and started just trying to eat healthy and focus on other sources of happiness. I’m much happier since!






  • I’ve been digging into the lemmy source code, specifically how the federation works, the ui, the server, etc.

    Currently there is no data collected on a report other than if it has been resolved, who resolved, and when. I am currently working on a PR that addresses this, however it is a non-trivial change. Currently I’m looking at adding a “resolution” which will be what action was taken, then also a “note” available to be added by the resolver. Depending on the action taken, the “strike” may be issued against a user, strikes will be displayed in pill-style next to the user name.

    Addiotionally, I am planning on building a simple dashboard. So with that and the improved report action I hope modding will become easier. I think I will start a post soliciting input regarding report “actions”

    Unfortunately reports are provided only to the instance, so tracking users who may have strikes in other communities may not come through unless we add it to the activitypub federation. I suppose in this way, “actioned” reports could send a notice to federated communities… I haven’t gotten that far yet. My first goal is to improve the resolution action system. Strikes will come later. I see both of these as being core contributions rather than part of a separate system.