Live data from Hacker News

IMGZ – Paid image sharing

imgz.org

291–300 of 409 posts

Re: IMGZ – Paid image sharing

#291
post #128

Earlier quoted context omitted.

>Yes, it's a database. That's where you're meant to put DATA. Most (all?) large-scale high-volume image storage architectures I'm aware of do not store billions of images as blobs in a database. Instead, they typically store the images as files . The database only holding metadata info and a pointer to the image filename location (or url if using AWS S3 or CDN). E.g. Facebook is one of the largest MySQL sites (if not…

I understand that postgres is pretty decent at storing large binary data though? I've been meaning to investigate trying storing images in postgres on a hobby web project where it could be convenient; I'd still want to make sure I was streaming bytes from postgres to the client, not loading the whole image into memory and only once fully loaded sending it to the client. Looking at the pg API's for my language/platfor…

Postgres is indeed good at that. I know from experience.

If you want to commit ten things every second all week, don't transfer so much data in a single transaction that you hold any important locks for half a minute. And if you use replication, test while replicating.

If the blobs you store are small enough to not disturb your commit rate, then pg's drawbacks are IMO smaller than those of the alternatives, particularly if you want some sort of commit that returns when both image data and something else have been committed.

Re: IMGZ – Paid image sharing

#292
post #63
post #40

Earlier quoted context omitted.

>I've been hoping for an Imgur replacement for simple, hosted image sharing. If you are willing to pay for things, then any good old web host + FTP are your friends.

That sounds like a lot of work. Why not just push my screenshots to good ol' NNTP?

Because downloading a tiny GIF in 20 parts, is always fun. /s

Re: IMGZ – Paid image sharing

#294

Earlier quoted context omitted.

That does not answer the question "Then why would I trust him with my credit card"?

For the same reason you'd trust a free service with your data. Especially photos and image data.

I don't know about you, but I consider my credit card details to be a more sensitive piece of data than some meme I wanted to show to some friends.

Re: IMGZ – Paid image sharing

#296
post #28

Earlier quoted context omitted.

The switch from 'StavrosK really confused me and seemed fake at first...

Oh yes, sorry! I legally changed my username, apparently you can do this and dang was very accommodating.

I changed mine a while back[1], (I was Jaruzel), although I don't think dang would be that happy if we all started asking.

Stavros, now that I'm in your comment replies... can I hijack this comment branch to ask what payment provider you are using and what the integration process was like ?

---

[1] I did it during a peak of self-loathing, I kinda regret it now, but ho-hum.

Re: IMGZ – Paid image sharing

#297
post #90

Somebody suggested me cubeupload some time ago. Is there anything wrong with it?

Is it free? Free image hosting always eventually shuts down or monetizes with redirects to an html page with your image and bunch of ads. Bandwidth isn't cheap enough for free image hosting to survive.

It is free. It has ads and accept donations. No compression. Online since 2006.

Re: IMGZ – Paid image sharing

#298

Earlier quoted context omitted.

Actually I have the exact same problem. I should fix that... EDIT: Fixed, thanks!

Honestly I feel like you're being very dishonest about your commitment to providing no support, you've provided all kinds of support already.

Ah but I didn't commit to providing no support, I didn't commit to provide support. Support is provided at-will!

Re: IMGZ – Paid image sharing

#299
post #147

Earlier quoted context omitted.

> I don't think he wants to hurt me in their HN profile they wrote about themselves: Provocateur extraordinaire. So malicious intent cannot be ruled out

Next time you get years of data deleted without any warning, let's see how you're gonna react to it!

I mean, it's not "without any warning" when you didn't see the warning. It was there.

Re: IMGZ – Paid image sharing

#300
post #128

Earlier quoted context omitted.

>Yes, it's a database. That's where you're meant to put DATA. Most (all?) large-scale high-volume image storage architectures I'm aware of do not store billions of images as blobs in a database. Instead, they typically store the images as files . The database only holding metadata info and a pointer to the image filename location (or url if using AWS S3 or CDN). E.g. Facebook is one of the largest MySQL sites (if not…

I understand that postgres is pretty decent at storing large binary data though? I've been meaning to investigate trying storing images in postgres on a hobby web project where it could be convenient; I'd still want to make sure I was streaming bytes from postgres to the client, not loading the whole image into memory and only once fully loaded sending it to the client. Looking at the pg API's for my language/platfor…

Does it still require a backup/restore cycle for upgrades? That could be an issue.
Post reply on HN