this post was submitted on 27 Jul 2023
8 points (100.0% liked)

ApocalypticArt

878 readers
1 users here now

DUE TO ONGOING TECHNICAL ISSUES OUT OF OUR CONTROL WE HAVE MOVED TO: [email protected]

This instance is set to read-only now.


ApocalypticArt - where the remnants of humanity's past meet the promise of an uncertain future. This is the place for apocalyptic wastelands, remains of once-thriving metropolises and forgotten relics of a bygone era.

Always credit the original artist when creating a new post!

A good title format that's used on [email protected] is: Image title by Artists Name, so let's use that here, too.

Provide a link to the image source or the artists' gallery / social media account(s).

Posting your own work is allowed and encouraged, but please let the community breathe and don't spam.

Don't post AI-generated art, since the legal situation regarding ownership is very shady.

All artworks are copyright of the artists named in the posts. Artists gallery links may contain NSFW works.

Header image: Old world by Jerome Comentale

Logo: Custom-made by /u/lichtmetzger

founded 2 years ago
MODERATORS
 

I can't find the direct original source anymore (because thanks to Elon Twitter is just painful to browse through or downright impossible if you don't have an account), but here's the artists' Twitter account with a lot more art like this: https://twitter.com/asteroid_ill

you are viewing a single comment's thread
view the rest of the comments
[–] Crul 2 points 2 years ago (1 children)
[–] [email protected] 2 points 2 years ago (1 children)

Thank you! That site is really helpful.

[–] Crul 2 points 2 years ago* (last edited 2 years ago)

Here are another 4, just substitute XXXX with the image URL:

I also have a userscript that I trigger with a keyworded shortcut on Firefox, I just "Open image in new tab", type rev and the 5 reverse searchs open at once :).

EDIT: Here it is the userscript. It's a bit more complex that what I remembered because it also handles pages with more than 1 images: adding a number to any image and asking you to choose.. but I think that doesn't work very well.

javascript:(function() {var url;var args = '%s';var imgs = document.getElementsByTagName("img");var imgIdx = undefined;if (imgs.length == 0) return;if (imgs.length > 1) {if (args.length > 1) imgIdx = parseInt(args[1]);if (imgIdx === undefined || isNaN(imgIdx) || imgIdx < 1 || imgIdx > imgs.length) {numberImgs();imgIdx = parseInt(prompt(`There are ${imgs.length} images, select index:`, 1));}if (isNaN(imgIdx) || imgIdx < 1 || imgIdx > imgs.length) return;url = imgs[imgIdx - 1].src;} else {url = imgs[0].src;}if (!url) return;url = encodeURIComponent(url);window.open("https://saucenao.com/search.php?url=" + url);window.open("https://lens.google.com/uploadbyurl?url=" + url);window.open("https://www.bing.com/images/searchbyimage?cbir=sbi&imgurl=" + url);window.open("https://www.tineye.com/search?url=" + url);window.open("https://yandex.com/images/search?rpt=imageview&url=" + url);function numberImgs() {var imgs = document.getElementsByTagName("img");for (var img = 0; img < imgs.length; img++) {var parent = imgs[img].parentElement;if (!parent) continue;var numberDiv = document.createElement("div");numberDiv.innerHTML = 1 + img;numberDiv.className = "tmpImgNumberDiv";numberDiv.style.position = "absolute";numberDiv.style.padding = "2px 9px 2px 6px";numberDiv.style.background = "#f00";numberDiv.style.color = "#fff";numberDiv.style.zIndex = "9999";numberDiv.style.lineHeight = "normal";parent.prepend(numberDiv);}setTimeout(function() {var imgNumbers = document.getElementsByClassName("tmpImgNumberDiv");var idx = imgNumbers.length - 1;while (idx >= 0) {imgNumbers[idx].remove();idx--;}}, 5000);}})();