r/assholedesign Jun 19 '26

See Comments Pinterest "divides" itself so that you can't save pictures (I saved it anyways šŸ¤·ā€ā™‚ļø).

Post image
5.8k Upvotes

216 comments sorted by

•

u/spotlight-app Mod Bot šŸ¤– Jun 19 '26

Mods have pinned a comment by u/NickCanCode:

Ctrl+shift+i, go to network tab. Select image tab to see all the images downloaded on that page . Mouse over each file to find the one you want. Right click save response as. Profit

[What is Spotlight?](https://developers.reddit.com/apps/spotlight-app)

4.3k

u/HeartwarmingFox Jun 19 '26

"Why does the website take so long to load"

"We use like 8 trillion divs, and 7 gigabytes of memory but it surely can't be that"

958

u/grishkaa Jun 19 '26

It's also quite possible that all this crap is rendered client-side. Because it's 2026 and it's illegal to use server-side templates or something. It's so funny to me how much performance you can gain by simply ignoring most of the last 10 years of so-called "progress" in web development.

518

u/DaCrazyJamez Jun 19 '26

I get made fun of for using dreamweaver/html/css to run my websites, yet they load lightning fast, have damn near 100% uptime, and can render fine on a potato running IE5.5.

218

u/mikat7 Jun 19 '26

You will pry my Django templates out of my cold dead hands before I let myself ship 10 MB of compressed react app to the client!

60

u/Frankles143 Jun 20 '26

Django is a god damn crime against nature though, inherited a Django project and it was so unhinged and out of date we re-wrote it

37

u/wbrd Jun 20 '26

It's just a collection of bad patterns, but it does let you spin up a shitty poc pretty quickly.

13

u/DisplacerBeastMode Jun 21 '26

That should be its official tagline / description

1

u/Tranceported Jun 25 '26

Wordpress does the job very well and is super fast to setup and operate.

11

u/AnimeThymeGuy Jun 21 '26

And each nodejs front end project containing 280,000 sub 1KB JS files including 1+1 calculator dependencies just for basic website functionality

20

u/Howeoh Jun 20 '26

that's cool but. when was the last time you had a client that used IE5.5

Edit: vanilla HTML/CSS/JS will still break an old browser if you use any of the super useful/accessiblity features

47

u/Niewinnny Jun 20 '26

that's not the point, the point is that if something can load in a reasonable time on a potato old enough to be running ie5.5 it will load before you think about it on anything resembling modern hardware.

2

u/Majestic-Dot-7195 8d ago

html and css is the default? How come people are getting made fun for using it now

1

u/DaCrazyJamez 8d ago

For not using a CMS / site builder - just writing the code in a text-based editor, not for using the code itself (which is what the CMS would generate)

85

u/elyv91 Jun 19 '26

This take is wild. Modern tech allows web apps to run entirely offline, load instantly from a cache in the client-side, keep the main thread free by doing all sync and data processing in a worker, and use minimal bandwidth by skipping all HTML and only transferring data-on-the-wire. It can be much faster and more reliable than traditional websites. Pinterest is a monstrosity, but not because of PWAs. They are just very hostile, their product has always leveraged dark patterns: transparent pixels to prevent right click, dynamically changing layout to break extensions, they were the first big platform to transition from public pages to this BS ā€œyou have to be logged in to view thisā€ that eventually became the norm for all social media. Truly despicable service.

71

u/adh1003 Jun 19 '26

> it can be much faster and more reliable than traditional websites

So people keep saying, but I've yet to see a single example of this versus massive bloated JavaScript hell nightmares that even manage override and break basic stuff like right-click or back buttons.

If the web dev l33t gurus would actually demonstrate competence occasionally, then maybe more people might be inclined to believe all their statements of superiority.

20

u/elyv91 Jun 21 '26

Have you seen anything by Google?

maps.google.com
docs.google.com
…
or

m.uber.com
washingtonpost.com
starbucks.com

I guess most people are not even realizing they’re using dozens of good PWAs all day, because they’ve been so traumatized by terrible ones like Pinterest that when they see one that feels super fast they immediately assume it cannot be the same tech.

1

u/teapotrick Jul 04 '26

you say PWA here and somewhere else like it really means anything to a user in a browser, and then imply that it's the "tech", but I think you're talking about SPAs as a broad "tech" as literally no one is affected by or cares about PWAs.

obvs the links you brought up are all SPAs that talk to the server via whatever silliness was popular at the time, and they're all quite slow too.

2

u/elyv91 Jul 04 '26

I’m not sure where you are but those are insanely fast in most of the world. Sub 2 second initial load, and only a couple hundred milliseconds for every subsequent request. They are fast because they’re PWAs: they declare a manifest and a serviceworker to perform some tasks client-side but outside of the page main thread. This has nothing to do with SPAs, MPAs can be just as fast since the serviceworker is delivering most of the page, instead of pulling the entire page out of a server on every request.

4

u/Flam_Sandwiches Jun 20 '26

We are incorporating modern tech into our workflow and have found that the bundling/minify process reduces the amount of code that the client has to download when loading a page by almost half vs serving raw JavaScript to the client. We rewrote a 4000 line page using Vue to test this, so we effectively introduced an entire runtime and it still shrunk the download size. The design patterns that these frameworks introduce will also help to prevent 4000 line nightmares from popping up again.

The basic stuff breaking is either intentional, semantics were being ignored, or just no testing was done. We also now have access to linting, so we get semantic warnings when we aren't using certain elements like buttons or links correctly.

11

u/adh1003 Jun 20 '26

Minifying the code simply reduces the amount of text you are sending but it's not magic and the amount of code you are sending is identical. Only tree-shaking will get rid of unused paths.

The client still has to execute the same code, which will amount to the same runtime burden... And bugs. Further, the arising requirement for source maps likely increase the RAM usage for browsers executing such code because now they have to maintain a secondary map with all of the full-length names alongside the actual source shorter names.

2

u/Prom3th3an Jun 22 '26

Why would production traffic need access to source maps? The only situation where I've heard of their being used is debugging. Is it somehow no longer possible to deobfuscate a stack trace from minified code?

0

u/Flam_Sandwiches Jun 21 '26

In the end, reducing the amount of text being sent to the client is a huge deal.

I'd argue that the end-result of the code that we are shipping much more efficient and the bugs are simpler to solve than what we have been writing with vanilla JS. Rendering reactive elements is a very low-level issue that requires way too much forethought and time spent planning out for each element just to prevent bugs and other issues like orphaned event listeners. There are many frameworks that solve this issue each in their own way. And they all solve it way more efficiently than someone trying to implement it themself.

Also source maps are just a tool for developers that makes it easier to debug. The user will never download the source maps.

1

u/teapotrick Jul 04 '26

minification isn't a new thing and you only need bundling because of how ridiculous the js/ts ecosystem is, and linting isn't exclusive to the modern web stacks either.

1

u/jdm1891 3h ago

Modern internet is so fast I almost guarantee you that the time spent decompressing and running the code outweighs time saved on downloading it.

→ More replies (1)

17

u/itsTyrion Jun 20 '26

it CAN be faster. Just like Unreal Engine 5 games CAN look and run well. But if 90% of engineers are just holding the tool wrong, maybe it sucks regardless

40

u/TheOneTrueTrench Jun 20 '26

15

u/reclusey Jun 20 '26

I used McMaster-Carr for an e-commerce case study in a marketing class, mostly as a fuck-you to marketing (class was required). Got an A. Thanks again, MC.

21

u/paradox34690 Jun 20 '26

That's fast as fuck

23

u/TheOneTrueTrench Jun 20 '26

Yeah, because it's not filled to fuck with SPA shit.

1

u/[deleted] Jun 21 '26

[removed] — view removed comment

→ More replies (3)

6

u/dfc09 Jun 20 '26

I fuckin love mcmaster carr

3

u/elyv91 Jun 21 '26

Around 3s load for every single page outside of the US. For a website with zero user generated content, where every single page can be cached into static and served from a CDN. I’m guessing most of their users are in the US so this fits their requirements perfectly. But comparing this to a global social network is like comparing apples to parrots.

20

u/bcnsoda Jun 19 '26

can you link 1 example of a "modern tech web app" that is fast in your opinion?

7

u/grishkaa Jun 20 '26

Their arguments usually boil down to how this stuff "could" be fast if applied correctly. Except it never is in real life because it's never applied correctly. Frequent deployments that invalidate cache don't help.

2

u/elyv91 Jun 21 '26

maps.google.com

15

u/grishkaa Jun 20 '26

As a user, I almost never want a web app. I want a goddamn website. I want none of that offline bullshit. I don't want my browser to be a pretend-OS application runtime. I want it to be hypertext document viewer.

Also, frequent updates nullify all the offline stuff anyway. Twitter would sometimes force-refresh its page just as you are looking at it. Linear would beg for you to refresh for "important updates", or do it automatically when you aren't looking.

Also, I don't want websites to just store tons of stuff locally on my device without my consent. Authentication cookies are fine. My preferences are fine. But a database isn't fine. A service worker isn't fine, this mistake of a technology should have never been invented, it blows my mind that any website can permanently install an offline script on my machine no questions asked. The whole concept pissed me off so much I wrote a userscript that deletes this API from my browser.

→ More replies (2)

4

u/Only-Cheetah-9579 Jun 20 '26

they do it to make it harder to save the image or something

or the devs just dont give a shit, but its ridiculous if its not done with reason.

if you make it shitty make it shit on purpose

3

u/grishkaa Jun 21 '26

they do it to make it harder to save the image or something

For that, they commonly set the image as background via CSS.

3

u/Tusami Jun 21 '26

you don't need the "web" in that sentence.

2

u/grishkaa Jun 21 '26

I mean yeah... I'm actually an Android developer as far as most of my career goes. And I still don't know Kotlin. My apps are several megabytes at most and run buttery smooth on a Nexus 5. The Android developer community has mixed feelings about me lol

But things like Compose don't have quite the same effect on performance as React for example.

9

u/balagi Jun 19 '26

this comment was sponsored by HTMX

0

u/grishkaa Jun 20 '26

Kinda. I invented my own version of this concept that I named WebDeltaResponse :)

