The old mobile interface is entirely text, it removes the thumbnails present in the i. subdomain (also available with a trailing /.compact) -- the fact that there are so many different interfaces is a little baffling to me, but the text-only version is the only one I can stand to read: https://www.reddit.com/r/apljk/.mobile
I should probably email Sijmen but I've been using https://engineeringblogs.xyz/ to help me keep track of hundreds of product/software development blogs and am keeping it as plain as possible.
I wanted to try out making gemini pages. I got some of the example servers, but no where in the official gemini spec, both via http and via gemini, could I find examples of the actual freakin gmi/gml formats!
I started up Wireshark and then remembered that the traffic is encrypted by default ... so yea, that's not going to help.
Are there any gemini tutorial on how to make a gemini site?
If you have a working gemini client, could you not just look at a server's response and piece together the format? I'm curious because I'd also like to play around with gemini.
I've dipped into Gemini to see if it was worth adding to my gopher client[1], but the defined spec is vague and barely complete. I subscribed to their mailing list, and it's really busy - the spec is clearly in flux and developing rapidly.
I think AV-98 has a setting or function for dumping the raw results of a gemsite.
But I think the main reason there's no example is because there's very little to show. Just make a text document and if you need to link to something you use the Gemini method of
=> URL title text
There's a few other things in the spec that are considered hints for clients (using # as headers, * for numbered lists) but those aren't even guaranteed to be rendered by the client as anything but plain text.
So does elpher. But you don't need a dedicated client to see the raw server response, all you need to really do is use something like 'gnutls-cli hostname -p 1965 --no-ca-verification' and then enter the full gemini URL once you have a connection.
If you check out the official specs[1] scroll down to "5 The text/gemini media type", and especially "5.4 Core line types".
Summary: you write plain text. Use linefeeds to separate paragraphs, not lines of text ("Multiple consecutive lines which are shorter than the client's display device MUST NOT be combined into fewer, longer lines.").
Links go on lines by themselves, like:
=>[<whitespace>]<URL>[<whitespace><USER-FRIENDLY LINK NAME>]
Wrap preformatted blocks in "```", like in Markdown.
Mark headers with "#", "##", or "###", like in Markdown.
Write lists like "* item", like in Markdown.
Write quotes on lines starting with ">", like in Markdown.
I've been thinking of migrating my blog back to text only. When I was a student I kept a "blog" as a list of HTML files that I manually updated. I've been using Wordpress for the past ~15 years and am growing weary of having to keep up with plugin, theme or CMS updates. My blog is not worth this much effort to maintain, I just want a place to share essays and occasional photos. I need time to make the switch, but the simplicity of text only format is attractive.
Google's guidelines for HTML5 [0] are surprisingly good and concise. You can omit most closing tags, and even many "structural" tags are implicitly opened. This is a 100% correct and complete HTML5 document:
<!doctype html>
<title>Title of the document</title>
<p>A paragraph
<ul>
<li>First item
<li>Second item
</ul>
<p>Another paragraph
writing html tables by hand is especially pleasurable due to the auto-closing tags. As I see it, modern HTML is so concise that markdown is more of a burden than an aid. In most cases, we would be better off writing html directly than markdown. Maybe the only thing that I miss is that an empty line creates a paragraph tag.
The only reasonable thing I have found is mathjax.
Otherwise, if you math is just inline latin/greek symbols without 2D formulas (integrals, summations, etc), you can get away with unicode symbols and sub-indices.
I think one of the advantages is that markdown is not just that it is concise, but that it is also somewhat limiting.
If someone worked on a large team and moved all documentation from markdown to HTML, I think they'd quickly grow to become something a lot more messy than your example.
You've touched on a slightly interesting topic. HTML has never had strict parsing requirements, for example, it was completely permissible in HTML4 to leave a tag unclosed if you subsequently opened a tag which could not be nested (as in your example of two <li>s in a row). Containers have always been implicit in most cases, so it's perfectly acceptable to start a table row without having started a table, the parser will start the table when it encounters the row. This is ultimately because HTML is derived from SGML, a markup standard that is visually similar to XML but with very relaxed parsing.
However, HTML4.1 for a time faded in popularity compared to XHTML, which was an "HTML-like" markup derived from XML rather than SGML. XML has significantly stricter parsing rules, for example always requiring full closing tags, trailing slashes on self-closing tags, etc.
XHTML's popularity seems to have been in large part a result of the IE6 backlash. Problems with web standards were widely perceived as a high priority for the web. This was the time period in which people kept putting "W3C Compliant HTML" badges in their footers. Because XHTML had stricter parsing rules, it fit into the general scheme of emphasizing web markup that was "correct" by allowing for strict automatic validation. Because it was XML-compliant it also fit nicely into both the popular-at-the-time "Semantic Web" (e.g. XHTML documents could be validated against XML DTDs/schemas) and dovetailed with browser support for XSLT (in which case a document could be sent to the browser as semantic XML with an XSLT "style sheet" for transformation to XHTML for presentation), which was one of those things that seemed like "the future" for about five minutes. I had done my personal website that way for a hot minute.
XHTML's vogue was somewhat short-lived, while it was a big part of the "web" scene in e.g. 2007, it was largely forgotten the moment HTML5 because available. What seems to have survived from XHTML, though, is a much stricter approach to writing SGML being seen as more or less required. I think a lot of people "grew up" on XHTML, quite possibly unknowingly, and so errantly view HTML itself as XLM with the subsequent parsing rules.
As always, there is often value in being explicit and verbose in markup in terms of maintainability. But in a lot of cases readability and maintainability are not harmed or even improved by saving some typing... as in cases like lists and tables.
That said, a big part of the phenomena is that hand-writing or reading HTML is decidedly out of vogue today, and so in general the readability quality of most HTML on the web is extremely poor, generally a result of it being generated by templating or composable component systems which often abandon basic indentation, as well as by the popularity of frameworks with unusual use of HTML such as non-semantic class-driven CSS frameworks. Of course this phenomena isn't entirely new, FrontPage and DreamWeaver were popular in their day and generated some pretty terrible markup, but it seems to have become more common, rather than less, for HTML to be machine-generated and thus extremely unpleasing to humans.
I wrote up a few of my own thoughts[0] on moving away from writing markdown to writing HTML directly. At this point I have a small bit of code to wrap things into an <article> tag include a <header>, <footer> with links to a home page and include some boilerplate like <meta> tags. I don't think I've sacrificed anything in terms of best practices and actually gained a few things in writing more semantic HTML which I think aid in assistive technologies[1]. I actually hope people will "view page source" on my pages anymore -- a big part of getting to where I am has been testing against alternative browsers like eww and w3m.
I've been writing HTML directly for my blog [1] for 20 years [2] and back around 2003 I started to be a bit more pedantic about the HTML I use, so I always (try to) close every tag. About five years ago I set up a gopher server [4] and use it to mirror my blog. I went the easy route and decided to use Lynx to convert the entries from HTML back to text, and ... it looks horrible. Now that the Gemini protocol [5] has stabilize, I've decided I should convert the HTML to text myself, and because I decided back in 2003 to close every tag, it's easy to do (after spending an evening cleaning up a few entries here and there---there are over 1,000 entries pre-2003 that need extensive cleanup though---sigh).
The optional tags make it easier to write, but make it far harder to mechanically process later if need be.
Nice. I went one step further because I don't even want to write HTML. I built my website in PHP to parse plain-text files then sort and display them by creation/modification date or title/category. The only markup in the text files is usually <b>, <i>, and sometimes <a href>. This way I can write in whatever editor I feel like, export as .txt, then scp the file right to my site for publishing. I guess it's like a custom CMS? Either way, it really helps my ability to write for some reason.
I wrote a <100 lines of python that takes a nested set of markdown files and outputs a mirror structure rendered as HTML (any file starting with a _ is skipped for works in progress), threw tufte.css on top of it and I have a page that loads in 9ms over wifi and renders so close to instant it's not worth measure.
Has syntax highlighting as well, beyond that I wrote it myself because it let me do exactly what I wanted the way I wanted.
It supports Jinja templates and you can put meta data in the header so you can choose what template you want, override the title etc.
If you don't override the title 10-tricks-to-foo becomes "10 tricks to foo" automatically
I've used that script to write technical documentation as well, I just swapped out the template and everything else stayed the same, in terms of time to value reward it's up there for the most useful code I've written in a long time.
Great minds, my site is on my real name and I'd rather not connect my user name with my handle so publicly, it's got nowhere near the amount of content yours has though.
In my case there is a certain irony in writing it in Python the lazy way since I'm a full stack dev who writes typescript, js and PHP for work.
Never trust a builder with a finished house I guess applies, I didn't want anything I'd have to maintain.
It might have changed recently, but tufte.css used to behave badly in portrait (say on a mobile phone, or just with a narrow browser window.) Part of the problem is just the design works a lot better in landscape.
It took me a lot of fiddling before I managed to find an acceptable compromise.
If I was going to start again I might consider implementing the margin notes differently. They interact oddly with each other and image captions.
For context/the uninitiaatd, I think of pandoc as the "postgres" of markdown-to-<blessed_format>: you can build your own text-format-converter, but oftentimes you can get 90% of the way there with pandoc, and fill in the rest with custom filters and elbow grease.
To whet your appetite, I have a personal site that checks your boxes, where the build script is basically one long invocation of pandoc and xargs. In my experience and that of others', building on top of pandoc can get you to quite satisfying places and workflows (e.g. https://www.gwern.net/About).
(Also, fwiw, we use it at my place of work for writing versioned technical documentation, as well.)
I recently stopped using a static site generator for my personal site [1] in favor of just manually maintaining a bunch of HTML files, for similar reasons. The last straw for me was a nonpassive change to the site generator mysteriously breaking the homepage. Themes are frustrating as well since they either constrain you or force you to spend time figuring out how to shoehorn what you want into the theme. I only post occasionally, and keeping all the pages consistent with each other isn't as important to me as being able to post a page that looks however I want it to with minimal hassle.
I did something along those lines once, but I used https://github.com/susam/mdme as the preamble so I could write the posts in markdown rather than html. The index was an extra line to add links to index.html.
wow, I love your solution using github
even if you want to migrate of github down the line its still all Jekyll +plugins underneath
Do you know if there is a way to have an automatic directory index page? (i looked around the gitubpages/Jekyll docs but couldn't find a way at first glance)
i.e. What I mean is I would like to throw a bunch of md files into a folder and have a url that outputs the hyperlinked dir listing
thanks for the suggestion, but I was looking for a "zero code" solution like parent. i.e. it would use some Jekyll feature that is running behind the scenes
meanwhile after some googling this may be it (not tested though)
(note that "test_blog_2020" here is a global unique identifier you can customize when you first upload to archive.org. as long as it is available of course)
If you want text only (especially if it is only ASCII text) and not HTML, consider using Gopher. You can serve them with both HTTP and Gopher, actually. (If you want to accept public comments too, then NNTP is another possibility.)
If you do want HTML (or possibly Markdown), then of course HTML will do. Just use plain HTML (perhaps with a common header and/or footer, added either ahead of time or using server side includes); no CSS, JavaScripts, decorations, etc.
I now yearn for the old plain HTML pages with "up / next / previous" links [1]. I used to hate how basic they were, but with "modern" web sites loading so much JavaScript to display static content, I'm starting to see the appeal of basic websites with no styling whatsoever.
With a few lines of CSS in the head section you can have a blazing fast page that looks elegant as well. This site is one, although I think it is a touch too narrow. Also, headers/footers with a different background color are pleasing.
Agreed, altough I find myself liking websites with a narrow width lately.
I have no data to back this up, but to me, it seems that when people think
about building websites without JS, they completely forget that CSS, or design
are a thing.
I am building a website for a simple API I built for my company[1] that I
thought others might want to use, and while there is no JS, that does not mean
that I just uploaded an unstyled .html file to the root of my server.
While unstyled have their own charm at times, in general, I think a little bit
of CSS, design, and inspiration goes a long way.
I usually use a max-width of 40rem and add 1rem padding for small screens/windows to keep off the grass, as it were. That anchors the width to the base text size so the line length makes basic sense, no matter what the user font settings might be.
Yes, I agree. I don't like the max-width setting; it should use the width of the window that the user has set. Same with font sizes, and usually, also colours. (Sometimes CSS is helpful (if not overused), but for many documents it will be much better to avoid CSS.) CSS is often what makes web pages look bad.
Does your browser have sidebars? You can add sidebars if you want to reduce the width of the document, I suppose. (There is bookmark sidebar, history sidebar, and web developer sidebar; what I think is missing is the table of contents sidebar, which would list the <h1>, <h2>, etc in the current document. Another thing that might be wanted is split-screen mode, I think.) I personally do want a full-screen line of text, although I suppose some people do not want.
I wish more people would hop on board the info train, which is what the "up / next / previous" style of hypertext comes from (thanks again, Richard Stallman).
People love to shit on info because its default viewer uses emacs keybindings and the documentation "isn't geared for professionals" which is another way of saying providing minimum-viable knowledge (AKA non-OpenBSD man pages).
I happen to love info for those very reasons. Software freedom and usability used to mean that non-developers could understand how to use software. Want to learn how to code in Emacs Lisp? An info book on it comes with Emacs. Want to learn the ins and outs of the coreutils? Bash? gawk? Documentation the size of a book comes with all of them as well, formatted and designed to be friendly to people who have no idea what they're doing.
One thought is that we could have two mandated versions of every website: (a) the text-retrieval optimised version and (b) the web developer engagement version.
When this idea has come up on HN before it has been met by angry web developers claiming they "would have to maintain two websites" or some such nonsense.
However, consider that no one composes content in JSON, or even HTML. Textual content always begins as readable text. Even if only in the mind of the person creating it. There is nothing to maintain as there is nothing to "develop". All that needs to be done is add the HTTP header and deliver the text.
One of the most popular examples of text retrieval I can think of to illustrate:
The Wiby search website is so cool! There is something really comforting and nostalgic about text-only websites. In one of the searches I came across Project Gutenberg Australia. http://gutenberg.net.au/
Thank you for sharing this.
One nice thing about this is that you can use most of these sites in obsolete devices — I have an iPad 3 with a glorious, bright retina screen, entirely bricked by its inability to update to the latest iOS . Every day more and more of the web is breaking on it.
This, though: http://wttr.in, will never break. I'll tape my old iPad to the fridge and use it as a weather screen.
This is great. My only feedback is that, yes you're using text only but please don't shy away from minor CSS changes that can make the site look more pleasant. I have been working my homepage (https://usmanity.com) for years to make it minimal, organized, and still pleasant to look at.
I agree minor CSS changes make sense, and you'll see I've applied some styling for dark mode, use of serif font, maximum page width and minor other things on specific pages.
But I've chosen not to mess with things line text size and line height. More power to the user (agent)! Also, pleasant is in the eye of the beholder and I like it this way.
I had a dream of a text only "underground" web the other day. Then executed it in a very poor way. If you want to check it https://tilde.pt/~fimdomeio/index2.html
Actually A text only web as a few interesting advantages. Almost instantaneous load even in a poor connection. Very fast development time since you throw away so many things away.
That was on purpose, the main theme color is RED, the username was made light to shift focus on the problem title instead of users to add friction towards votes biased towards users.
When the users are logged in, the voting buttons get RED and you'll notice less of the pink(Please do give it a try and let me know if it's better).
Being pedantic, the list strikes me as poorly named. Websites listed do have images and other media, the unique trait they have in common is very minimal CSS (for better or for worse).
They tend to use little to no decorative images outside of main content though, which is nice. Not to imply a list like this doesn't have the right to exist.
This is right. The list started with a handful of sites that were (almost) text-only, such as the NOS, CNN and NPR news sites, but as submissions came in it expanded with not quite text-only sites that still espoused many of the same values.
I intend to further curate the list soon and give proper text only sites a more prominent place. Retro, minimal, and text-only sites aren't quite the same.
manuw - random-ish question i saw somewhere that u were using minikeepass which is deprecated on ios -- any suggestions? what are you thinking of using?
Fun question although probably not really on topic.
NetHack
MUDs, MOOs, MUSHs
Dwarf Fortress
Kroz
Brogue
Zork (looks best on green phosphor screen).
Midnight Commander.
Trade Wars 2002.
If you explore the right platforms and eras then you will find many tens or even hundreds of thousands of text applications, many of which look "good" in my opinion.
I try to do text only myself. Unfortunately Fossil requires CSS (although it does still work reasonably well with Lynx), but other stuff I write is usually just plain text, or if HTML is needed, it rarely has CSS. I also have a gopher server too.
I would not call US-ASCII an achievement. A majority of the world's languages (whatever the exact metric might be...) cannot be written using using US-ASCII
Email (SMTP) was defind 7 bit and it took us 2 decades to work somewhat reliably with other languages requiring more characters.
Of course it's parochial. The very name is United States-American Standard Code for Information Interchange. It is an antique standard for teletype machines that can still be read and decoded by everything on the planet. It is as close to universal as anything we have. There is a reason that the first 128 decimal code characters in UTF-8 are US-ASCII...
ASCII is good when it works. Of course, not everything can be written suitably in ASCII, but if it can be, then it should be. As they said, "[it] can still be read and decoded by everything on the planet. It is as close to universal as anything we have."
Chiming in with Piero Scaruffi's website[1]. I used to read it a decade back and it really hasn't changed that much; the information is plentiful and interesting, the site is fast, and it seems like he nailed down the "static content is all that matters in the end" bit not only way before it became a common reaction to the overencumbered web of today, but also way before the web got overencumbered at all.
This is exactly how websites should be. It loads astonishingly fast, page after page, and there is nothing between me and the information.
I built my website the same way, and spent a lot of time shaving milliseconds off and optimising readability. I wanted to create the same sort of smooth, bullsh-- free experience.
122 comments
[ 2.9 ms ] story [ 227 ms ] threadhttp://www.jimmyr.com/
which might be it.
I started up Wireshark and then remembered that the traffic is encrypted by default ... so yea, that's not going to help.
Are there any gemini tutorial on how to make a gemini site?
ssh kiosk@gemini.circumlunar.space
I'm going to keep an eye on it though.
--
[1] http://www.jaruzel.com/gopher/gopher-client-browser-for-wind...
But I think the main reason there's no example is because there's very little to show. Just make a text document and if you need to link to something you use the Gemini method of => URL title text
There's a few other things in the spec that are considered hints for clients (using # as headers, * for numbered lists) but those aren't even guaranteed to be rendered by the client as anything but plain text.
Summary: you write plain text. Use linefeeds to separate paragraphs, not lines of text ("Multiple consecutive lines which are shorter than the client's display device MUST NOT be combined into fewer, longer lines.").
Links go on lines by themselves, like:
Wrap preformatted blocks in "```", like in Markdown.Mark headers with "#", "##", or "###", like in Markdown.
Write lists like "* item", like in Markdown.
Write quotes on lines starting with ">", like in Markdown.
There, that's 99% of the Gemini format spec.
[1]https://portal.mozz.us/gemini/gemini.circumlunar.space/docs/...
[0] https://google.github.io/styleguide/htmlcssguide.html
https://en.wikipedia.org/wiki/Mathematical_operators_and_sym...
Otherwise, if you math is just inline latin/greek symbols without 2D formulas (integrals, summations, etc), you can get away with unicode symbols and sub-indices.
Here's a nice demo on how to write tech docs using Emacs and Org mode https://youtu.be/0g9BcZvQbXU
If someone worked on a large team and moved all documentation from markdown to HTML, I think they'd quickly grow to become something a lot more messy than your example.
Already has best of both worlds.
However, HTML4.1 for a time faded in popularity compared to XHTML, which was an "HTML-like" markup derived from XML rather than SGML. XML has significantly stricter parsing rules, for example always requiring full closing tags, trailing slashes on self-closing tags, etc.
XHTML's popularity seems to have been in large part a result of the IE6 backlash. Problems with web standards were widely perceived as a high priority for the web. This was the time period in which people kept putting "W3C Compliant HTML" badges in their footers. Because XHTML had stricter parsing rules, it fit into the general scheme of emphasizing web markup that was "correct" by allowing for strict automatic validation. Because it was XML-compliant it also fit nicely into both the popular-at-the-time "Semantic Web" (e.g. XHTML documents could be validated against XML DTDs/schemas) and dovetailed with browser support for XSLT (in which case a document could be sent to the browser as semantic XML with an XSLT "style sheet" for transformation to XHTML for presentation), which was one of those things that seemed like "the future" for about five minutes. I had done my personal website that way for a hot minute.
XHTML's vogue was somewhat short-lived, while it was a big part of the "web" scene in e.g. 2007, it was largely forgotten the moment HTML5 because available. What seems to have survived from XHTML, though, is a much stricter approach to writing SGML being seen as more or less required. I think a lot of people "grew up" on XHTML, quite possibly unknowingly, and so errantly view HTML itself as XLM with the subsequent parsing rules.
As always, there is often value in being explicit and verbose in markup in terms of maintainability. But in a lot of cases readability and maintainability are not harmed or even improved by saving some typing... as in cases like lists and tables.
That said, a big part of the phenomena is that hand-writing or reading HTML is decidedly out of vogue today, and so in general the readability quality of most HTML on the web is extremely poor, generally a result of it being generated by templating or composable component systems which often abandon basic indentation, as well as by the popularity of frameworks with unusual use of HTML such as non-semantic class-driven CSS frameworks. Of course this phenomena isn't entirely new, FrontPage and DreamWeaver were popular in their day and generated some pretty terrible markup, but it seems to have become more common, rather than less, for HTML to be machine-generated and thus extremely unpleasing to humans.
[0]: https://idle.nprescott.com/2020/why-bother-with-markdown.htm...
[1]: https://sourcehut.org/blog/2020-05-27-accessibility-through-...
The optional tags make it easier to write, but make it far harder to mechanically process later if need be.
[1] http://boston.conman.org/
[2] It's been only the past year or so that I've created my own markup language [3] to render the HTML, and it's the resulting HTML that I store.
[3] A mostly-up-to-date sample of what it looks like: https://github.com/spc476/mod_blog/blob/master/NOTES/testmsg And the Lua script that parses it: https://github.com/spc476/mod_blog/blob/master/Lua/format.lu... It's still buggy, and there are corner cases I know how to avoid, and I'm not recommending it to anyone else, as it works for me.
[4] gopher://gopher.conman.org/
Has syntax highlighting as well, beyond that I wrote it myself because it let me do exactly what I wanted the way I wanted.
Code is here if it's any use to you https://kopy.io/ibFMc
It supports Jinja templates and you can put meta data in the header so you can choose what template you want, override the title etc.
If you don't override the title 10-tricks-to-foo becomes "10 tricks to foo" automatically
I've used that script to write technical documentation as well, I just swapped out the template and everything else stayed the same, in terms of time to value reward it's up there for the most useful code I've written in a long time.
I ended up exporting all of my old blog posts from WordPress. Rebuilding the entire site (~370 pages) takes about 4 seconds.
The biggest problem I found was that I had to modify tufte.css to make it work well on mobile.
Care to post your site?
Mine, if you are curious: https://sheep.horse/
In my case there is a certain irony in writing it in Python the lazy way since I'm a full stack dev who writes typescript, js and PHP for work.
Never trust a builder with a finished house I guess applies, I didn't want anything I'd have to maintain.
edit: oh wait that's what the Tufte css is! What tweaks did you end up making?
It took me a lot of fiddling before I managed to find an acceptable compromise.
If I was going to start again I might consider implementing the margin notes differently. They interact oddly with each other and image captions.
For context/the uninitiaatd, I think of pandoc as the "postgres" of markdown-to-<blessed_format>: you can build your own text-format-converter, but oftentimes you can get 90% of the way there with pandoc, and fill in the rest with custom filters and elbow grease.
To whet your appetite, I have a personal site that checks your boxes, where the build script is basically one long invocation of pandoc and xargs. In my experience and that of others', building on top of pandoc can get you to quite satisfying places and workflows (e.g. https://www.gwern.net/About).
(Also, fwiw, we use it at my place of work for writing versioned technical documentation, as well.)
Keep on plain-texting! :)
[1] https://brokensandals.net/
I've also been experimenting with just using md files on GitHub, which is very easy to write and publish. https://github.com/codazoda/markdown-test
Do you know if there is a way to have an automatic directory index page? (i looked around the gitubpages/Jekyll docs but couldn't find a way at first glance)
i.e. What I mean is I would like to throw a bunch of md files into a folder and have a url that outputs the hyperlinked dir listing
https://stackoverflow.com/questions/25022016/get-all-file-na...
Then use Javascript to create the index page.
meanwhile after some googling this may be it (not tested though)
https://cl.mt/blog/github-pages-indexing-directory
Suppose you want a really long lived store for your plain text or html files (archive.org is unlikely to go away anytime soon)
1) create an account on archive.org
2) upload your folders of files as an Archive.org item
(works best if you upload with a root folder included so that the archive.org meta files get created outside of your first level documents folder)
Your index listing will live under a url like:
https://archive.org/download/test_blog_2020/test/
(or even sub-folders like: https://archive.org/download/test_blog_2020/test/blog/)
(note that "test_blog_2020" here is a global unique identifier you can customize when you first upload to archive.org. as long as it is available of course)
Each file will have its own url like: https://ia601506.us.archive.org/4/items/test_blog_2020/test/...
(which means you can use relative links in your html and they will just work)
And you can use the "Edit" functionality to add more files to your folders:
via a url like this: https://archive.org/edit.php?edit-files=1&identifier=test_bl...
If you do want HTML (or possibly Markdown), then of course HTML will do. Just use plain HTML (perhaps with a common header and/or footer, added either ahead of time or using server side includes); no CSS, JavaScripts, decorations, etc.
[1] https://www.freesoft.org/CIE/Topics/index.htm - I learned from this twenty years ago. Still relevant.
I have no data to back this up, but to me, it seems that when people think about building websites without JS, they completely forget that CSS, or design are a thing.
I am building a website for a simple API I built for my company[1] that I thought others might want to use, and while there is no JS, that does not mean that I just uploaded an unstyled .html file to the root of my server.
While unstyled have their own charm at times, in general, I think a little bit of CSS, design, and inspiration goes a long way.
[1] https://i.cpimg.sh/pwiyfpBpIKL5.png
People love to shit on info because its default viewer uses emacs keybindings and the documentation "isn't geared for professionals" which is another way of saying providing minimum-viable knowledge (AKA non-OpenBSD man pages).
I happen to love info for those very reasons. Software freedom and usability used to mean that non-developers could understand how to use software. Want to learn how to code in Emacs Lisp? An info book on it comes with Emacs. Want to learn the ins and outs of the coreutils? Bash? gawk? Documentation the size of a book comes with all of them as well, formatted and designed to be friendly to people who have no idea what they're doing.
When this idea has come up on HN before it has been met by angry web developers claiming they "would have to maintain two websites" or some such nonsense.
However, consider that no one composes content in JSON, or even HTML. Textual content always begins as readable text. Even if only in the mind of the person creating it. There is nothing to maintain as there is nothing to "develop". All that needs to be done is add the HTTP header and deliver the text.
One of the most popular examples of text retrieval I can think of to illustrate:
https://www.kernel.org/doc/Documentation/
Personally I prefer the directory-style "Index of" to the HTML-ised "Up / Next / Previous". Same functionality.
Even if the complaint "we would have to maintain two websites" had any substance, which website do you think would be easier to maintain?
That is a rhetorical question. That means I already know the answer.
This, though: http://wttr.in, will never break. I'll tape my old iPad to the fridge and use it as a weather screen.
But I've chosen not to mess with things line text size and line height. More power to the user (agent)! Also, pleasant is in the eye of the beholder and I like it this way.
(Added your page by the way)
Actually A text only web as a few interesting advantages. Almost instantaneous load even in a poor connection. Very fast development time since you throw away so many things away.
Please excuse the plug(feedback is welcomed)
A problem validation platform - https://needgap.com
Curated list of startup tools - https://startuptoolchain.com
Startup/Entrepreneurial blog(Has occasional comics, but with transcription) - https://hitstartup.com
When the users are logged in, the voting buttons get RED and you'll notice less of the pink(Please do give it a try and let me know if it's better).
Thank you for your time.
They tend to use little to no decorative images outside of main content though, which is nice. Not to imply a list like this doesn't have the right to exist.
I intend to further curate the list soon and give proper text only sites a more prominent place. Retro, minimal, and text-only sites aren't quite the same.
NetHack
MUDs, MOOs, MUSHs
Dwarf Fortress
Kroz
Brogue
Zork (looks best on green phosphor screen).
Midnight Commander.
Trade Wars 2002.
If you explore the right platforms and eras then you will find many tens or even hundreds of thousands of text applications, many of which look "good" in my opinion.
https://copypastelist.com/
https://every.sdf.org/
Email (SMTP) was defind 7 bit and it took us 2 decades to work somewhat reliably with other languages requiring more characters.
https://masciintosh.com/
[1] https://www.scaruffi.com/service/aboutw.html
2018 https://news.ycombinator.com/item?id=17787816
2018 (a bit) https://news.ycombinator.com/item?id=17921251
2017 https://news.ycombinator.com/item?id=13337948
Any others?
I built my website the same way, and spent a lot of time shaving milliseconds off and optimising readability. I wanted to create the same sort of smooth, bullsh-- free experience.