drop em here!!!

    • @vandrw@mander.xyz
      link
      fedilink
      142 years ago

      To offload the storage requirements of the instance you’re posting in. If everyone starts uploading images directly in the comment, the server HDD/SDD will be overloaded. Consider using a third party service and posting the link from there instead!

      • FrostTom
        link
        fedilink
        82 years ago

        Thats kinda the point of the feature though… To be used. If its a performance issue, then it should be turned off. In the end, someone has to host the content.

        • VitulusAureus
          link
          fedilink
          32 years ago

          Agreed, that decision should not be left up to the users. It’s the server maintainers who know best whether they can afford the storage space. If not, they should limit the ability to store too much data, by whatever means they find relevant, e.g. by limiting maximum post size.

    • @chaddy@feddit.de
      link
      fedilink
      132 years ago

      Hosting the images directly on the lemmy/kbin instance creates imo unnecessary traffic to the servers. I don’t know if admins can disable selfhosting images, but considering the low-powered machines almost every instance is currently hosted on, I would assume it would be in everyones self-interest to outsource image hosting (at least for now).

      • @CanOpener@sh.itjust.works
        link
        fedilink
        12 years ago

        This is a privacy risk because Lemmy doesn’t proxy external media (or cache remote media like Mastodon). It’s also better for longevity, if an external image host the image is gone.

      • LollerCorleone
        link
        fedilink
        1
        edit-2
        2 years ago

        Postimages already has official plugins for several forum softwares. I am sure one of them could be tweaked for use in Kbin and Lemmy instances. And postimages themselves might help in this, if contacted.

        https://postimages.org/plugins

    • XxTriviumxXOP
      link
      fedilink
      12 years ago

      i changed the topic as a general imgur alternatives post, since i could just use the kbin interface to upload images in comments… kbin is miles ahead of reddit with that feature LOL

  • @magmaus3@szmer.info
    link
    fedilink
    102 years ago
    1. you can upload the image directly when creating a post
    2. picoshare (selfhosted) might be a good option
  • Auster
    link
    fedilink
    52 years ago

    Discord. You can get the links for images and videos posted in it, and they work outside their original site.

    • LollerCorleone
      link
      fedilink
      22 years ago

      Discord is the worst option in terms of privacy, and since this is the privacy guides community, I am thinking that should be an important criteria to consider.

    • LinkOpensChest.wav
      link
      fedilink
      22 years ago

      I didn’t know you could do this. I cross post a lot into my discord servers, so this might work.

      It’s not revealing any information about your discord server by doing so, right?

    • WeirdlyWickedWorm
      link
      fedilink
      12 years ago

      I recommend Lensdump too. It also has an auto-delete feature, which is nice. It doesn’t allow for anonymous/guest downloads, but that’s not exactly a bad thing.

  • Nadya
    link
    fedilink
    32 years ago

    I run my own file host: kimiga.aishitei.ru. Files get uploaded from clipboard using ShareX. This allows me to have control over my own files, how long they last or if they should last forever, and I’m not dependent on a benevolent developer preventing my links from rotting 8 years from now when they close down their host due to it costing them too much or simply because they got bored of being a sysadmin/dealing with issues (or users) of their site.

    I used to donate to pomf.se and used that as the image host because I was a supporter of the sysadmin - but it eventually grew too large and had to shut down. Then a bunch of pomf.se clones popped up and I used one of those - can’t remember which one but then that one shut down too after only a year. That’s when I decided to set up my own host.

    I don’t allow other users on the site because I don’t feel like having to deal with what users upload, DMCA requests, morally gray areas, etc.

    .ru domains are sometimes blocked so my backup is catbox.moe

    • Books
      link
      fedilink
      12 years ago

      New to these fedi sites, but isn’t there a way to have one login to login across all of them?

      • vkeycaps
        link
        fedilink
        12 years ago

        No, but you can interact with other “platforms” while been logged in on your home instance(platform)

    • XxTriviumxXOP
      link
      fedilink
      1
      edit-2
      2 years ago

      pixelfed is very interesting! fits the free/libre aspect i was looking for! added it in my bookmarks

      • BedSharkPal
        link
        fedilink
        32 years ago

        I actually just googled to make sure bookbark wasn’t some new service I just hadn’t heard of yet…

      • SparkIT
        link
        fedilink
        12 years ago

        It’s also a fedi software, so pixelfed accounts show up in the microblog tab here on kbin if they are federated.

    • hihusio
      link
      fedilink
      12 years ago

      is the social aspect of pixelfed required? meaning, could I just upload screenshots and images for threads like this and not have to deal with comments, likes, and followers? I just want to link to images.

      • paper_clip
        link
        fedilink
        12 years ago

        It looks like the Fediverse analog of Instagram. Imgur allows anonymous uploads, so you can upload throwaway junk (e.g., memes) and not care. It doesn’t look like you can do that with Pixelfed, anymore than you could have done that with Instagram.

      • UziBobuzi
        link
        fedilink
        12 years ago

        I haven’t a clue. I need to go set up my profile and see how it all works.

    • Zana
      link
      fedilink
      12 years ago

      Yo this is awesome! Is there a way to get ShareX to upload to it?

    • GreenPlasticSushiGrass
      link
      fedilink
      1
      edit-2
      2 years ago

      Thanks! Imgur doesn’t play well with my vpn, and I’m not able to upload photos directly (in the vegetarian magazine, at least). I think PixelFed might be a good workaround for me.

  • NunoSempere
    link
    fedilink
    3
    edit-2
    2 years ago

    I host my own images on my server using nginx to serve them from /var/www/images. You can see an example here: https://images.nunosempere.com/blog/2023/02/19/bayesian-adjustment-to-rethink-priorities-welfare-range-estimates/ignore-the-prior.png

    The nginx configuration I’m using is

    server {
    
            root /var/www/images;
    
            index index.html index.htm index.nginx-debian.html;
    
            server_name images.nunosempere.com;
    
            location / {
                    # First attempt to serve request as file, then
                    # as directory, then fall back to displaying a 404.
                    try_files $uri $uri/ =404;
            }
    
        listen [::]:443 ssl ipv6only=on; # managed by Certbot
        listen 443 ssl; # managed by Certbot
        ssl_certificate /etc/letsencrypt/live/images.nunosempere.com/fullchain.pem; # managed by Certbot
        ssl_certificate_key /etc/letsencrypt/live/images.nunosempere.com/privkey.pem; # managed by Certbot
        include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot
        ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot
    
    }
    server {
        if ($host = images.nunosempere.com) {
            return 301 https://$host$request_uri;
        } # managed by Certbot
    
            listen 80;
            listen [::]:80;
    
            server_name images.nunosempere.com;
        return 404; # managed by Certbot
    
    }
    
    
    • JoGooD
      link
      fedilink
      12 years ago

      Easy to use, easy to remember, privacy friendly, it’s great

  • JanoRis
    link
    fedilink
    22 years ago

    So lemmy.world lets you just copypaste images directly from your snipping tool and hosts them on lemmy.world/pictrs

    Kbin sadly does not do this, no idea if other lemmy instances do this

    example1

    example2

    • @pe1uca@lemmy.pe1uca.dev
      link
      fedilink
      52 years ago

      AFAIK this is for all instances but it’ll be better to host images in a dedicated service to not overload lemmy servers

    • parrot-party
      link
      fedilink
      12 years ago

      It’s understandable. Image hosting bloats costs quite a bit. It also introduces new issues with the law as the server admin can’t allow illegal pictures on it. Offloading that onto a separate image host removes both issues with only minor downsides.

      I’d much rather kbin focus on long-term posting stability than worry about image hosting. If it gets big, then we can think about it. Reddit went without image hosting for years though.

      • Clairvoidance
        link
        fedilink
        1
        edit-2
        2 years ago

        kbinners can upload pictures, we just can’t Ctrl+V images as a quick way of uploading

    • slicedcheesegremlin
      link
      fedilink
      22 years ago

      I only just found out about catbox.moe and i love it, it really adds to the “old internet” vibes of this place.