Live data from Hacker News

Show HN: Mail Memories – A desktop app to rescue photos from Gmail

mailmemories.com

51–60 of 71 posts

Re: Show HN: Mail Memories – A desktop app to rescue photos from Gmail

#51

Here's a gmail extractor google apps script that does the same thing, but for not $30! function autoExtractGmailMedia() { const START_TIME = Date.now(); const TIME_LIMIT = 1000 * 60 * 5; // 5 minutes (leaves a 1-minute safety buffer) const BATCH_SIZE = 50; const FOLDER_NAME = "Gmail_Media_Export"; // 1. Retrieve our current position from the script's property store const scriptProperties = PropertiesService.getScript…

Clever. But Gmail and Google Drive share the exact same 15 gb storage quota. If a user has 10 gigs of photos in their Gmail and runs this script, it'll create another 10 gb of files in their Drive.

Instead of saving space, this script doubles their storage usage to 20 gb, breaking through the 15 gb free tier and forcing them to buy a Google One subscription.

That’s one of the reasons this desktop app exists, it streams the files straight to your hard drive so you can avoid this

Re: Show HN: Mail Memories – A desktop app to rescue photos from Gmail

#52
post #47
post #15

Earlier quoted context omitted.

Takeout is great for a total archive backup, but using it just to extract photos is where the UX breaks down for most people. When you export Mail with Takeout, Google dumps your entire history into a huge .mbox file. If you have a 20-year-old account, you're downloading tens of gigabytes of raw text data, headers, and metadata just to get to the images. Once you have that huge file, you still have to figure out a wa…

Thank you Claude

Nah, but thanks. I actually spent a lot of time checking out Takeout, shell scripts, and existing options before writing a single line of code for the app.

Non-technical users don't want to deal with mbox files no matter how many scripts someone recommends. And shell shells scripts...

I made this to bridge the gap. I wanted a utility that handles the protocol mess locally, avoids downloading gigabytes of metadata, skips the cloud, and just gives you your own photos back.

Re: Show HN: Mail Memories – A desktop app to rescue photos from Gmail

#53
post #49

Just wanted to take a moment to say thank you to everyone who commented today. Launching on HN isn't for the faint of heart, but it’s been really valuable. What a day. I was told my landing page looks like an AI wrote it, got roasted for a confusing illustration metric (and rightly so), and received the ultimate rite of passage: being told my app could be replaced by a couple of Linux CLI commands. Unironically, than…

This place can get a little snarky but congrats on shipping!

Re: Show HN: Mail Memories – A desktop app to rescue photos from Gmail

#55
post #51

Here's a gmail extractor google apps script that does the same thing, but for not $30! function autoExtractGmailMedia() { const START_TIME = Date.now(); const TIME_LIMIT = 1000 * 60 * 5; // 5 minutes (leaves a 1-minute safety buffer) const BATCH_SIZE = 50; const FOLDER_NAME = "Gmail_Media_Export"; // 1. Retrieve our current position from the script's property store const scriptProperties = PropertiesService.getScript…

Clever. But Gmail and Google Drive share the exact same 15 gb storage quota. If a user has 10 gigs of photos in their Gmail and runs this script, it'll create another 10 gb of files in their Drive. Instead of saving space, this script doubles their storage usage to 20 gb, breaking through the 15 gb free tier and forcing them to buy a Google One subscription. That’s one of the reasons this desktop app exists, it strea…

> breaking through the 15 gb free tier and forcing them to buy a Google One subscription

Which is like... $2 for 100GB and you can cancel immediately after, or if you get the same offer I got: $0.50.

$27 in savings and 100GB of storage, sounds like a good deal to me!

Re: Show HN: Mail Memories – A desktop app to rescue photos from Gmail

#56
post #49

Just wanted to take a moment to say thank you to everyone who commented today. Launching on HN isn't for the faint of heart, but it’s been really valuable. What a day. I was told my landing page looks like an AI wrote it, got roasted for a confusing illustration metric (and rightly so), and received the ultimate rite of passage: being told my app could be replaced by a couple of Linux CLI commands. Unironically, than…

This place can get a little snarky but congrats on shipping!

Thanks so much! Definitely a trial by fire, but I'm glad I put it out here. 'Preciate the kind words.

Re: Show HN: Mail Memories – A desktop app to rescue photos from Gmail

#57
post #55
post #51

Earlier quoted context omitted.

Clever. But Gmail and Google Drive share the exact same 15 gb storage quota. If a user has 10 gigs of photos in their Gmail and runs this script, it'll create another 10 gb of files in their Drive. Instead of saving space, this script doubles their storage usage to 20 gb, breaking through the 15 gb free tier and forcing them to buy a Google One subscription. That’s one of the reasons this desktop app exists, it strea…

> breaking through the 15 gb free tier and forcing them to buy a Google One subscription Which is like... $2 for 100GB and you can cancel immediately after, or if you get the same offer I got: $0.50. $27 in savings and 100GB of storage, sounds like a good deal to me!

I'm stuck enough in the gecosystem that the storage is of small worry there but good point. It's a cute idea for the main topic - I saw some pictures I'd forgotten about for 20 years so that was fun.

Re: Show HN: Mail Memories – A desktop app to rescue photos from Gmail

#58
post #55
post #51

Earlier quoted context omitted.

Clever. But Gmail and Google Drive share the exact same 15 gb storage quota. If a user has 10 gigs of photos in their Gmail and runs this script, it'll create another 10 gb of files in their Drive. Instead of saving space, this script doubles their storage usage to 20 gb, breaking through the 15 gb free tier and forcing them to buy a Google One subscription. That’s one of the reasons this desktop app exists, it strea…

> breaking through the 15 gb free tier and forcing them to buy a Google One subscription Which is like... $2 for 100GB and you can cancel immediately after, or if you get the same offer I got: $0.50. $27 in savings and 100GB of storage, sounds like a good deal to me!

[dead]
Post reply on HN