what imgur alternatives do you use to share images on kbin/lemmy?
drop em here!!!
what imgur alternatives do you use to share images on kbin/lemmy?
drop em here!!!
the postimage.org @tarki posted looks sharp! is it open source? can't see any links to a repo...
I'm quite new here, didn't know i could just use the menu to upload images in comments LOL that is more conveniant than reddit replies for sure
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?
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.
I am curious here, what is wrong with continuing to use Imgur?
You just need a free account and you can keep posting stuff like before, minus the porn.
I already get that Imgur just deciding to nuke all of its old content for shits and giggles is not a widely popular move and so is the NSFW ban.
So for my part I don’t have a gigantic issue with Imgur as a service, but I do have an issue with how bloated the website has become and how they’ve completely degraded the experience on mobile. In general I’m not interested in using an image uploading site like Imgur as social media, so everything but image uploading is overhead for me.
On mobile, Imgur is extremely strict about the experience and “optimization”; direct image links will redirect you to the post instead, and the posts themselves are extremely compressed, which makes images with smaller text basically unreadable, on top of everything else just looking like shit.
My usecase for image hosting is to share with friends, and not have to really worry about looking back at previous images, so I personally rent a server for $3/m (and a domain for like $15/y) and use it to host any files I want to upload. That way I don’t have to worry about third parties screwing with the presentation of my images in ways I don’t want them to.
Drew DeVault wrote a blog post back in 2014 that kind of covers it. Imgur seems to have broke the cycle but that doesn't mean they haven't gone to shit. They've just somehow avoided collapsing underneath themselves as they continue the enshittification of Imgur.
I am fundamentally opposed to nearly all forms of advertising at an ideological level and go to great lengths to avoid it in as many of its insidious forms as possible. So that is where Drew and I differ. The only form of advertising I appreciate are extremely dry infomercials (no not the for-TV kind) and authentic word of mouth (not to be confused with "native" advertising or sponsors). Ads are a net negative on humanity and in too many ways to list but because the effects go through a layer of indirection - similar to how secondhand smoke is harmful for non-smokers. People are more OK with ads. It took making the public aware of secondhand smoke and the harm that smoking causes - even for non-smokers - before people took a privileged stance against smoking. That same level of awareness and condemnation will never happen with ads because people are OK with getting things "for free" that they otherwise would have to pay for. So they'll willingly turn a blind eye to the harmful effects of advertisements and "put up with them".
Fuck ads.
I just signed up for PixelFed but haven't uploaded anything as of yet.
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
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.
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
}
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
Lutim works pretty okay for me,
Lets you upload an image without any account and spits out view, share and download links for it, has a toggle for how long to keep an image before deleting it, or keeping it indefinitely unless manually deleted, and even strips exif tags and has an option for encrypting the image, and is fully foss
If all you need is a place to upload images to that you can then link to in a post this serves its job well enough
https://lutim.ggc-project.de/