Live data from Hacker News

The ideal tech stack for a personal developer blog in 2020

vriad.com

51–60 of 275 posts

Re: The ideal tech stack for a personal developer blog in 2020

#51
I'd say the perfect tech stack is the one you already know or you the one that is close to your daily stack.

No point in learning "the ideal" stack, if you can use something you know that is as good as any other stack.

Let's be honest. You can develop and deploy static site anyway you want.

Re: The ideal tech stack for a personal developer blog in 2020

#52

Surely this is meant as satire, the title is clearly tongue-in-cheek. I’d worry that some less experienced folks might take it at face value, rather than as a salient warning about the dangers of grossly over-engineering for no discernible benefit.

I'm not sure it is. There's a GitHub repo to go with it: https://github.com/vriad/devii

Re: The ideal tech stack for a personal developer blog in 2020

#54
post #11

I’m sorry, but this is ridiculous for a static site. React and Typescript with embedded markdown? This problem has been solved a thousand times over with much simpler tooling. > I literally have zero memory of how we used to build forms in the pre-React times. :(

Wordpress is surely way "bigger" solution than this.

Re: The ideal tech stack for a personal developer blog in 2020

#55

Surely this is meant as satire, the title is clearly tongue-in-cheek. I’d worry that some less experienced folks might take it at face value, rather than as a salient warning about the dangers of grossly over-engineering for no discernible benefit.

Nah, this is to me clearly in earnest. Nothing whimsical about it, it’s all very practical.

(It’s not the tech stack I’d choose, but I see exactly why it’s being chosen.)

Re: The ideal tech stack for a personal developer blog in 2020

#56

This is front end only so not really a complete stack.

It’s using tech mostly used on the frontend (React), but using it on the backend via Next.js to generates static files that you can serve with any simple host you like.

Re: The ideal tech stack for a personal developer blog in 2020

#57
> Devii is powered by Next.js. We chose Next.js because it's the simplest, most elegant way to generate a static version of a React-based website.

There's nothing simple about this crapton of dependencies. Sure, it may be easy to build things this way, but let's not conflate the two terms.

Re: The ideal tech stack for a personal developer blog in 2020

#58
post #38
post #7

As a non-React developer: forms, before React, were actually super simple. The author mentions they forgot how to do forms the normal way, but like, can you imagine how excited they'll be by the simplicity?

i think (but i'm not sure) that this blog post is a joke?

I don't think so. Check the accompanying githup repo.

Re: The ideal tech stack for a personal developer blog in 2020

#59
post #16
post #12

Earlier quoted context omitted.

Because writing your own blog engine is a good way to learn various web technologies that you haven't had a chance to use.

I agree, but then really you're not interested in creating blog content per-se, but in exercising your engineering skills. I think it's important to be honest about that intention both with your audience and yourself when writing articles like this.

+1 for this. I use Posthaven because it's the simplest way for me to publish blog posts plain and simple (and has been for years.)

A lot of devs get excited by the idea of building a blog and not of actually writing the content. You've got to actually have ideas to share and be prepared to put in the time to write posts.

I wouldn't even think about tech before you've got a backlog of at least 2 or 3 posts.

Re: The ideal tech stack for a personal developer blog in 2020

#60
"The ideal tech stack..." goes on to rattle off half a dozen or so components, ranging from languages to libraries.

Ugh.

It's a personal blog. A small amount of mostly static text and images served on demand in a couple different formats. Maybe some search/tag capabilities and maybe a comment section.

This problem is essentially the foundational problem that the web was initially trying to solve twenty-five years ago. And to be honest, twenty-five year old server-side solutions still do a pretty good job of it. (Although admittedly, the format of the resources served by those solutions are now far richer than they used to be.)

Post reply on HN