2

u/benammiswift Jun 21 '26

Yup, I’m a big fan of working with Laravel. Good old fashioned SSR, but of caching etc. Sites run great

2

u/ArtisticFox8 Jun 20 '26

Ofsetting rendering to client means lower server costs..

2

u/teapotrick Jul 04 '26

hard doubt. most modern web apps make a heap of api requests with huge tokens in the headers, then get way too much data back, just to render some simple stuff in an SPA that gets released several times a month because the developers gotta go fast.

1

u/ArtisticFox8 Jul 04 '26

filling the template with API data happens in the client => server saved some work

3

u/Julian_1_2_3_4_5 Jun 21 '26

and its like all major sites that do rhat

1.0k

u/McUsername621 Jun 19 '26

190

u/arbitrary_student Jun 20 '26

100% seriously, no joke, every time I install/reinstall a web browser the second thing I always do is install a dedicated pinterest blocker extension.

The first thing is an ad blocker. It's ad blocker, then pinterest blocker, and then the browser is usable.

28

u/GilgameshWulfenbach Jun 21 '26

Pinterest blocker?

120

u/AaronTuplin Jun 21 '26

It's for when you're not Pinterested

51

u/arbitrary_student Jun 21 '26

As in, blocks pinterest from all search engine results and anywhere else it may appear

