I am the "weird dude who writes raw HTML" LOL. I had a self-hosted WordPress blog from 2006-2010, but security updates become a burden, especially since I had to modify the WP source code a little to do exactly what I wanted with the RSS feeds. After a few years of not blogging at all, I decided to use the simplest possible "system", which is writing blog posts in raw HTML in a text editor, as well as writing the RSS…
How to Start Your Blog in 2023
131–140 of 257 posts
Re: How to Start Your Blog in 2023
#132Earlier quoted context omitted.
Just gave it a (very) quick look > a static site is a site with no fancy clicky things, signups, comments, just plain html Technically I think you can have comments via some embedded widget. Each page is still static, but there's a script tag in there that embeds a widget into the page that gives you commenting, usually via some SaaS I think Disqus was the big one for a while. There was one I saw recently that uses g…
Cactus Comments [1] is another option. It uses Matrix under the hood. [1] https://cactus.chat/
Re: How to Start Your Blog in 2023
#1331. What you use or wherever you host, make sure that you can export your content in either plain text or a universal format that can be used by another tool or host it yourself. In short, own the content and use whatever tool it fits your current situations and limitations. 2. Possibly, try to get a domain of your own, and preferably a `.com`. Point that to whichever server you use (if they don't allow you to point,…
There's so many better options better than .com (commercial) .net .org .me .io .blog .info You can make it topical too .expert .engineer .doctor .camera .software Or have fun with it .lol .wtf .foo
Re: How to Start Your Blog in 2023
#134Re: How to Start Your Blog in 2023
#135The current iteration is optimized around not having it be a source of stress or anxiety for me. Here is my setup:
* I just use self-hosted Wordpress site on a Digital Ocean droplet.
* I made my own theme that strips pretty much everything out: it's one big page with 500+ posts on it, all text. No comments, images, video, anything like that. Minimal markup. Takes less than a second before the page can be interacted with.
* There are no post pages, and no archives (again, just one big page).
* Consequently, you search by pressing cmd-f in your browser, which is so much better than a search widget (and is the main reason I went with this design).
* I make entries whenever I want to, and then queue them up with a plugin that releases 1 post every 4 days, on a schedule. I have 112 posts in the queue, so I could not touch this thing for a year and it would be still running.
* My main goal for the blog is to record things that have happened: diary, commonplace book, repository for movie and book reviews. Not to make money or be a famous thought leader and influencer. I recognize that's not everybody's goal, but with those simplifying assumptions in place, it became super easy to make and maintain a blog.
Re: How to Start Your Blog in 2023
#136For the combination of Hugo and GitHub Pages, images are pretty effortless as well. For example, for a post with a path of `content/posts/post-title.md`: 1. Add the image at `content/posts/post-title/image-name.png` 2. Add markdown that references it, like `` 3. Build and push to main, and then the image is available in minutes at ` /posts/post-title/image-name.png" rel="nofollow">https://…
Hugo and Cloudflare Pages is basically free, but you need to find somewhere to host your search.
Re: How to Start Your Blog in 2023
#137Earlier quoted context omitted.
Why add another layer? Right now the only tool he needs is an editor. That's it. Can't get any simpler than that. He also probably has a set of templates by now.
> Why add another layer? The answer given: > to take out some of the drudgery
Re: How to Start Your Blog in 2023
#138[1] https://wojteksychut.com/posts/this-domain-is-8-minutes-old/
Re: How to Start Your Blog in 2023
#139Earlier quoted context omitted.
> It's not pretty, but it's zero maintenance. I've been doing that for 10 years now, and I don't think I'd ever go back to a third-party dependency. SSG is third-party dependency in one way.
It seems to me that a text editor is the same sort of dependency as a static site generator. Especially if you store the resulting site as rendered.
Re: How to Start Your Blog in 2023
#140I ran into the exact same issues as the author of this post the other day. I have a static site built on Hugo that I (amateurishly) set up a year or so ago, and would like it to have better support for photos & galleries, but lack the time + skill to implement that. I spent a late-night research session a few weeks back running through many of the main options they mention only to settle on the conclusion that there…