Live data from Hacker News

Medium is not the home for your ideas

hulry.com

261–270 of 377 posts

Re: Medium is not the home for your ideas

#261
I've had Medium do this to me and in server logs for my homepage I found hits from a Medium owned subnet preceded by hits from a Slack robot. Then some more Medium requests with a referrer from my other social media. Definitely not automated.

It seems like Medium manually reviews any story (and user!) that crosses some threshold of traction.

Re: Medium is not the home for your ideas

#262

Earlier quoted context omitted.

What's the best static site generator that meets the following requirements: a) Doesn't use node.js. b) Has built-in syntax highlighting for C#, SQL, PowerShell and Rust at a minimum. c) Is also good at "photo journals" or galleries. I played around with Hugo, but the themes were ugly and it was very weak at managing pictures associated with an entry instead of the entire site.

a) seems like a very arbitrary restriction

It doesn't seem like an arbitrary restriction to me though. The node.js ecosystem is a complete disaster if you're not tuned in to it, and if I want a fire and forget blog generated from static files then that's the complete opposite of node.js where you have to unfuck the imbred dependencies that form in the bloated, always changing ecosystem when someone decides to go CADT with their components.

Re: Medium is not the home for your ideas

#263

Earlier quoted context omitted.

You're overestimating Netlify's build tooling. It literally just spins up a virtual machine with Node on it, clones your repo, and does an `npm install && npm build`. When that finishes it copies the output directory to a server to host. Moving to a different host is a case of finding something that will let you do the `npm install && npm build` bit, which practically every modern hosting company does these days. Net…

Which brings us back to my original question: Why????? Why bother doing all that and relying on third party tooling, regardless of how simple it is to run a command? If this is what I wanted, I could write a 5 line shell script on a raspberry pi which can do just that. I DON'T want to do either of that. Add a file, push it and know everything has worked.

> I DON'T want to do either of that. Add a file, push it and know everything has worked.

That's precisely what Netlify offers you.

Re: Medium is not the home for your ideas

#264

Earlier quoted context omitted.

Which brings us back to my original question: Why????? Why bother doing all that and relying on third party tooling, regardless of how simple it is to run a command? If this is what I wanted, I could write a 5 line shell script on a raspberry pi which can do just that. I DON'T want to do either of that. Add a file, push it and know everything has worked.

The reason I have things set up to deploy from github to Netlify is mainly because I'm not the only contributor to things I work on. As soon as you work in a team it's far simpler to have a central service that people push to doing the builds, especially if you don't want contributors to have access to the host server.

I'm not questioning the scenario where you have multiple contributors. This is one of the major reasons why the concept of ci/cd exists.

The topic of the thread is __specifically__ personal blogs/pages and my point is as strong as ever: having to deal with builds, cis, for your personal page is pure bs.

Re: Medium is not the home for your ideas

#265

I've been yelling about this for years, but please start & own your own blog. Use webflow, ghost or whatever you like, but wordpress is good enough for most people. HN audience can likely handle their own, but if ease-of-setup is an issue - I created StartABlog.com to help people do this (and we'll actually set up your site for you for free - https://startablog.com/start ). Own your platform. Own your content. Own yo…

[deleted]

Re: Medium is not the home for your ideas

#266

I've been yelling about this for years, but please start & own your own blog. Use webflow, ghost or whatever you like, but wordpress is good enough for most people. HN audience can likely handle their own, but if ease-of-setup is an issue - I created StartABlog.com to help people do this (and we'll actually set up your site for you for free - https://startablog.com/start ). Own your platform. Own your content. Own yo…

What's the best static site generator that meets the following requirements: a) Doesn't use node.js. b) Has built-in syntax highlighting for C#, SQL, PowerShell and Rust at a minimum. c) Is also good at "photo journals" or galleries. I played around with Hugo, but the themes were ugly and it was very weak at managing pictures associated with an entry instead of the entire site.

I have had a great experience with statik.

It's in Python (pip install...), it uses a very complete and flexible Markdown library (never found a language that it didn't support, but syntax highlighting is in a plugin), and is a site generator, not a blog generator.

But it takes some up-front programming to define your site structure.

Re: Medium is not the home for your ideas

#267

Earlier quoted context omitted.

Which brings us back to my original question: Why????? Why bother doing all that and relying on third party tooling, regardless of how simple it is to run a command? If this is what I wanted, I could write a 5 line shell script on a raspberry pi which can do just that. I DON'T want to do either of that. Add a file, push it and know everything has worked.

> I DON'T want to do either of that. Add a file, push it and know everything has worked. That's precisely what Netlify offers you.

Netlify simply adds an abstraction layer over a task which I don't want to be performed __AT_ALL__. I don't care if I'm doing it myself or someone else is on a server somewhere on my behalf. It is utterly stupid to have all that to serve a static file.

Re: Medium is not the home for your ideas

#268

Folks looking for a Medium alternative, please checkout https://diff.blog . It's an aggregator of developer and engineering blogs I built an year back. It has been growing steadily since. The reason why I built this was to solve the problem of disoveralibilty of self hosted blogs. It's hard for bloggers with self hosted blogs to reach a big audience. So a lot of them end up moving to a platform like Medium which give…

As others have said, this is great! A simple but very useful idea and a great execution. Thank you for not making it an amalgamation of heavy javascript frameworks.
Post reply on HN