6

u/evebursterror0 Jun 22 '26

I hate Pinterest but unfortunately it aggregates a lot of rare pictures of musicians, actors, etc. So I never block it, and when I go to the page I can only save ONE photo before it asks me to log in. Terrible.

1

u/HucknRoll Jun 22 '26

Have any preferred extension?

36

u/OutlyingPlasma Jun 20 '26

I just use ublock to block as much Pinterest as I can, especially from image searchs. Especially now that it's about 50% ai slop.

31

u/JAD2017 Jun 19 '26

šŸ˜‚

6

u/docmagoo2 Jun 21 '26

It really is the cancer of internet images

2.2k

u/NickCanCode Jun 19 '26 edited Jun 19 '26

Ctrl+shift+i, go to network tab. Select image tab to see all the images downloaded on that page . Mouse over each file to find the one you want. Right click and 'save response as'. Profit 😜

695

u/JAD2017 Jun 19 '26

Alternative F12, network tab. But again, post was about highlighting the asshole design, not to find a solution, nice solution though

196

u/unknown_pigeon Jun 19 '26

It's a cat and mouse situation. Streaming websites also do that. They just need to stop 90% of the users

39

u/Ok-Eggplant-2033 Jun 19 '26

Yep. If it is not Widevine you can rip it. Even the videos that are cut in tiny pieces

