Aye. I seldom post images but happy enough with Slink + ShareX for when I do. Keyboard shortcut to invoke ShareX, select area for image, and it automatically uploads to Slink and sticks the image url in the clipboard to paste wherever I want.
It probably is now.Thing with all these alternatives is that I feel sooner or later they’ll go the same way. As I’ve said previously, I used to host.. and the horrid stuff that ended up uploaded was not worth dealing with and I shut it down, that’s before the whole age verification thing came up.
I personally feel that running your own little host is best idea.
Even if Imgur capitulated and forced people to somehow verify their age to upload images would it be enough to appease GDPR and OSA?
In theory they could then prove everyone uploading was over 13 but it would still be impossible to say how old people viewing the images embedded into other sites were so any other similar hosting sites might eventually get blocked as well.
CBA dealing with morons just to share an image.
A couple of points if switching to S3ND
Your posts are public - Hopefully in time private posting will be implemented
The place has a lot of moaning bitches that will demand you take down something they disagree with, which so far has been AI and food and if you disagree, their moaning bitch mates arrive to give you grief as well... You can add tags so these people can then filter out things that upset them, or you can add them to a blocked list.
Uploading can be up to 10 images at a time and #Tags are allowed and generally the hosting and site seems to be pretty decent, with much work going on in the background to add more features.
CBA dealing with morons just to share an image.
New Features
Nested Tags System: Complete hierarchical tag management with tag filtering, search capabilities, and dedicated management page.
Multi-File Upload: Upload multiple files simultaneously with progress tracking and error handling.
Image Deduplication: Automatic detection and handling of duplicate images with user-friendly notifications.
Storage Usage Tracking: Monitor and display storage consumption metrics.
App Version Tracking: Display current application version in the footer.
History Grid View: Alternative grid visualization for upload history with toggle between list and grid modes.
⚡ Performance
Implemented aggregate snapshotting to significantly improve event sourcing reconstitution speed.
️ Improvements & Fixes
Enhanced UI with dark/light theme support for notices and improved component styling.
Improved layout and spacing across multiple components for better visual consistency.
Fixed integration label to correctly display 'External Integrations'.
Refined button styling with gradient variants and enhanced visual effects.
Improved link header handling and pagination logic.
Fixed various layout and styling inconsistencies across components.
Honestly I cannot imagine a more important thing for you guys to moan about and so then the need to avoid using that service.
A very good point. The OSB keeps giving, and I have to agree with Haggisman there. I guess an embed which needed you to be logged in could work but do any of the image hosting sites currently have that kind of mode?Even if Imgur capitulated and forced people to somehow verify their age to upload images would it be enough to appease GDPR and OSA?
In theory they could then prove everyone uploading was over 13 but it would still be impossible to say how old people viewing the images embedded into other sites were so any other similar hosting sites might eventually get blocked as well.
Tada! Thanks all the Fallout4 bench images are now all working again.The first run of automatically converting imgur hosted pictures to attachments has completed, some were missed due to various reasons and the process will be repeated. We're also looking to see if it's possible to automatically convert signatures hosted at imgur so they show as well but no guarantees about that.
Feek did mention about hosting on the forum but then said it would need to implement age verification which would not happen (see below)What's the plan for the forum going forward, few other firms I visit self host and limit to 500kb and 1024px on the long edge.
Unsure if there is any other options for the forum but it maybe just a matter of finding somewhere else to host your images.We're considering it, but it could push us into insisting on age verification, which is not something we're prepared to do as it would kill the forum.
I've moved over to postimage, for the time being. Seems pretty basic but works.
This also appears to be a bad choice. Just look at the first page of the latest F1 thread....
![]()
And this is imgbb doing something similar.
![]()
In terms of embedding images on the forum, it may be worth trying imgbox - https://imgbox.com/.
I believe @mattyfez suggested it somewhere, can't remember where. It's free, has a 10MB max file size limit and no hotlinking hard limitations according to https://imgbox.com/help. They claim to host your images forever unless you delete them.
I'm yet to try it myself, but it may overcome the issues mentioned by @Feek that come with imgbb and postimage.
// ==UserScript==
// @name Imgur to DuckDuckGo
// @description Replaces Imgur with DuckDuckGo image proxy links
// @match *://*/*
// @match *:///*/*
// @run-at document-end
// @version 1.0.0
// ==/UserScript==
(function() {
'use strict';
const duckify = url => 'https://proxy.duckduckgo.com/iu/?u=' + encodeURIComponent(url);
function replaceImgurLinks() {
// Replace <img> sources
document.querySelectorAll('img[src*="imgur.com"]').forEach(img => {
img.src = duckify(img.src);
});
// Replace <a> hrefs
document.querySelectorAll('a[href*="imgur.com"]').forEach(a => {
a.href = duckify(a.href);
});
}
// Run once initially
replaceImgurLinks();
// Re-run whenever new content appears
const observer = new MutationObserver(replaceImgurLinks);
observer.observe(document.body, { childList: true, subtree: true });
})();
Bought it, installed the script. I now get a broken image instead of your signature, which, when I try and open in a new window, gives me a broken duckduckgo link that says Safari can't open the page because it timed out.It works for various signatures etc on here anyway.