• otacon239@lemmy.world
    link
    fedilink
    English
    arrow-up
    3
    ·
    1 day ago

    Setup a DIY display using the display connector and use it for a custom network connected display to show whatever you want. Tons of language options to pick from.

  • henfredemars@infosec.pub
    link
    fedilink
    English
    arrow-up
    3
    ·
    edit-2
    1 day ago

    Tor Snowflake proxy. Learn FreeBSD/pf which works great with those specifications. Try to overclock it and see how much you can get away with before failure. SSH honeypot. Low-spec server for a simple site. If you have bandwidth, you could contribute some to SyncThing by hosting a public relay.

      • henfredemars@infosec.pub
        link
        fedilink
        English
        arrow-up
        2
        ·
        1 day ago

        Not necessarily. You might be confusing it with a Tor exit node.

        The Snowflake project provides people who live under an oppressive regime the ability to connect to the Tor network. You can’t observe their traffic and you are not an exit to the open Internet. Generally, you shouldn’t be able to connect the activities of any user with traffic on an exit relay.

  • 𞋴𝛂𝛋𝛆@lemmy.world
    link
    fedilink
    English
    arrow-up
    4
    arrow-down
    2
    ·
    1 day ago

    Wrong question really. The better abstracted question is what class of hardware is comparable?

    It is faster than most routers, so anything along those lines. I like to look at what people have made with a Beagle Bone. That TI chip is a router class chip. Most projects that use a BB have a better intelligence and motivations filter compared to much of what pops up with a Rπ.

    Look and see if there are any OpenWRT images for it. The Rπ foundation stuff is super bloated by comparison. Most OpenWRT images are 8-32 megabytes. You start out with an ultra stripped down POSIX system, but OpenWRT has a built in package manager and all your typical packages needed to expand into a more regular Linux desktop user like experience. If there is an image for the board, you go from underpowered to overpowered monster for the OS image and overhead. It can be a fun challenge just to learn the lower level terminal commands when stuff like compgen is missing and you don’t even know all your commands. You also don’t have manpage docs and help is rare and sparse too. That was my catalyst for really learning grep at a more useful level.

    • BlameTheAntifa@lemmy.world
      link
      fedilink
      English
      arrow-up
      2
      ·
      edit-2
      7 hours ago

      Wrong question really. The better abstracted question is what class of hardware is comparable?

      What is this, Stack Overflow?

      • 𞋴𝛂𝛋𝛆@lemmy.world
        link
        fedilink
        English
        arrow-up
        1
        ·
        7 hours ago

        I’ve never engaged on stack overflow, only used whatever thing I’ve skimmed.

        Is there something I said that triggered or offended you in some way worth mentioning and calling specific attention to?

          • 𞋴𝛂𝛋𝛆@lemmy.world
            link
            fedilink
            English
            arrow-up
            2
            ·
            6 hours ago

            I’m physically disabled in social isolation where this is my only external human contact. I tried to share the abstract learning curve on the path I have taken from asking the same questions to finding more useful information. How should I engage with others so that I never have moments like this where I regret my only method of human interaction?

            • BlameTheAntifa@lemmy.world
              link
              fedilink
              English
              arrow-up
              2
              ·
              6 hours ago

              I’m very sorry if my dumb joke caused any regret. It was low-hanging fruit and I thought it would be funny.

              Speaking only for myself, when I sense ambiguity, I ask questions to try to improve clarity. On the internet it’s especially easy (understandably) for people to assume a “hostile” or “negative” tone in any bit of writing, even if that’s not intended at all. You can also try a bit of role-playing, where you assume you asked the question and read your answer as if it was something someone else responded to you with. If you vibe with that approach, you can use it to “tune your tone”, or “writer’s voice”.

              I’m no expert, either, these are simply my own anecdotes and I often fail miserably at taking my own advice, as humans are wont to do. Again, I appologize if my lazy attempt at humor caused any distress. I’m happy to have you here and to be able to talk like this. Please reach out any time!

    • Geometrinen_Gepardi@sopuli.xyz
      link
      fedilink
      English
      arrow-up
      2
      ·
      1 day ago

      What’s your strategy for finding terminal commands in the situation you mentioned; no compgen and little available documentation?

      • 𞋴𝛂𝛋𝛆@lemmy.world
        link
        fedilink
        English
        arrow-up
        1
        ·
        1 day ago

        Not at my computer with my scripts, but you can grab the path variable and loop over each entry with ls. I often end up brute forcing this and piping it to /tmp/delete then I can just grep the file. First thing I do is add bash if possible.