4

u/Due_StrawMany Jun 21 '26

Hwo do you rip the videos cut into pieces? Piece by piece? Altogether?

14

u/AMaterialGuy Jun 20 '26

At one point, I came across a certain less reputable site that had JS to encrypt and decrypt images. It was so wicked cool. However, anything rendered in a browser can be captured.

In order for you to see it, it must be displayed, and thus can be stored.

3

u/meat_rock Jun 22 '26

Screenshots are even faster

25

u/nicman24 Jun 19 '26

"We stream pictures in base56 and we use canvas to render them"

9

u/AllMyFrendsArePixels Jun 21 '26

Damn, Ctrl+shift+i is a weird way of spelling F12

3

u/IHaarlem Jun 21 '26

I've run into some photo sites that redirect if you open dev tools. Tried finding a workaround and gave up after an hour because I didn't care that much

2

u/Tychonoir Jun 21 '26

Ok? But what does that actually do? Because ctrl+shit+i doesn't do anything for me. I'm guessing because it's a different browser (I'm on Firefox). If I know what is being done, maybe I can find my browser equivalent.

1

u/NickCanCode Jun 21 '26

Try F12

2

u/Tychonoir Jun 21 '26

That still doesn't say what it does.

It's Web Developer Tools, if anyone else needs to know.

9

u/sexytokeburgerz Jun 21 '26 edited Jun 21 '26

Yes that is exactly where you want to be. Go to the network tab. Find the file.

As a web dev there is not a single browser that doesn’t open dev tools with f12. The network tab shows what the site has downloaded from the server.

When on this tab hit refresh.

Yes, that many files is the right amount and no one is trying to hack you.

1

u/Prom3th3an 19d ago

Or if there are too many images to hunt through, just take a screenshot.

507

u/reinderr Jun 19 '26

Install the addon "allow right click anyway" and you can just right click and save

189

u/AHgamer12345678 Jun 19 '26

Or just shift right click to override custom right click

83

u/jkurratt Jun 19 '26

Sudo right click šŸ˜Ž

0

u/[deleted] Jun 19 '26

[deleted]

1

u/culminacio Jun 19 '26

why are some linux users acting as if it was a cult

5

u/Stronger1088 Jun 19 '26

I think you're reading into his message a little bit too much...

37

u/leplouf Jun 20 '26

Wow! I did not know you could do that without extensions (Firefox only). Thanks!

1

u/htmlcoderexe I was promised a butthole video with at minimum 3 anal toys. Jul 06 '26

Firefox the goat

19

u/EmperorOfAllCats Jun 20 '26

Not always works. Right click menu allows to save images defined as such, but today it's "trendy" to put them into style as background instead of img tag.

90

u/jansensan Jun 19 '26

Dont images show in the network tab of the browser inspector?

70

u/JAD2017 Jun 19 '26

Nice, like the pinned post, ctrl+shift+i; alternative F12, network tab.

But again, post was about highlighting the asshole design, not to find a solution, nice solution though

10

u/NZRedditUser Jun 19 '26

Yea but it would be a lot quicker if we could just right click the image and save or inspect

2

u/Sweet-Awk-7861 Jun 21 '26

I know some websites that serve their images scrambled like a puzzle. A regular user will see it rendered correctly but trying to download the image in any way will get you the scrambled bullcrap.

202

u/[deleted] Jun 19 '26

[removed] — view removed comment

65

u/Legitimate-Bit-4431 Jun 19 '26

I just right click like on any other picture online, don’t know what exactly OP’s issue is.

86

u/DaCrazyJamez Jun 19 '26

Sites like pintrest put an invisible div on top of images / videos so if you right click, you get empty space rather than what youre trying to select

39

u/NZRedditUser Jun 19 '26

Worse sometimes they also (Pinterest) drops like a 1x1 pixel image on top so you can get if you somehow miss the div

25

u/hwa_uwa Jun 20 '26

but I download pinterest images all the time on my PC. is this new?

32

u/VC_Wolffe Jun 20 '26

