Live data from Hacker News

Medium suspended our account and blocked access to all our published stories

mastodon.xyz

81–90 of 255 posts

Re: Medium suspended our account and blocked access to all our published stories

#81

Earlier quoted context omitted.

Commonmark is a wonderful and well defined markdown standard (ie the one GitHub uses)

Cited in the spirit of good humor, but not irrelevant: https://xkcd.com/927/

Serious question - how is it not irrelevant? Should it be posted any time people discuss the pros and cons of various standards?

Re: Medium suspended our account and blocked access to all our published stories

#82

Hey everyone, if you're looking for a fantastic blog engine, I want to tell you about Ghost: https://ghost.org I found Ghost while looking for a new blog engine for my company. My first instinct was to use Medium as well, but I ended up hitting a lot of issues because it was impossible for us to customize it (add custom javascript, charts, disable the lame "highlights", custom domain was not free, etc...). 1. Ghost i…

Not mentioned above but "interesting":

- requires exactly mysql, nodejs, nginx and at least 1GB RAM.

- the only supported setup is Ubuntu 16.04

- has some sort of ghost-cli application used for management.

At least for me: not enough fingers for "thumbs down".

Re: Medium suspended our account and blocked access to all our published stories

#83
post #58
post #41

Earlier quoted context omitted.

I don't believe you can use HTTPS with a custom domain (a domain that doesn't end in github.io or amazonaws.com), with GitHub pages or S3. Two free choices I'm aware of, for hosting at a URL that both future-proofs your choice of hosting provider and provides end-to-end encryption to site visitors, are the free CloudFlare plan in front of GitHub or S3 (or any other static hosting service), and the free hosting plan o…

You can, we use S3 at my company to host a site used by pathologists to sign out reports. How we did that... I'd have to ask my coworker, but we have https and a custom domain.

Aws cert manager (acm) now does this for any domain you can verify

Re: Medium suspended our account and blocked access to all our published stories

#84

Static site generator + static site hosting + JavaScript based comment system like disqus is a great combo. You can generate in a container off markdown using something like Hugo and host on S3. I’ve got free tier werker pulling my repo, building it, then deploying it to CloudFiles. All I do is commit the markdown changes to github.

If you are concerned about the privacy of your readers, using Disqus probably isn't such a good idea:

https://replyable.com/2017/03/disqus-is-your-data-worth-trad...

Re: Medium suspended our account and blocked access to all our published stories

#85

Hey everyone, if you're looking for a fantastic blog engine, I want to tell you about Ghost: https://ghost.org I found Ghost while looking for a new blog engine for my company. My first instinct was to use Medium as well, but I ended up hitting a lot of issues because it was impossible for us to customize it (add custom javascript, charts, disable the lame "highlights", custom domain was not free, etc...). 1. Ghost i…

Not mentioned above but "interesting": - requires exactly mysql, nodejs, nginx and at least 1GB RAM. - the only supported setup is Ubuntu 16.04 - has some sort of ghost-cli application used for management. At least for me: not enough fingers for "thumbs down".

I'd love to have them support Postgres (they dropped support because of not enough developers working on it), but giving it the thumbs down for those reasons seems silly. You either self-host in which case you stuff that on its own docker instance and forget about it, or you use their hosted plan in which case why do you care what software/db engine they run?

Re: Medium suspended our account and blocked access to all our published stories

#86
post #14
post #9

A blanket statement like 'Medium is bad' does not have enough nuance. Medium is for profit centralized service. You are trading freedom for convenience and access to an audience. It is for you to decide if this tradeoff is profitable. For me, having Medium as the sole repository of my content does not seem like the right tradeoff. Maintaining a static site with a CDN costs less than 5$ a month. Having complete contro…

Why do you even need a CDN? GitHub will host static sites for free and updating is a git push. S3 will as well for pennies a month unless your site is huge.

“I fled Medium because they are a profit making enterprise that rando-bans people.”

“Cool, where’d you go?”

“GitHub pages.”

“...”

Re: Medium suspended our account and blocked access to all our published stories

#87
I wish people would stop using Medium, especially for programming blogs. The UI is terrible (footer bar, animated pop-ups, monoculture design, paywalls), and I don't like landing on Medium sites. Publishing on the Web is supposed to be decentralized.

If you're going to write a tech blog use a static site generator like Metalsmith, Hugo, Hexo, Middleman, Jekyll, or Pelican, and deploy it for free on Netlify.com.

Re: Medium suspended our account and blocked access to all our published stories

#88

Earlier quoted context omitted.

Here's the post where they quote the message Medium sent them: https://mastodon.xyz/@Liberapay/99744414079487371 And here's the policy page it links to: https://help.medium.com/hc/en-us/articles/360000646167

Ah, that policy page was added a week ago (the update date is visible on the mobile site). Even if that policy was violated, it’s a jerk move to ban for infractions prior to that date.

Jerks do jerk moves to move as jerks.

Re: Medium suspended our account and blocked access to all our published stories

#89
post #21
post #13

Always publish on your own platform then syndicate it across all the relevant social media providers to get exposure. It's a huge pain, especially now that most platforms are closed and don't provide automation (APIs, RSS), but it's really the most flexible solution. It also makes syndicating to new providers a lot less painful since you'll have some standard raw form (e.g. Markdown) which you can create a manual or…

Standard reminder that Markdown, while pleasant to author in, is perhaps one of the least standard formats ever (every implementation does things their own way; see Babelmark 2) and not a great archive format, largely as a result. (Markdown files don’t have version or flavor information embedded) I hear org-mode is a good alternative. In the mean time, consider storing a permanent .html version upon publication of ma…

Standard reminder that Markdown, while having no formal standard, tends to be implemented in broadly compatible ways across various systems. Yes, there are edge cases -- yes, I've seen the lists comparing different renderers; yes, I've run into differences once in a while myself -- but in general, it turns out that the Markdown documents I wrote 15 years ago are still perfectly readable today, no matter what Markdown engine I drop them into. Or, you know, even if I don't drop them into a Markdown engine, because the entire point of Markdown is to be easily human-readable, without "looking like code," before rendering in the first place.

Markdown isn't the be-all and end-all of markup formats, and there are valid reasons for using formats with strict specifications (e.g., AsciiDoc or ReStructuredText for certain kinds of technical writing). But the chances of Markdown documents suddenly being woefully unreadable in 20 years are roughly in line with the chances of plain text Unicode documents being unreadable in 20 years.

Re: Medium suspended our account and blocked access to all our published stories

#90
post #42
post #9

A blanket statement like 'Medium is bad' does not have enough nuance. Medium is for profit centralized service. You are trading freedom for convenience and access to an audience. It is for you to decide if this tradeoff is profitable. For me, having Medium as the sole repository of my content does not seem like the right tradeoff. Maintaining a static site with a CDN costs less than 5$ a month. Having complete contro…

> Maintaining a static site with a CDN costs less than 5$ a month. That's putting it mildly! I host a (small) static webpage on AWS S3 + CloudFront, and my monthly bill is 56 cents.

It would be free on netlify.com.
Post reply on HN