Honestly, I would just write my own HTML/CSS and buy hosting on a server somewhere. This is cheap, and gives you a great deal of control, while also honing your web development skills. (And doing it yourself feels good!)
And yeah, it feels good.
81–87 of 87 posts
Honestly, I would just write my own HTML/CSS and buy hosting on a server somewhere. This is cheap, and gives you a great deal of control, while also honing your web development skills. (And doing it yourself feels good!)
And yeah, it feels good.
For just having something already set to focus on your writing, I really like what I've seen from Jekyll, I don't have a need yet but I'm definitely keeping it in mind for future projects.
Earlier quoted context omitted.
TIL what TIL means. You are too lazy to type "Today I Learned" and your answer to someone asking for a blog platform is to build it themselves?
"TIL" has more memetic meaning behind it than the full phrase spelled out.
Is everyone shying away from wordpress for security reasons? I like the simplicity of wordpress, but in the back of my mind I am concerned that one day I'll visit my site and it will have viagra ads all over it. It would be less of a concern if I blogged daily, but I go to it rarely enough that it could be hosting malware (and making me look like an idiot) for quite a while before I realized it.
Wordpress has some downsides: * The hosted version doesn't let you put ads in. * If you host yourself it is a lot of maintenance to keep wordpress patched, spam cleared, etc. * It is dynamic, so each page needs to be built based on a query to the mysql database. For a handful of users this is no big deal. If you hit the HN front page your site will be overloaded. On the other hand, Wordpress is good if you blog on th…
* Wordpress now auto-updates, so you don't have to worry about patches.
* WPSuperCache is a Wordpress plugin that serves up static content. Only logged in users see a dynamic page.
HTML is built for making documents and a blog seems like a perfect case when you should just open up a text editor and write some HTML. That's how I started my own blog recently. Then I switched to ghost.io. It's a nice platform, but I might go back to hand writing it. To do code snippets, try the or tags. I suppose if you want a full commenting system, then a platform makes sense. However, on low-traffic blogs I thi…
As in don't you want some tags to organize the posts? Don't you want an index of your tags, and an index of your posts? You'd need to edit by hand 10 files just to add a new post if you wanted those necessary features and yeah they are necessary if you're not just writing a diary for yourself. If that's the case you don't need a blog at all just a folder with text files on your machine.
But I agree with you in that I like to just open up a text editor and start writing, so I use a script called "Bash Blog" which lets me do just that.
The website it produces are static html files, and it uses a shell script to reassemble itself after every new post I created so I don't need to end up editing 10 files, but I still get all the useful features I mentioned above.
That said, I use the static site generator mynt. Host the generated website on digitalocean droplet behind an nginx server.
If you want to go the static site route and want to try all the options that you like, (and lets be honest, that is a big part of the fun setting up a blog) here are some aggregated lists