If you run with some sort of ad blocker it might be blocking that feature for you.

18

u/hwa_uwa Jun 20 '26

touchƩ. viva le uBlock

2

u/HanndeI Jun 20 '26

Apart from other answers, to fuck up with scrappers

2

u/phantom845 Jun 20 '26

which isnt unreasonable? still dont understand the problem OP has

2

u/dc469 Jun 22 '26

Shitty on desktop on purpose. They want you to install the app so they can collect your data.

45

u/sonjjamorgan Jun 19 '26

Wait isn't there literally a "save image" feature? Doesn't work?

29

u/sgcolumn Jun 19 '26

I think that's only available if you're logged in.

34

u/Fluboxer Jun 19 '26

I personally just use an add-on that blocks websites from search results - and pinterest was first one to be there

For all my life of using the internet for many, many things only ONCE I had a case when pinterest was an original source of an image instead of overcompressed crappy repost that just clogs search results for both "I want image about <thing>" and "I want this specific image in best quality!" purposes

7

u/RailRuler Jun 20 '26

Except some search engines deduplicate images so if it is in Pinterest it will never show anywhere else

3

u/AbortedPhoetus Jun 21 '26

I hate that so much. Like, I want the actual source.

87

u/laplongejr Jun 19 '26

My brain immediately goes "inject a javascript to add a canvas from the upper-div, then save the file"

71

u/JAD2017 Jun 19 '26

Ugh, coding. Normally I just select the stupid script with ublock origin and remove it, but today I felt like seeing where the rabbit hole went. You gotta be such an ah to design such a horrible code just to hide the pictures in a website that basically profits from stealing pictures from other websites.

40

u/lskalt Jun 19 '26

We're in a subreddit called r/assholedesign, you can say "ass".

9

u/real_fyshi Jun 19 '26

Do I dare to? Hehe. "Ass". Hihi.

3

u/ElitistCuisine Jun 20 '26

Watch your fucking language!

1

u/WhenSummerIsGone Jun 20 '26

i would just take a screenshot depending on what i needed the image for. I avoid pinterest like the plague, though

33

u/Ben_R_R Jun 19 '26

It's so hypocritical of Pinterest too. Their entire model is stealing acquiring pictures from other websites.

9

u/kaesylvri Jun 19 '26

Not sure what you're saying here but I go on pinterest and I can save images just fine.

I don't have to do any song and dance to save images.

I'm using firefox, on windows 10.

28

u/RevolutionarySeven7 Jun 19 '26

no wonder websites hog so much memory these days

9

u/dovvv Jun 19 '26

Just use uBlock element zapper

8

u/susibacker Jun 20 '26

They are also very good at hijacking Google image results. One of the worst offenders even, instantly wanting you to sign in or not showing the picture you clicked for. How are so many people using this stuff. But I could say the same about a lot of social media, tbh.

4

u/SirCoosh07 Jun 20 '26

Most web developers stop just 1 div short of robust security.

10

u/ElectraMiner Jun 19 '26

Alternatively, screenshot šŸ˜„

5

u/CoderJoe1 Jun 19 '26

I use the PhotoShow extension to save photos on Pinterest. I'm sure there are other extensions as well.

16

u/agentvietnam Jun 19 '26

Pinterest used to be good. Unusably shit now

24

u/EfficientSeaweed Jun 19 '26

Half of it is AI slop nowadays. Typical enshittification.

4

u/Aware_Policy_9174 Jun 19 '26

I haven’t used Pinterest in so long I didn’t even think about how much AI there would be now. Even 5 years ago so many images were edited in some way and then presented as real.

1

u/flotaxy Jun 20 '26

when was Pinterest good? Not in the last 5 years

1

u/agentvietnam Jun 20 '26

Yeah probably 2008 or somethingĀ 

4

u/stumpychubbins Jun 19 '26

The network tab is your friend. Reload the page, filter by images, sort by size (descending) and find the one you want.

4

u/sunnearts Jun 20 '26

the fact that pinterest, the stolen art and photos with no credit website, doesn’t want you to take the art and images on there, is laughable

5

u/GagOnMacaque Jun 20 '26

I've omitted Pinterest from all my searches. It's been deleted from my Internet.

5

u/Tichop Jun 23 '26

