Live data from Hacker News

The Monospace Web

owickstrom.github.io

61–70 of 159 posts

Re: The Monospace Web

#62
post #10

The tight line spacing has a negative impact on readability. It’s hard to read long paragraphs of dense body text like this. But the tables and other character graphics require this tight leading. That’s the problem with using the same character grid for both graphics and text. It could be alleviated with a font that has a particularly low x-height (leaving more margin above and below the letters).

I can't stand monospace for reading, so I made a bookmarklet because all reader modes suck leaving font preference even though this site works fine just changing the normal text tags over to sans-serif.

   javascript: (function() {
    (function() {
        const textElements = document.querySelectorAll('p, span, h1, h2, h3, h4, h5, h6, li, td, th');
        textElements.forEach((element) => {
            const textColor = getComputedStyle(element).getPropertyValue('color');
            element.style.fontFamily = 'system-ui, -apple-system, sans-serif';
            element.style.WebkitTextStroke = `0.4px ${textColor}`;
        });
        location.hash = "";
        history.replaceState("", "", location.pathname);
    })();
})();

https://caiorss.github.io/bookmarklet-maker/

Re: The Monospace Web

#63
post #51

I was watching a video today that called stuff like this the "indie web" where the philosophy is anti-algorithm and tries to embrace all of the things that made the web a great place in the past. Things like RSS, custom blogs, forums, web rings etc... I started my own as well, it feels really nice.

Also sometimes called the small web. See The small web is beautiful by Ben Hoyt https://benhoyt.com/writings/the-small-web-is-beautiful

Re: The Monospace Web

#64
post #25
post #20

Earlier quoted context omitted.

The page loads a webfont (Jetbrains Mono) with 4 different weights, for a total payload of 725KB. Looking light and being light are 2 different things.

[flagged]

Extra annoying given that any fixed size font will have the same column alignments. Might as well use the user’s built in fixed font.

Re: The Monospace Web

#65
post #58

I was thinking about changing my personal website's font to a monospaced one. Anybody know which ones are particularly good for long-form text readability? Bonus points if it's on Google Fonts.

I'm partial to Drafting Mono - https://indestructibletype.com/Drafting/ - for paragraph display.

Not on Google Fonts but it's free (or very cheap for the variable version).

Re: The Monospace Web

#66
post #44
post #29

Ooh, this is the thread to ask my question in. A few years ago I ran across a ... I think a video game walkthrough? maybe? which was written to be read in monospace font, and it was full justified perfectly all the way through (thousands of lines!) SOLELY through word choice. Anyone know what I'm talking about and have a link?

That's called bricktext[0], it used to be a thing you'd occasionally see on usenet and places like GameFAQs. [0] http://www.catb.org/esr/jargon/html/B/bricktext.html (Also wow Google has completely erased this concept from its search results.)

Funny guide, different scene.

http://www.catb.org/esr/jargon/html/crackers.html

On C64 the signs of puberty were usage of words like “lamer”, “loser/looser”

Loser vs looser was especially painful. “Haha, we know it’s loser but looser sounds cooler.” A lame cover up, somewhat contradicting the whole meaning.

90% of the scroll texts were about contrived stories of displaying superiority over lamers and losers.

The folks from Finland appeared to be a bit over the top with references to their weight lifting careers to appear like some sort of brutal fighting machine.

Kids back then… ;)

Re: The Monospace Web

#67
post #58

I was thinking about changing my personal website's font to a monospaced one. Anybody know which ones are particularly good for long-form text readability? Bonus points if it's on Google Fonts.

IBM Plex Mono is pretty good, with a reasonable license. It's on Google Fonts, and the repo is here: https://github.com/IBM/plex

Re: The Monospace Web

#68
post #10

The tight line spacing has a negative impact on readability. It’s hard to read long paragraphs of dense body text like this. But the tables and other character graphics require this tight leading. That’s the problem with using the same character grid for both graphics and text. It could be alleviated with a font that has a particularly low x-height (leaving more margin above and below the letters).

I can't stand monospace for reading, so I made a bookmarklet because all reader modes suck leaving font preference even though this site works fine just changing the normal text tags over to sans-serif. javascript: (function() { (function() { const textElements = document.querySelectorAll('p, span, h1, h2, h3, h4, h5, h6, li, td, th'); textElements.forEach((element) => { const textColor = getComputedStyle(element).ge…

Doesn’t work in Netscape Navigator.

Joke. Cheers! ;)

Re: The Monospace Web

#69
An infamous C64 resource to this day is available in monospace, the so called “VIC article”:

https://www.cebix.net/VIC-Article.txt

Main issue is printing.

The article uses a diagram that needs fixed references in a two dimensional space. That’s why monospace here is invaluable.

The article is the single most important technical reference for the C64. 99% of all technical demo effects can be broken down to fundamental tricks found here.

Re: The Monospace Web

#70
My issue with the page is; the white and black contrast is way too high for me. I have astigmatism, and I prefer a slightly lower contrast with a not-so-black background color.

The font is nice and I like the general concept, I have always liked monospace.

Post reply on HN