Skip Navigation

InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)FT
Posts
0
Comments
2
Joined
4 wk. ago

  • In case anyone else is wondering, but doesn't feel like searching the web:

    Piefed is similar to Lemmy. It federates with the Lemmyverse, Threadiverse and Fediverse. But with some additional features and differences:

    • User flair. (Does not federates to Lemmy)
    • Hierarchical subjects/magazines. For example, there might be a subject like art with sub-subjects like art/paintings and art/statues. (Should be possible to follow these from Lemmy)
    • Instance blocking doesn't just block communities but also comments from said instance.
    • Only supported by Interstellar right now, as far as apps go, but Voyager is also planning to add support. Supported by apps like Interstellar, Summit, Voyager and Boost. Photon also plans support.
    • Written in Python instead of Rust, but somehow performs better (for at least one admin).

    I've never actually used Piefed and most information I could find was three months old. If I missed anything important or made mistakes, please let me know in a reply.

    Edit:

    • Combines duplicate posts.
    • User karma. Users with low karma get a flair.
    • Comments with a score of -10 or lower get collapsed by default.
  • Using the command prompt is not coding.

    Ackshually, whenever you write something into the command prompt and it works, you're writing valid Bash (or whatever shell you're using) code. Bash is a programming language, so technically you are coding.

    For example, try typing the following into a terminal:

     
            for ((i = 0; i < 10; i++)); do echo $i; done
    
    
      

    You just counted to nine using a loop and a variable!