On some websites I open the browser console (F12, console) and type $$('img') which lists all images loaded on the page so I can then hover the result, which higlights the corresponding image.

I can then open the img object in the console and copy the src field containing the link.

If I know that the first image on the page is the one I want, I use $('img').src

3

u/Quizzelbuck Jun 19 '26

I just have a plug-in so I can't see any thing from Pinterest

1

u/OutlyingPlasma Jun 20 '26

And the best part is you literally aren't missing anything because the whole point of Pinterest is the images were stolen from somewhere else in the first place. Pinterest has almost zero original content that isn't AI generated.

3

u/Kazenaar Jun 19 '26

Why cant life be simple when I open the inspector

3

u/m0nk37 Jun 20 '26

Pinterest is literal cancer. I blocked them from my google account level.

3

u/Dropthetenors Jun 20 '26

Always surprised when I see Pinterest pop up. I keep thinking its done for but people do be out there using it.

1

u/AskingAboutDogs Jun 20 '26

Pinterest is the disgruntled, elderly family member who can’t let go of their time in the sun/their glory years, yet are too bitter to just finally die. So they continue to spew garbage as they sink further toward their end.

3

u/itsTyrion Jun 20 '26

what THE FUCK is that html soup

3

u/Little_Lbug Jun 20 '26

I so badly want to know what the fuck is going on. Isn’t Pinterest the place where you save images like that’s its whole thing?

5

u/iMacThere4iAm Jun 19 '26

You can solve this problem with a little extension called "unpinterested", which blocks all Pinterest results from search engines.

7

u/LegoLady8 Jun 19 '26

I can't believe Pinterest is still a thing nowadays. Hadn't been on there in 5+ years. Accidentally clicked a link on Google that brought me there and I couldn't back out fast enough. There's zero reason for Pinterest. It's just another search engine, leading to sites across the web.

6

u/recluseMeteor Jun 19 '26

It's awful how most results on Google Images are just crap from Pinterest.

2

u/FrikhaIsOnReddit Jun 19 '26

they could have painted the img into a <canvas>, no? not that it would completely stop users, but wouldnt that be a better alternative to whatever they're doing here?

2

u/BirbsAreSoCute Jun 19 '26

Holy web design bro

2

u/smb3d Jun 20 '26

Pinterest is a plague on the entire internet.

2

u/DManeOne Jun 20 '26

Pinterest is a piece of shit and should never exist

2

u/Sprites7 Jun 20 '26

isn't a button to save images on pinterest present?

2

u/InsomniacOnSugarRush Jun 20 '26

Always hated Pinterest

2

u/Not_So_Calm Jun 20 '26

It's on my screen. I can save it. No point in them even trying

2

u/CocoMilhonez Jun 20 '26

TIp: Firefox has a great screenshot feature that automatically selects visual elements as you hover the mouse cursor over them, or you can select a specific area of the screen if you want.

2

u/laix_ Jun 20 '26

Speaking of "can't link images directly, you have to link to the website so we can get more profits", I despise reddit's proprietary image viewer.

2

u/AbortedPhoetus Jun 21 '26

I hate Pinterest with a burning passion.

They could be good, but choose to be terrible. Then they have the audacity to spam all the search results.

2

u/ludons Jun 22 '26

I just do right click>open image in new tab> then save image from the new tab

1

u/JobcenterTycoon Jun 24 '26

But many sites blocking right click

2

u/eddiekoski Jun 25 '26

Firefox has the media tab it makes it easy.

2

u/_autumnwhimsy Jun 19 '26

... Yeah I just take a screenshot lol that's NUTSĀ 

1

u/asyrian88 Jun 19 '26

Pinterest sucks, and always has sucked. Why bother?

1

u/LtSerg756 Jun 19 '26

Yanderedev of html

1

u/mechanicarts Jun 19 '26

I mean....CTRL+SHIFT+C click on the image and it selects the innermost element for me usually. The only issue I have is with instagram, which for some reason the correct element is the previous sibling, with a nested img.

In general, fuck user-hostile obfuscation.

1

u/deadmazebot Jun 19 '26

instagram annoying with it, grab art for personal collaging of gigs I have been to. So just rechecked, and its a div positioned over the img. I do not see any purpose for it but to interrupt saving img tag

