Skip Navigation

User banner
Posts
15
Comments
434
Joined
6 mo. ago

  • No ActivityPub federated one yet. Someone might make it someday though.

  • They'll make it paid someday. Trust me guys.

  • rent a girlfriend?

  • I keep switching between using Summit (recently went open source), Thunder, Jerboa and the Tesseract web UI. But mostly Jerboa. It opens the fastest. The nicest looking one is Thunder.

  • Video feels low effort and that slow AI voice is not something that you would use in a devlog.

    edit: oh and btw would you consider using Godot instead of Unity? It's a FOSS competitor.

  • Permanently Deleted

    Jump
  • Oh, didn't notice that. Thanks for the info. Regardless, it wasn't a ban from a moderator.

  • Permanently Deleted

    Jump
  • Permanently Deleted

    Jump
  • Okay.

    I assume your previous account was @Lembot_0001@lemm.ee, which was instance banned from lemmy.ml. The administrator was davel. You can try and ask him if it bothers you, maybe even appeal your ban. Your new account most likely will be instance banned again if you try and engage in lemmy.ml communities again, given your username is pretty much the same.

    Honestly, we got lots of active alternatives to lemmy.ml communities, as the majority here hates lemmy.ml. Don't be surprised if you get banned from lemmy.ml again. Check out !yepowertrippinbastards@lemmy.dbzer0.com

  • Permanently Deleted

    Jump
  • That most likely wasn't a moderator, but an administrator. The ability to view votes in communities for mods is not available in the latest release of Lemmy yet. That will come in the next release, 1.0.0.

    Though I can't see any modlog entries for your account. Did you get instance banned and created a new account here?

  • Mostly the package manager and even the rolling distros' packages being more outdated than arch everytime. AUR is also very nice to have. The only distro I found that did spike my interest alot was NixOS.

  • I switched to Arch Linux for the memes, but now am unable to leave it. I've tried a few dozen distros, but none of them are as good as arch for me, I always come back to it. It's like arch is my perfect distro.

  • oh no! wasn't bluesky decentralized and federated?!? how is this possible?!? /s

  • Locking for rule 5.

  • If you want a bit more detail, look at my edit. The functions to calculate the hot and scaled for content is now there.

  • No, it is not weird. Scaled, according to the docs, is like Hot, but less active communities' posts get a boost.

    Edit: here's a bit more detail

    The exact function to calculate the scaled rank is this one:

     sql
        
    CREATE OR REPLACE FUNCTION scaled_rank (score numeric, published timestamp with time zone, users_active_month numeric)
        RETURNS float
        AS $$
    BEGIN
        -- Add 2 to avoid divide by zero errors
        -- Default for score = 1, active users = 1, and now, is (0.1728 / log(2 + 1)) = 0.3621
        -- There may need to be a scale factor multiplied to users_active_month, to make
        -- the log curve less pronounced. This can be tuned in the future.
        RETURN (hot_rank (score, published) / log(2 + users_active_month));
    END;
    
      

    The hot rank is calculated like this:

     sql
        
    CREATE OR REPLACE FUNCTION hot_rank (score numeric, published timestamp without time zone)
        RETURNS integer
        AS $$
    BEGIN
        -- hours_diff:=EXTRACT(EPOCH FROM (timezone('utc',now()) - published))/3600
        RETURN floor(10000 * log(greatest (1, score + 3)) / power(((EXTRACT(EPOCH FROM (timezone('utc', now()) - published)) / 3600) + 2), 1.8))::integer;
    END;
    
      
  • Permanently Deleted

    Jump
  • Is it me or does Soyjak use Windows?

  • Frankly, I don't like dansup and his cocky behaviour. But if Sup ever does become reality, then it will be a real alternative. And no, Loops is not federated.