Skip Navigation

  • The thing they want to conserve is the way society is, or rather, the way it was back in the mid-1900’s.

    I don't even find that to be true. They adopt technology based on the whims of advertising they consume. Donald Trump was king of Twitter and they ate that up. They just don't follow what they say. They say they hate California, but consume every bit of technology (like Twitter, Apple, Disney, sports teams) they can that comes out of it.

  • I find the whole self-labeling of conservative to be founded on shaky grounds. Basically it's authoritarianism by another term. I often don't see conservatives actually cite some great example of it by some philosopher or even a nation. Because they don't want to face that Middle East nations are what conservatism looks like. The Taliban taking over Afghanistan and regulating women and building a class system is the kind of thing they seem to express in roundabout ways as the desired outcome. But, of course, they don't just outright say "I want to be like the Taliban". But the threatening people with guns, economic system that favors those in power, women's rights, anti-education, discrimination against other faith systems... all fits. And, monarchy, I see them praise powerful monarchy. Many want business kings they admire to rule everyone with an iron fist.

    Donald Trump has sure inspired a lot of follower who are incredibly loyal, and he openly praises North Korea as some kind of model nation. But I notice the followers are unwilling to outright say "we want things run like North Korea" either... they just describe a system of powerful rulers who "fix" problems using the same techniques.

  • serous problems with scalability, it works fine if there is little data in the system.

  • Just because it’s written in Rust doesn’t make your app safe, or performant.

    Lemmy 0.18.4 listing posts, frequently via ORM Diesel:

     
        
                SELECT "post"."id", "post"."name", "post"."url", "post"."body", "post"."creator_id", "post"."community_id", "post"."removed",
                  "post"."locked", "post"."published", "post"."updated", "post"."deleted", "post"."nsfw", "post"."embed_title", "post"."embed_description",
                  "post"."thumbnail_url", "post"."ap_id", "post"."local", "post"."embed_video_url", "post"."language_id", "post"."featured_community",
                  "post"."featured_local",
                  "person"."id", "person"."name", "person"."display_name", "person"."avatar", "person"."banned", "person"."published", "person"."updated",
                  "person"."actor_id", "person"."bio", "person"."local", "person"."private_key", "person"."public_key", "person"."last_refreshed_at",
                  "person"."banner", "person"."deleted", "person"."inbox_url", "person"."shared_inbox_url", "person"."matrix_user_id",
                  "person"."admin",
                  "person"."bot_account", "person"."ban_expires", "person"."instance_id",
                  "community"."id", "community"."name", "community"."title", "community"."description", "community"."removed", "community"."published",
                  "community"."updated", "community"."deleted", "community"."nsfw", "community"."actor_id", "community"."local", "community"."private_key",
                  "community"."public_key", "community"."last_refreshed_at", "community"."icon", "community"."banner", "community"."followers_url",
                  "community"."inbox_url", "community"."shared_inbox_url", "community"."hidden", "community"."posting_restricted_to_mods",
                  "community"."instance_id", "community"."moderators_url", "community"."featured_url",
                  ("community_person_ban"."id" IS NOT NULL),
                  "post_aggregates"."id", "post_aggregates"."post_id", "post_aggregates"."comments", "post_aggregates"."score", "post_aggregates"."upvotes",
                  "post_aggregates"."downvotes", "post_aggregates"."published", "post_aggregates"."newest_comment_time_necro",
                  "post_aggregates"."newest_comment_time", "post_aggregates"."featured_community", "post_aggregates"."featured_local",
                  "post_aggregates"."hot_rank", "post_aggregates"."hot_rank_active", "post_aggregates"."community_id", "post_aggregates"."creator_id",
                  "post_aggregates"."controversy_rank", "community_follower"."pending",
                  ("post_saved"."id" IS NOT NULL),
                  ("post_read"."id" IS NOT NULL),
                  ("person_block"."id" IS NOT NULL),
                  "post_like"."score",
                  coalesce(("post_aggregates"."comments" - "person_post_aggregates"."read_comments"),
                  "post_aggregates"."comments")
                 
                  FROM ((((((((((((
                    ("post_aggregates"
                       INNER JOIN "person" ON ("post_aggregates"."creator_id" = "person"."id"))
                    INNER JOIN "community" ON ("post_aggregates"."community_id" = "community"."id"))
                    LEFT OUTER JOIN "community_person_ban" ON (("post_aggregates"."community_id" = "community_person_ban"."community_id") AND ("community_person_ban"."person_id" = "post_aggregates"."creator_id"))
                    )
                    INNER JOIN "post" ON ("post_aggregates"."post_id" = "post"."id")
                    )
                    LEFT OUTER JOIN "community_follower" ON (("post_aggregates"."community_id" = "community_follower"."community_id") AND ("community_follower"."person_id" = $1))
                    )
                    LEFT OUTER JOIN "community_moderator" ON (("post"."community_id" = "community_moderator"."community_id") AND ("community_moderator"."person_id" = $1))
                    )
                    LEFT OUTER JOIN "post_saved" ON (("post_aggregates"."post_id" = "post_saved"."post_id") AND ("post_saved"."person_id" = $1))
                    )
                    LEFT OUTER JOIN "post_read" ON (("post_aggregates"."post_id" = "post_read"."post_id") AND ("post_read"."person_id" = $1))
                    )
                    LEFT OUTER JOIN "person_block" ON (("post_aggregates"."creator_id" = "person_block"."target_id") AND ("person_block"."person_id" = $1))
                    )
                    LEFT OUTER JOIN "post_like" ON (("post_aggregates"."post_id" = "post_like"."post_id") AND ("post_like"."person_id" = $1))
                    )
                    LEFT OUTER JOIN "person_post_aggregates" ON (("post_aggregates"."post_id" = "person_post_aggregates"."post_id") AND ("person_post_aggregates"."person_id" = $1))
                    )
                    LEFT OUTER JOIN "community_block" ON (("post_aggregates"."community_id" = "community_block"."community_id") AND ("community_block"."person_id" = $1))
                    )
                    LEFT OUTER JOIN "local_user_language" ON (("post"."language_id" = "local_user_language"."language_id") AND ("local_user_language"."local_user_id" = $2))
                    )
                    
                    WHERE
                    (((
                        (((
                        (
                        ("community"."removed" = $3) AND ("post"."removed" = $4))
                        AND ("community_follower"."pending" IS NOT NULL)
                        )
                        AND ("post"."nsfw" = $5)
                        )
                        AND ("community"."nsfw" = $6)
                        )
                        AND ("local_user_language"."language_id" IS NOT NULL)
                        )
                        AND ("community_block"."person_id" IS NULL)
                        )
                        AND ("person_block"."person_id" IS NULL)
                        )
                        
                    ORDER BY "post_aggregates"."featured_local" DESC , "post_aggregates"."hot_rank_active" DESC , "post_aggregates"."published" DESC
                        
                    LIMIT $7
                    OFFSET $8
    			;`
    
    
    
      

    That is with hand-optimized person_id = $1, which the Rust code does not do.

  • "Terms of service" checkmarks are their reality

  • What a non-story.

    Lemmy project set wild unrealistic expectations on GItHub project: 1) "high performance', maybe the Rust code but PostgreSQL logic is the ORM madness. 2) "full erase" while sending all your public comments and posts to ActivePub without agreement on concept of delete.

  • I appreciate that Beehaw stands for greatness beyond the apathy of the 4.5 years of Lemmy established developers who seemingly don't use Lemmy to discuss Lemmy. “...the opposite of love is not hate -- it's apathy. It's not giving a damn. If somebody hates me, they must "feel" something ... or they couldn't possibly hate. Therefore, there's some way in which I can get to them.” ― Leo F. Buscaglia

  • Beehaw!

  • The scorching of previous content I also found rather destructive... people were deleting 10 years worth of posts and content.

  • I hope you get the rest you desire. Take care.

  • there really is a need for a world-wide wake/funeral, people weren't supposed to have contact with infected dead bodies... the whole world was connected by the event, have a positive wake party, thank all the nurses and doctors, praise that it wasn't a more deadly disease.

  • There are outright attacks of putting illegal images that have caused major problems the past few days on the biggest Lemmy instances...

    Hating Reddit was not necessarily a great motivation for people to create original content here. Hating Elon Musk and Twitter to x, the introduction of Threads generated more hate. It's been kind of hate burnout lately.

  • I’ve noticed this everywhere on Lemmy

    Same here. And it's been wave after wave of negativity of outside events flocking people. June Reddit API change, then Zuck @ Threads hate, Twitter to X shockwaves, and now Trump back on Twitter. It hasn't been people seeking out positive as much as it's been world wide web of anger.

  • ok... that's about as exciting of a cause as .... plain oatmeal.

  • It's working for me now, thank you.

  • Removed Deleted Locked

    Permanently Deleted

    Jump
  • it sounds like he was listing to sell the actual game, not just 45 minutes of footage of the game...

  • I feel like people don’t understand me. If I show even the slightest vulnerability, I get told I’m playing the victim

    Sorry to hear. I'm well into several years of trending that direction and facing the realization that I have very little control over it.

    I find that big waves of this attitude have been hitting multiple societies, we are told to "pick ourselves up by our own bootstrap" and seek "private personal therapy" - but there is no real weather report about how people are under the influence of many different information systems and outright campaigns to influence attitudes and reactions.

    There’s just a deep and profound sadness inside me, and my emotions are so raw that I just curl up like an armadillo.

    it's become a lifestyle for a year for me now, and the couple years before that weren't much more than a couple people with semi-neighborly contact. It's not a nice precipice to observe and realize you are folding into.

  • A software problem can often be fixed remotely, a physical problem requires physical access.

    makes a difference in asking for help,

  • starring into the abyss of contempt, chaos, and bigotry… it also makes me sad.

    I started experiencing it in 2014 when Cambridge Analytica was building up their pro-Trump stuff. Reddit and Facebook really changed that year, and it's never gone back.

    I really hope that people have a sense of urgency that it took a lot of time to get humanity more towards positive after world war 2, and we could do better, and it really isn't worth hating each other on this planet.

    A world-wide funeral for those we lost in the pandemic would be nice, but it just doesn't seem to form. Plenty of people with social power who could spread the idea.

  • Despite these newly known problems, there have been exactly no improvement whatsoever to the moderation tools. It is honestly unsettling and terrifying.

    It's bewildering how the development team has ignored the problems with data not federating properly and the performance of the app.