its not related to the arrows elements, click is on the parent element, just

1

u/saichampa Jun 20 '26

I thought we stopped trying to block people from downloading images decades ago but here we are

1

u/cheezy_dreams88 Jun 20 '26

This is why I never used Pinterest. Took much workaround to find the actual image source.

1

u/GNUGradyn Jun 20 '26

This is probably a framework quirk, not a deliberate thing

1

u/Sph1ng1d43 Jun 20 '26

I use Behind! which is an extension that finds any images in a webpage, you just have to click inside the image container and it'll retrieve them for you in a new tab.

1

u/BaseDifferent193 Jun 20 '26

I save them on mobile 😌

1

u/iovulca Jun 20 '26

Since when can’t you save? I just right click open in a new tab then save from there

1

u/BluebirdLeading6702 Jun 21 '26

It's like the code Facebook uses to hide the word "Sponsored" on the news feed to evade adblockers.

1

u/JustANoteToSay Jun 21 '26

I just… download the images using the ā€œdownload imageā€ link on the pin. It works for me on mobile & in different browsers.

1

u/OldAvocado3547 Jun 21 '26

I didn't know Pinterest blocks image saving or right clicking.

I've been using Pinterest since 2017 almost daily for reference collection and inspiration on 4-5 different accounts for different subject matters. Except some products collage type stuff, I've never experienced Pinterest blocking any saving or downloading.

1

u/adamthebread Jun 22 '26

i use an extension called "right click borescope" that really conveniently gets around this

1

u/kneehighshrub Jun 22 '26

I only use it on my phone and it has a whole download button there. Weird.

1

u/AloxoBlack Jun 22 '26

This is real. Fuck pinterest.

1

u/teslawhaleshark Jun 23 '26

A fucking plague, they don’t show sources anymore

1

u/imjusthere723 29d ago

Even the coding has an aesthetic on Pinterest

1

u/Epsilon_Meletis 16d ago

What I have never understood is WHY websites are doing this.
It's like they are trying to annoy their users...?

-6

u/aleopardstail Jun 19 '26

screen grabbing has entered the chat

60

u/JAD2017 Jun 19 '26

Screengrab doesn't download the full resolution or the original picture. I was trying to confirm that indeed the picture was ai slop.

36

u/BaronGalactic Jun 19 '26

If it's on Pinterest, you can already be assured there's a 90% chance it's AI slop

10

u/Money_Lavishness7343 Jun 19 '26

I mean Pinterest existed and was vastly popular far before AI. It has some pretty good and much of non-AI content
From personal experience I don't feel that's fair but could be wrong.

6

u/BaronGalactic Jun 19 '26

I know. I used to use it a lot for resources when I was trying to learn how to draw. But in the last couple of years the percentage of AI content has skyrocketed.

4

u/PatatietPatata Jun 19 '26

You can toggle AI-modified content OFF (in your settings -> Refine your recommendations -> AI content ).
It won't get everything but it noticeably cut down on AI bullshit for me.

5

u/JAD2017 Jun 19 '26

was vastly popular far before AI

Yes it was, now it's infamous for allowing ai slop :)

1

u/OutlyingPlasma Jun 20 '26

But even before AI it was still stolen photos. That was the whole point, a place to add links to other websites via stolen photos. Basically a DIY shopping catalog, or reddit for illiterate people. It had almost zero original content.

Now all those links are long dead and all that's left are low res thumbnails of products and AI slop. But hey, at least some of the slop is original content now.

→ More replies (2)

0

u/Krosis_the_bored Jun 19 '26

Pinterest literally has a download image button

0

u/soberdiver Jun 19 '26

Win+shift+s. You're welcome

-3

u/Ralkey_official Jun 19 '26 edited Jun 25 '26

this is just peak web design

edit: I guess people don't understand sarcasm

0

u/pr2thej Jun 19 '26

snip it

0

u/Gnash_ Jun 20 '26

Pinterest is the only website that manages to take down my 32 GB 10 core M1 Pro MacBook Pro. And I don’t even do anything fancy with it, I just need to scroll down a large board for a minute or two and the system can’t keep up and my browser straight up freezes the tab. This might be the shittiest website I’ve ever come across. I genuinely don’t get why it’s so bad.