Hacker News new | ask | show | jobs
by hdra 3380 days ago
While I don't feel as strongly about Medium as the parent comment, I'm also less inclined to read an article when it is posted on Medium. No real reason, really, just a personal bias from myself because I'm finding a lot of "thought-leader-pieces" articles over there, and technical content over there are not as well formatted as the ones on someone's personal blog that are well designed for code snippets and such in the article.

I still read Medium articles when I came across articles written by people whose work I'm somewhat familiar with though.

1 comments

> it has become the go-to site for tech musings written by unpaid people who can't be bothered to set up their own blogs.

This is it for me. If you want to write about tech, or the tech scene, and especially web tech, why can't you just build a site? I've built a few and I don't even do web development for a living so I had to teach myself some stuff.

Because it is difficult, a lot of work and potentially very expensive (when you have traffic) to build your own.

If you are in tech, you should understand to use the right tool for the job.

I agree. I don't think they should write a custom website to host their articles. I'm perfectly happy reading Ghost or WordPress.com articles as long as the site is well designed to fit the content.

While Medium is a very beautiful, well designed site, it doesn't work equally well for every kind of content out there. Technical content with code snippets are one of the least-suitable type of content for Medium.com design.

No matter how much thought is put into the design of the site, Medium's design is still designed to be a one-size-fit-all kind of product, and well, that means no matter how high quality their design is, it is still taking a somewhat "highest-common-denominator" approach to the design.

I'm not saying you have to build a server to host your blog. You can host it on AWS or elsewhere if you get a lot of traffic. It's not that hard to get a domain name, host it somewhere, and write some HTML code.

Yes, it could be difficult and a lot of work if you think you need embedded videos that autoplay and follow readers as they scroll down trying to escape that and the pop up pestering them to subscribe.

Hosting it somewhere on your own will not give you good analytics, a good clean theme, and a CDN. A wordpress does. You're going for a ton of extra work.

AWS is madness for personal projects. You don't seem to realize how bad you're about to be bankrupt when an article hit the front HN page. If you have a high quality picture, a gif or a video, it's game over.

"You don't seem to realize how bad you're about to be bankrupt when an article hit the front HN page."

I've had a couple of AWS-hosted pages make it to the HN front page.

I don't recall my S3 bill going up to any significant degree, much less bankrupting me.

S3 bandwidth is $0.023/GB at the most expensive tier. It's hard to imagine bankruptcy resulting from any text-oriented site, even if it does hit the HN home page. Maybe if you're hosting hours of HD video or something.

Also, I've never had any trouble using CDNs from an S3 page. Details?

Bandwidth is $0.090 per GB. (You mixed it up with the storage price that is $0.023/GB).

Let's say the site is 1MB to deliver. That's nothing fancy, lots of text, css, logos, headers.

For 100k viewers, that's about 100GB of traffic, or $9 dollars.

How do you bankrupt yourself with your blog from there: By multiplying it.

1) You've got more than this single article => triple it.

2) You've got medias (picture/gif/video) that take 3MB => quadruple it.

3) My traffic stats don't account for bots/crawler => You're at the mercy of them or any dude who "ab -n 1000000 yoursite.com/logo.png"

A bill of hundreds of dollars for a personal blog might not scare a HN silicon valley engineer making $15k a month but that's much more than enough for the rest of the world. Even in western Europe, don't expect the disposable income to be much more than $100 a month.

It is harder to make said html look nice - unless you are graphics designer. But also, it requires additional time to spend which matters.
Hosting a web site for a blog is expensive? A local webhost offers 75GB of transfer for $6 a month, with the highest transfer day per month dropped completely. If you want a CDN on top of that, it's a whopping $1 per month per 10GB.
you could easy have a web server with thousands of visitors running on a rasbery pi. i would say a week end project to set it up or one hour if you already are familiar with web servers.
Your raspbeery will be crushed to death when the article will go on the first page of HN.

You seriously overestimate the capabilities of a raspberry and undestimate the traffic you get.

I'm curious about this. If you have a purely static site, what would be the major bottleneck for a front-page-reaching site hosted on a raspberry pi? I'm thinking things like compression would eat up a lot of its CPU, but you seem to know more about this than me.
A solid 3,000-word article with enough CSS to make the page look nice will fit comfortably in 20-30KB gzipped. A Raspberry Pi could handle on the order of tens of requests per second (tens of thousands per hour).

A fluffy 500-word Medium-style article with 1-2MB of JavaScript serving no apparent purpose and 5-10MB of animated GIFs would be another story.

> what would be the major bottleneck for a front-page-reaching site hosted on a raspberry pi?

For a fully static fully cachable site, it's the bandwidth.

Your home connection cannot serve Gigabytes of data in a timely fashion.

Can't compression be done ahead of time? ISTR it worked that way when serving content directly from S3, at one point...
You could also reuse an old laptop, buy a proper server, rent a VPS, or buy web hosting space for a few bucks per month.
even worse i have seen web devs using png tables instead of html tables or svg. have publishing web content become too hard ?