David.dev

The Best coding typeface? Comic Code Font ✨


I was just browsing through My HN Clone (which is the only way to read it for me as the original site is set in an incredibly annoying and small font) and I came across an article about a new open-source typeface for coding called Iosevka.

This is certainly a great effort which I applaud. You can have a coding font that can be customised to your needs and is entirely free, so what more can you ask for?

There are certainly plenty of monospaced, open-source typefaces like Victor Mono, Jetbrains Mono , IBM Flex Mono and just many others.

This article reminded me of a recent email newsletter I received just a few days ago from myfonts. It was about a coding font with a twist: Comic Code. Not an open-source font, but to me it is well worth the 12$ - 30$ for the license.

Here it is in all its beauty:

Really not your usual coding font!

Casual, nice, and inspiring:

The font was designed from scratch by Toshi Omagari of Tabular Type Foundry:

 

 

All images and rights myfonts.com

Comic Code is available for purchase on Myfonts.com. I am not affiliated to myfonts but I thought I would recommend it as a valid alternative to the various open-source or not programming typefaces. All have a very technical feel. Nothing wrong with that but I agree with the designer, Toshi Omgarai that stated Code —machine-like rows of characters — looks scary to many people. I want to change that.

This is a great philosphy so I went on and bought it. Now it is my go-to font for everything related to coding including XCode default font, terminal etc.

It is now also the default font for any code snipped in this site and here you can see it in action:

const polka = require('polka');
const morgan = require('morgan');
const { send } = require('./util');
const items = require('./items');

const { PORT=3000 } = process.env;

// init Polka (HTTP) server
polka()
	.use(morgan('dev'))
	.use('/items', items)
	.get('/', (req, res) => {
		send(res, 'Index');
	})
	.listen(PORT, () => {
		console.log(`> Ready on localhost:${PORT}`);
	});

I love the casual look and feel. It is very readable and it has the right 0! My previous coding font was APL 385. It was not as austere as other coding fonts but I like comic code much more!

There are indeed many open-source, free options so why invest in a typeface? I think the typefaces you use are extremely important. It can enhance your productivity and, in the case of a web font, can make your voice more distinct, clear and pleasant.


11

made with ❤ī¸ by david.dev 2024 RSS Feed