TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Minimum Viable Blog

357 点作者 jlundberg9 天前

64 条评论

Tallain8 天前
I&#x27;m reminded of the chart from this blog post: <a href="https:&#x2F;&#x2F;molodtsov.me&#x2F;2023&#x2F;02&#x2F;how-to-start-your-blog-in-2023&#x2F;" rel="nofollow">https:&#x2F;&#x2F;molodtsov.me&#x2F;2023&#x2F;02&#x2F;how-to-start-your-blog-in-2023&#x2F;</a><p>As I fell into the SSG pit I found I mostly wrote about and fooled around with the SSG itself, instead of all the things I originally planned on writing about and doing. So I threw away the SSG and installed Wordpress and stopped caring. It&#x27;s been liberating.<p>If the goal is to tinker and write about the tinkering, that is fine. If you&#x27;re not like me and the tinkering never gets in the way of the writing, that&#x27;s also fine. But that wasn&#x27;t me. I had to learn yet again that the best tool was the one that got out of my way and let me do what I came to do.<p>The last thing I need when I&#x27;m aiming to write is a chance to procrastinate.
评论 #43881073 未加载
评论 #43884158 未加载
评论 #43881256 未加载
评论 #43880564 未加载
评论 #43883334 未加载
评论 #43880986 未加载
评论 #43881112 未加载
p4bl09 天前
Nice, but I feel like to be qualified as a blog it needs two little additional things:<p>1- Make sure to order post by date (most recent first) and to display that date somewhere. The date can simply be taken from the post file meta data (e.g. creation time) to keep things minimal.<p>2- An RSS feed of course! It should be quite easy to generate a minimal one with only links and titles based on the existing script and a minimal RSS template.
评论 #43878053 未加载
评论 #43878015 未加载
susam9 天前
Nice post. Thanks for sharing! I&#x27;ve always been fond of independent websites like this. My own website began in a similar fashion about 25 years ago - minimal, straightforward, and entirely built with ASP (now known as Classic ASP), simply because that was the only suitable technology I knew at the time. Of course, that&#x27;s not the case anymore. These days, it runs as a statically generated site using Common Lisp [1], and I expect this to be my long-term setup.<p>Starting with a simple collection of pages was a great way to get started and set up a <i>minimum viable website</i>. But as time passed, I found myself needing a few more features. In order of priority, these included:<p>1. RSS feeds.<p>2. A blog listing page with posts ordered by date.<p>3. The ability to tag posts by topic and generate tag-based index pages.<p>4. Support for non-blog content, like tools, games, demos, etc. that can also be tagged and included in the RSS feed.<p>5. Support for comments without relying on third-party services.<p>With each new requirement, the source code gradually grew. What started as a few hundred lines has now expanded to around 1300 lines of Common Lisp. Not too big in the grand scheme of things but not exactly tiny either. Still, I try to resist the temptation to keep adding every shiny new idea that comes to mind. This remains a solo passion project. I want the entire source code to be something I can hold in my head at once. If I encounter a bug, I want it to be something I can reason about and fix in under 10 minutes, and so far, fortunately, that has been the case.<p>That said, new ideas are always tempting. Lately, I&#x27;ve been enticed by the idea of adding a blogroll that provides a list of posts from my favourite bloggers. This could replace my usual feed reader. I haven&#x27;t had the time to implement it yet, but if a quiet weekend comes along, that might just be the next feature I work on. Of course, I remind myself not to let this project spiral out of control. I certainly don&#x27;t want this to grow into something that can read my email.<p>[1] <a href="https:&#x2F;&#x2F;github.com&#x2F;susam&#x2F;susam.net&#x2F;blob&#x2F;main&#x2F;site.lisp">https:&#x2F;&#x2F;github.com&#x2F;susam&#x2F;susam.net&#x2F;blob&#x2F;main&#x2F;site.lisp</a>
评论 #43878781 未加载
评论 #43878486 未加载
评论 #43880001 未加载
评论 #43879465 未加载
评论 #43878369 未加载
captn3m09 天前
Something I’d like to see in browsers is native support for text&#x2F;markdown and text&#x2F;gemini.<p>If browsers can decide to render PDFs, surely a simple formatter and user-decidable stylesheets for markdown&#x2F;gemini content can’t be that hard to ship.<p>As it stands you can write a text&#x2F;plain blog but you will be hurt with SEO concerns since it isn’t really hypertext (maybe you could do some magic with link headers). Supporting other formats lowers the barrier to publishing in a neat manner and gives control back to users.
评论 #43879963 未加载
评论 #43889635 未加载
评论 #43878684 未加载
echoangle9 天前
&gt; html_content = html_content.replace(&#x27;Minimum viable blog&#x27;, title)<p>So every time your post contains the string &#x27;Minimum viable blog&#x27;, it will be replaced by the title of the current post? That’s a bug, right?
评论 #43878033 未加载
90s_dev9 天前
I&#x27;ve been experimenting with minimal blogs for about 15 years. Some tricks I learned:<p>* You can get away with const title = lines.match(&#x2F;# (.+)&#x2F;)[1] and avoid frontmatter.<p>* My blogs never have so many posts they need pagination or tags, or categories, or sorting.<p>* JSX turns out to be a great vanilla server side string builder if you use a questionable hack like <a href="https:&#x2F;&#x2F;immaculata.dev&#x2F;guides&#x2F;enabling-jsx.html" rel="nofollow">https:&#x2F;&#x2F;immaculata.dev&#x2F;guides&#x2F;enabling-jsx.html</a><p>* GH Pages with arbitrary build steps instead of (sigh) Jekyll is really easy now with things like <a href="https:&#x2F;&#x2F;immaculata.dev&#x2F;guides&#x2F;using-gh-pages.html" rel="nofollow">https:&#x2F;&#x2F;immaculata.dev&#x2F;guides&#x2F;using-gh-pages.html</a><p>* highlight.js is still basically the king of super easy code syntax highlight by adding literally three lines to your HTML (shiki is cool but <i>slooooow</i>)
FlyingSnake9 天前
It is easy using standard static blogging framework like Hugo&#x2F;Zola + Cloudflare Pages. I have a minimal blog (&lt;100kb) and it meets all the criteria that OP has listed.<p>This is what I did:<p>- Use Hugo Blog Awesome theme<p>- Followed the 512kb guidelines and verified the page size.<p>- Stripped down any images and unwanted JS, but there weren&#x27;t many.<p>1: <a href="https:&#x2F;&#x2F;512kb.club" rel="nofollow">https:&#x2F;&#x2F;512kb.club</a><p>2. <a href="https:&#x2F;&#x2F;radar.cloudflare.com&#x2F;scan" rel="nofollow">https:&#x2F;&#x2F;radar.cloudflare.com&#x2F;scan</a>
评论 #43879345 未加载
_fat_santa8 天前
I ran an &quot;MVB&quot; for a while but mine was even more simplistic. Just a straight HTML page and for posts I would write them as .txt files and manually update the homepage. While it was quite &quot;verbose&quot;, I would still say it was easier than having to deal with the &quot;modern web&quot;.<p>Since that time I have moved to something more sophisticated and now run Astro for my personal site and blog and honestly it&#x27;s freaking awesome. On their landing page they claim it&#x27;s the best platform for &quot;content driven sites&quot; and after using it for 6 months I have to say I agree, they take all the BS out of building a blog and just give you clear and easy to follow conventions for just about everything you&#x27;d want for a blog.
评论 #43880618 未加载
评论 #43879472 未加载
emadda8 天前
Something I have experimented with for a few sites is using Bun JS with HTML in JS strings.<p>Bun has a —hot flag that regenerates static html on change.<p>IntelliJ IDE can detect a &#x2F;&#x2F; language=html comment above strings which formats the html inside and does highlighting etc.<p>Just using vanilla JS functions instead of a template language lets you write any logic yourself instead of looking up the template languages way of doing it.
agubelu9 天前
I use a very similar approach in my own blog, because I&#x27;m tired of over-bloated websites that take waaaay too long to load: <a href="https:&#x2F;&#x2F;blog.borrego.dev" rel="nofollow">https:&#x2F;&#x2F;blog.borrego.dev</a><p>Source: <a href="https:&#x2F;&#x2F;github.com&#x2F;agubelu&#x2F;blog">https:&#x2F;&#x2F;github.com&#x2F;agubelu&#x2F;blog</a>
评论 #43882190 未加载
abhisek9 天前
I would really think it depends on use-case. If you are tired of Wordpress bloat and want something simpler you can probably build a markdown server over a directory with a very very minimal template. I remember Renato used to do that for docs, just serve a website on top of a dir containing markdown files.<p>But as you invest time and effort, get more readers and asks from your readers, your need for features even for a simple blog will increase. At least basic conversation around content. You will probably end up using Discuss or decide to make your simple blog much more complex by introducing a database (or may even be just flat files on S3).<p>At some point you will either focus on only &quot;writing&quot; and sharing ideas in which case a simple publishing infra is good. If you want more, you will probably end up building a Jekyll, Hugo etc. from scratch or better adopt and contribute to one of these :)
nicbou8 天前
I think that the best setup is Jekyll on GitHub pages. It&#x27;s the lowest-effort way to turn text files into a website.<p>If you don&#x27;t start from scratch, the biggest problem with static websites is maintaining old URLs. At some point you need URL rewrite rules, and then you can&#x27;t just have static files on a server. You need server rules.<p>It&#x27;s also nice to just editing text files locally without having to install stuff. Then you need some sort of build system on another server.<p>Then you might find that you need forms, comments and other features beyond text on a page.<p>Basically, it&#x27;s hard to have <i>just</i> static files.
Retr0id9 天前
This is basically how my blog works, except I use mistune as the markdown renderer, which has allowed me to extend it over time, including adding syntax-highlighted code blocks and latex math syntax: <a href="https:&#x2F;&#x2F;www.da.vidbuchanan.co.uk&#x2F;blog&#x2F;mathml-blogging.html" rel="nofollow">https:&#x2F;&#x2F;www.da.vidbuchanan.co.uk&#x2F;blog&#x2F;mathml-blogging.html</a><p>I also generate an index page and an RSS feed.<p>One thing that&#x27;s been bugging me more recently (now that I have tens of articles written) is that I need to implement incremental rebuilds. Right now every page needs to get regenerated at once, which takes triple-digit-milliseconds. Unacceptable!
评论 #43878066 未加载
评论 #43878326 未加载
accrual8 天前
Enjoyable to see another minimal static blog and the discussion around it.<p>Since we&#x27;re chatting about our static site generators - I&#x27;ve been working on mine for a few months and naturally spend way more time on the generator than the content. ;) Mine is written in TypeScript and I&#x27;m targeting HTML 4.01 Strict for compat with old browsers.<p>It started pretty simple, just walk a directory of .md files and output .html, but it now has RSS, Atom, tags, a &quot;latest&quot; page, sitemap, stats, table of contents, SEO features, etc.<p>It&#x27;s been fun - a nice &quot;easy&quot; project to slowly polish over time and to gradually grow my TS skills.
评论 #43880767 未加载
hcarvalhoalves8 天前
Here’s one using Emacs’ Org mode built-in HTML publishing capabilities:<p><a href="https:&#x2F;&#x2F;github.com&#x2F;hcarvalhoalves&#x2F;org-mode-site-template">https:&#x2F;&#x2F;github.com&#x2F;hcarvalhoalves&#x2F;org-mode-site-template</a>
bob10299 天前
If I was going to do a blog today, I&#x27;d dump hand written HTML into an S3 bucket and call it a day.<p>The static site generators are nice, but it&#x27;s really not a huge deal to spin up a few common css classes and maintain a little bit of mental discipline.<p>I think using a blog to communicate your ideas and skills is great. I think making the blog tech stack itself representative of those things seems distracting. Not everything has to be a smartass ego implementation. As long as you spend 5 minutes testing on mobile, your audience probably won&#x27;t notice a damn thing the next time it touches the front page of HN or wherever.
评论 #43878232 未加载
评论 #43880428 未加载
KronisLV8 天前
I did something a bit unconventional for my own blog: <a href="https:&#x2F;&#x2F;blog.kronis.dev&#x2F;blog&#x2F;my-blog-doesnt-need-quality-it-needs-to-look-like-its-from-the-90s" rel="nofollow">https:&#x2F;&#x2F;blog.kronis.dev&#x2F;blog&#x2F;my-blog-doesnt-need-quality-it-...</a><p>I decided on running an instance of Grav, which is a flat file CMS, with a fairly minimalist theme, except I version all of the files (even the PHP dependencies) in my Git repo, from which I build Docker images that actually get deployed: <a href="https:&#x2F;&#x2F;getgrav.org&#x2F;" rel="nofollow">https:&#x2F;&#x2F;getgrav.org&#x2F;</a><p>The benefit here is that I can launch it locally and see how the blog posts look, it&#x27;s just a bunch of files unlike SSG, but with dynamic templating, meaning that I also get an updated index of the pages, as well as search functionality out of the box.<p>Furthermore, each new post is basically a deploy of a new version of the container, which curiously also means that if something goes wrong (e.g. if it gets hacked), there is no serious data loss because none of the data is meant to be truly persistent, I don&#x27;t even need to think that much about backing it up, rather just the Git repo its built from.<p>Plus, there&#x27;s a nice admin UI if I need it (behind additional auth through the web server), or I can just write things in a text editor of my choice locally.<p>Oh, and the performance is pretty good, too, because there is no database to hit with complex SQL, more like some disk I&#x2F;O (which also is lessened by the cache).
sirodoht9 天前
Inspiring.<p>I&#x27;ve built a blogging platform with similar vision which I could call &quot;Minimum Viable Blogging Platform&quot;<p><a href="https:&#x2F;&#x2F;mataroa.blog&#x2F;" rel="nofollow">https:&#x2F;&#x2F;mataroa.blog&#x2F;</a>
评论 #43878722 未加载
评论 #43879934 未加载
pvtmert8 天前
I use the GitHub pages for that. Though hopping through various CMS or static-site-generators (like, Hugo, Jekyll, etc), I settled on a fully static and custom system, works with Javascript.<p>I think same could also be achieved via React, but I did not want any `npm install` hence, I used some JS libraries like marked and markdown.js directly at the frontend. (Added as git submodules)<p>I also sort-of liked how a dependency management mechanism could be built directly on top of the git submodules, without requiring an explicit package manager. Given the commits cloned are already pinned and committed to the repository. Though, the tooling is not as good as the well-established dependency management software like Maven, NPM, PIP, etc.<p>Nevertheless, it worked well for a basic blog, I publish the articles directly in markdown format, embedding some HTML if necessary. In fact, all the pages are some sort of markdown, rendered to HTML upon loading. But of course, the URLs are not &quot;real&quot;, I use the query string to refer to the pages, such as `mert.akeng.in&#x2F;?&#x2F;blog`, the JS fetches `&#x2F;blog.md` and renders it to the `&lt;main&gt;` element. Much like how you would initialize React through&#x2F;within JS.
AndrewStephens9 天前
I restarted my own blog in exactly the same way after getting frustrated with WordPress. The most important thing in blogging is to get something simple that will not get the way of you actually writing.<p>Over the years I have added to my solution with custom markdown, tagging, rss, and most lately exif-stripping. Technically the source is available [0] but I can’t see anyone else using it.<p>[0] <a href="https:&#x2F;&#x2F;github.com&#x2F;andrewstephens75&#x2F;gensite">https:&#x2F;&#x2F;github.com&#x2F;andrewstephens75&#x2F;gensite</a>
评论 #43878390 未加载
karaterobot8 天前
My blog is more minimal, and still viable. It&#x27;s just a big page with 761 posts on it. It&#x27;s 360 KB all in, and it&#x27;s interactive in about 1 second.<p>No category pages, no individual pages. No search... well, CMD+F is your search engine, and it&#x27;s blazingly fast.<p>That design actually works really well if all you care about is getting text content out there, and the idea of comments—let alone ads—isn&#x27;t appealing to you.
评论 #43884614 未加载
jprokay138 天前
I went all in on using Caddy for rendering my website and blog, but I’m encountering a frustrating issue that I’m not sure how to solve. The feed on my site uses the listFiles feature to populate from a directory. I take care to name things so ordering is preserved. No problems on my machine getting the feed ordered correctly. However, when deployed to Railway via a container, the ordering is all wrong. Any thoughts on how to debug?
评论 #43879861 未加载
评论 #43882147 未加载
bartread8 天前
I&#x27;m in the process of resurrecting an old blog of mine, which had used hexo back in the day with all the raw posts being markdown files that are statically rendered to HTML... and to be honest I&#x27;m pretty tempted by this very simple approach because hexo is, honestly, annoying me.<p>For whatever reason it&#x27;s just not picking up themes even though I&#x27;m now using the most up to date everything. And actually I&#x27;ve realised I don&#x27;t even like the vast majority of the themes anyway, including the one I used previously. And since developing my own hexo theme seems like kind of a faff, I&#x27;m pretty tempted to just throw together a Sass sheet, compile it to CSS, and use that as my theme.<p>I guess if I got into the detail of it - comments, archive pages, etc. - the complexity would start to creep in and I&#x27;d find that what I was doing was building my own home-rolled hexo-alike... so maybe I should persist with figuring out why themes aren&#x27;t working for a bit longer.
bambax9 天前
I don&#x27;t know if a minimum viable blog needs to pre-render html... For this a PHP script is lightning fast and the source markdown file is the only source of truth -- if you correct a typo then it&#x27;s immediately live, no need to think about rendering.
评论 #43886301 未加载
_dain_8 天前
<p><pre><code> html_content = html_content.replace(&#x27;Minimum viable blog&#x27;, title) </code></pre> Did this originally say<p><pre><code> html_content = html_content.replace(&#x27;{{ title }}&#x27;, title) </code></pre> And then you ran it?<p>Sanitize your strings!
to-too-two8 天前
Makes me think of <a href="https:&#x2F;&#x2F;bearblog.dev&#x2F;" rel="nofollow">https:&#x2F;&#x2F;bearblog.dev&#x2F;</a>.<p>I&#x27;ve been thinking about using Obsidian as a static site generator.
评论 #43883640 未加载
mrroryflint9 天前
I have a very simple setup using 11ty (<a href="https:&#x2F;&#x2F;rory.codes" rel="nofollow">https:&#x2F;&#x2F;rory.codes</a>) - but nowhere near as simple as this. Very impressive!
geor9e8 天前
I did the same. Sync&#x27;d my Obsidian .md vault between my macbook and my server. Asked AI for an index.php that would render a nice html&#x2F;css webpage at domain.com&#x2F;whatever for every whatever.md on the fly. Works fantastic. Supports everything Obsidian markdown does - pics, videos, resizing via drag, wikilinking, codeblocks, etc… No publish step - from my site you can literally see me typing live in Obsidian. No more friction to share things.
AlexK907 天前
Thanks for Posting this.<p>I have a question about this line of code<p>file_path = os.path.join(posts_dir, post_directory, &#x27;eng.md&#x27;<p>Is eng.md an extra addition here? By looping through the directory, would the post names be found in the loop? By deleting this I was able to get the code to run and think I&#x27;ll start using this as a blog template!
Keyb0ardWarri0r8 天前
Take a look at <a href="https:&#x2F;&#x2F;markdown.ninja" rel="nofollow">https:&#x2F;&#x2F;markdown.ninja</a><p>It lets you create a blog and a newsletter with Markdown and publish directly from the command line (or the web editor). You get the offline-first workflow of Markdown, but with beautiful themes like substack.<p>It&#x27;s like a mix between Wordpress, netlify and substack.
floathub9 天前
If you&#x27;re already using Emacs and&#x2F;or org mode, then this is a useful guide to setting up a blog&#x2F;site that is super easy to maintain&#x2F;push&#x2F;etc, including free hosting at github with a custom domain name:<p><a href="https:&#x2F;&#x2F;stuff.sigvaldason.com&#x2F;how.html" rel="nofollow">https:&#x2F;&#x2F;stuff.sigvaldason.com&#x2F;how.html</a>
sareiodata8 天前
Made this silly thing to have a site with just html and have a way to have templates &amp; header includes, while still having the site accesible without JS if needed<p><a href="https:&#x2F;&#x2F;github.com&#x2F;sareiodata&#x2F;hx-weaver">https:&#x2F;&#x2F;github.com&#x2F;sareiodata&#x2F;hx-weaver</a><p>That being said, I don&#x27;t find myself actually writing a blog :)
keepamovin8 天前
I just made this thing[0] last few days, and it&#x27;s sooo much, and you showed me simple. So here&#x27;s my simple: <a href="https:&#x2F;&#x2F;o0101.github.io&#x2F;mvb&#x2F;" rel="nofollow">https:&#x2F;&#x2F;o0101.github.io&#x2F;mvb&#x2F;</a><p>I think I like simple.<p>[0]: <a href="https:&#x2F;&#x2F;studio.dosaygo.com" rel="nofollow">https:&#x2F;&#x2F;studio.dosaygo.com</a>
ds-rants9 天前
I personally use a combination of quarto to statically render markdown files and hosting on GitHub pages because I don&#x27;t want to bother with the self hosting for now. In the past I used a combination of R-markdown with a nginx server but decided to move to a simpler solution
sandebert9 天前
Nice solution, and congrats on winning HN for the moment. And thanks for 46elks. (Happy customer here.)
评论 #43881584 未加载
concrete_head9 天前
Thanks for sharing, I like your approach.<p>As easy as wordpress, square space or whatever claim to be, in my mind this is even easier, the solution is more elegant, and you expose yourself to a whole lot less crap along the way.<p>Edit: I recognise this doesn&#x27;t cover hosting, domain registration etc.
评论 #43878043 未加载
wvh8 天前
This reminds me of my own website using Apache&#x27;s server side includes in the late nineties. No Markdown though, but otherwise not substantially different. Simplicity tends to work best (most reliable, least resources) for text content.
strzibny9 天前
Very nice and minimal. I am going the opposite direction. I am cancelling my static generated blogs and moving everything to LakyAI which will help me to manage everything from a single place. Not quite ready for prime time tho.
rambambram9 天前
It&#x27;s 2025, the web has come full circle again, so where&#x27;s the RSS feed?
hxii8 天前
I tried to follow the same reasoning and made my own SSG for this purpose - Hajime.<p>It really does help when you don’t even have the potential option to distract yourself with bells and whistles.<p>Write some markdown, run a command and your blog updates.
评论 #43882221 未加载
dpacmittal9 天前
Starts getting messy once you add sorting, pagination, categories&#x2F;tags.
评论 #43878050 未加载
评论 #43880774 未加载
capitanazo778 天前
The perfect minimal web is Astro Js and that’s because of images.<p>Mobile screens and desktop are fundamentally different. You can’t have small and big at the same time.<p>That is solved via the standard html img srcset<p>Astro solves that easily.<p>And Wordpress of course.
Rush21128 天前
Not following all requirements, but you could also just have an RSS feed generated from markdown files you have locally and publish that (using a tool like mdrss).
Xeoncross8 天前
This is why I created <a href="https:&#x2F;&#x2F;github.com&#x2F;xeoncross&#x2F;jr">https:&#x2F;&#x2F;github.com&#x2F;xeoncross&#x2F;jr</a> all those years ago<p>You don&#x27;t need a backend.
yaKashif9 天前
Yeah but too technical for 99% of the humanity.<p>For all of them I built Lykhari.com
hackerbeat8 天前
Love this, and how more and more folks are going minimal, like <a href="https:&#x2F;&#x2F;wordgag.com&#x2F;" rel="nofollow">https:&#x2F;&#x2F;wordgag.com&#x2F;</a>.
revskill9 天前
The hardest part is the DevOps part where you need to find out reliable host, how to deploy, CI&#x2F;CD and all the server-related stuff if you want maximum customization.
theletterf9 天前
The post is skipping the hosting side. Guess it doesn&#x27;t matter too much these days? What&#x27;s the best besides Netlify&#x27;s or Cloudflare&#x27;s free tiers?
评论 #43880625 未加载
评论 #43878106 未加载
GaggiX9 天前
I was thinking, another thing you could probably easily add is optimizing the images for web delivery, in your first article there are quite large jpgs.
wood_spirit9 天前
I currently have a very similar setup. And tbh I’m keen to move to a less involved solution…<p>Are there anything like ghpages with a built in wysiwyg editor?
评论 #43878324 未加载
tomalaci9 天前
I&#x27;ve been wondering what is the benefit of putting up your own web server or scripts to serve your static content when you could put it in a Github repo or serve from something like S3?<p>The nice thing about latter is that the bandwidth, DDoS or other load-related issues aren&#x27;t that much of a problem. Server maintenance also isn&#x27;t a problem as you don&#x27;t have any.
评论 #43879802 未加载
评论 #43878648 未加载
评论 #43878350 未加载
388 天前
&gt; Tired, so ask O1 for a render.py script<p>Groan
babuloseo8 天前
I want to blog but my DOMAIN name got taken and it costs 16k now wtf.
naveed1258 天前
This is the kind of post that makes me visit Hacker News time to time.
jlundberg9 天前
Doing it easy for yourself and get quicker to the content is the way to go.
froggertoaster8 天前
I feel like the first MVB was Maddox - too bad he fell way off.
ulrischa8 天前
It can be more simple: Just use php for SSR
thenthenthen9 天前
Auto-index with header.html and some js for me
Igor_Wiwi9 天前
your blog has 1 big problem - no SEO optimization, meaning that after spike of visitors from HN today, it will disappear in Google void after couple of days, meaning no visitors in the future, no mentions from ChatGPT, etc. It&#x27;s most common problem for all self-hosted blog engines, though idea I like that main idea of minimalist blogs (I am using Bear blog by myself).
评论 #43878258 未加载
评论 #43880215 未加载
rodolphoarruda8 天前
Thank you for putting the effort to keep the open web alive, especially by sharing this simple though effective tool. I use Wordpress and like it. I learned to enjoy using it when I stopped reading &quot;pros &amp; cons&quot; bulleted lists about it.
owzkshfjsekui9 天前
good idea .... for ipfs
balazs49 天前
yes.
yawpitch9 天前
Dear god the bugs in that Python…
vemom9 天前
I&#x27;m more of a WordPress guy. Click &quot;install wordpress&quot;. When I need something I add a plugin. No code required.
评论 #43878063 未加载