aka freamon

Codeberg: https://codeberg.org/freamon?tab=activity

Anything from https://lemmon.website is me too.

  • 1 Post
  • 22 Comments
Joined 3 months ago
cake
Cake day: March 27th, 2024

help-circle




  • If something is supposed to be cringe, it’s up to the creators to find a way to indicate that to the audience, otherwise it’s taken at face value. Syrill Karn’s speech to Mosk’s troops in Andor is a good example of how to do that.

    As for any ‘anti-woke’ sentiment - I’m sure there’s some, but most of the criticism seems to come from people who just straight-forwardly aren’t enjoying the show as much as you. I hope you continue to enjoy it.


  • I’m guessing that The Acolyte has suffered the same fate as Marvel’s Secret Invasion - in production for an overly-long duration, full of re-writes and re-shoots. So far, it’s resulted in a show that’s a mash-up of individual scenes: some are quite cool, some are oddly shoddy, many of them don’t stand up to much scrutiny.

    Review-bombing anything is so self-defeating though: it gives the producers such an easy out, and allows for any legitimate criticism to get folded into the more illegitimate stuff.












  • This isn’t really my area, but I’ll have a crack. From what I understand, Lemmy uses the ‘meta og:image’ tag to grab a thumbnail. Inspecting your site, I can see that that tag is in the html head. However, if you just ‘curl’ the URL, then it isn’t in the results. Using ‘curl’ for URLs from sites that are known to work in terms of generating thumbnails (theguardian and bbc), the tag is visible in the result.

    This suggests that your site is using further scripting on page load to provide the meta tags, whereas perhaps Lemmy can only get them if they are provided immediately. There are other sites (like Reuters), who use additional scripting, that Lemmy is unable to get thumbnails for also (e.g. https://lemmy.world/post/16203031)


  • Interesting that that opening fight had both knives and blood - I think there was a time (before Andor) where both those things weren’t really allowed in Star Wars. It felt like nothing that came after really lived up to that. Episode 2 had two writers, joined by the word ‘and’ rather than an ampersand, meaning that they worked on it separately, which doesn’t bode well (the last time I saw that for a TV show was Secret Invasion, and that was rubbish).

    It’s okay, good enough to keep watching. It looks like it’s getting review-bombed though, so there must be something about it that’s upset people.

    Also, as soon as my stupid brain heard that a character was called Osha, it didn’t stop thinking about Star Wars Health and Safety violations:


  • Re: sorting posts not working - I don’t know. It looks like you’ve deleted the post you made about ‘sorting of posts not aligned’

    Re: communities not updated - I found your GIF hard to follow, but there’s a straight-forward difference between the post list you’re seeing on lemm.ee and on programming.dev, in that the missing posts are all tagged ‘English’. (If you looked at lemm.ee when you’re logged out, you’d see the same list as on programming.dev).
    I assume you’ve fixed it now, since this post is in English, but to recreate what lemmy-ui is doing:

    #!/bin/bash
    
    show_post=true
    lang_id_undefined="0"
    lang_id_english="37"
    
    for page in {1..17}
    do
      curl --silent "https://lemm.ee/api/v3/post/list?community_id=8024&page=$page&limit=50" |
      jq -rc '.posts[] | .post.language_id, .post.name' |
      while read line
      do
        if [ "$line" == "$lang_id_english" ]; then show_post=false; continue; fi
        if [ "$line" == "$lang_id_undefined" ]; then show_post=true; continue; fi
        if $show_post; then echo $line; fi
      done
      page=page+1
    done