MonoLisa – A font designed for developers
81–90 of 294 posts
Re: MonoLisa – A font designed for developers
#82I wonder how many people glancing at the landing page have browsed over to the download page, and discovered that this a paid font? To the tune of $69 to $239, depending on the options you want. If this were something really revolutionary, then okay. But this looks like every other Bitstream Vera Sans Mono variant, just tweaked to be a touch wider than Fira Code or Jetbrains Mono. But half of the fonts on https://www…
According to the EULA the font is now mine under the term "by downloading the software accompanying this license".
Correct me if I'm wrong please. /s
Re: MonoLisa – A font designed for developers
#83I'm going to hop on my hobby horse again for a second: One of their first points is this: >Designing a monospace font is much harder than a traditional, proportional one: being constrained by the same width of all glyphs can result in a boring or unreadable font. And they're absolutely right. But it begs the first-principals question-- why code using a monospace font? Today, every major editor that isn't terminal-bas…
Re: MonoLisa – A font designed for developers
#84I can't find a font file called Monospace. Does anybody know what the font is? I would love to have it on my windows machine.
Re: MonoLisa – A font designed for developers
#85I wonder how many people glancing at the landing page have browsed over to the download page, and discovered that this a paid font? To the tune of $69 to $239, depending on the options you want. If this were something really revolutionary, then okay. But this looks like every other Bitstream Vera Sans Mono variant, just tweaked to be a touch wider than Fira Code or Jetbrains Mono. But half of the fonts on https://www…
https://hn.algolia.com/?dateRange=all&page=0&prefix=false&qu...
Re: MonoLisa – A font designed for developers
#86Earlier quoted context omitted.
People charging $199 for a slightly wider Lucida Console, you can't make this shit up. The marketing is so outrageous. In case someone's seriously considering this, here are an additional two sites that have literally hundreds of CC0 and other free to use fonts, not just monospace: https://www.1001freefonts.com http://allfont.net DIN 1451 Mittelschrift is my personal favorite.
If you like symbols and fancy terminal stuff, I'd also like to recommend any of the Nerd Fonts - all free. https://www.nerdfonts.com/
Re: MonoLisa – A font designed for developers
#87I'm going to hop on my hobby horse again for a second: One of their first points is this: >Designing a monospace font is much harder than a traditional, proportional one: being constrained by the same width of all glyphs can result in a boring or unreadable font. And they're absolutely right. But it begs the first-principals question-- why code using a monospace font? Today, every major editor that isn't terminal-bas…
Re: MonoLisa – A font designed for developers
#88I wonder how many people glancing at the landing page have browsed over to the download page, and discovered that this a paid font? To the tune of $69 to $239, depending on the options you want. If this were something really revolutionary, then okay. But this looks like every other Bitstream Vera Sans Mono variant, just tweaked to be a touch wider than Fira Code or Jetbrains Mono. But half of the fonts on https://www…
It looks like a lovely font, a shame about the price. They have, however, included it into their website and distributed it to my browser for free, without asking me first: https://www.monolisa.dev/api/fonts/initial According to the EULA the font is now mine under the term "by downloading the software accompanying this license". Correct me if I'm wrong please. /s
I saved the EULA in case your interpretation is accurate and the EULA changes.
Re: MonoLisa – A font designed for developers
#89Re: MonoLisa – A font designed for developers
#90I'm going to hop on my hobby horse again for a second: One of their first points is this: >Designing a monospace font is much harder than a traditional, proportional one: being constrained by the same width of all glyphs can result in a boring or unreadable font. And they're absolutely right. But it begs the first-principals question-- why code using a monospace font? Today, every major editor that isn't terminal-bas…
There was a whole "coding font" family designed around the idea that we should be using proportional fonts for this, and it makes a great case...
...except that just about every time I've tried this, I've quickly run into places where trying to use a proportional font creates visual fails. Here's a simple one:
/**
* Render a given template
*
* @param string $_template
* @param array $_args
* @return string
*/
Put that in a non-proportional font, and the asterisks on the first line probably won't line up with the rest. Now think of someone doing visual alignment of assignment operators in a block of code like you often see in Ruby, or any code following the indentation standard where you line up parameters in a multi-line function header with the character after the open parenthesis like you often see in Python. Speaking of parentheses, can you imagine what will happen with proportional fonts and Lisp indentation? It'd drive the hardiest Emacs user to drink in short order.Proportional fonts in editors are a good idea whose time probably just hasn't yet come. We'd need (a) to have editors that support "elastic" or variable tabs to keep things aligned in a truly sane fashion, (b) to re-teach a generation or two of programmers that indenting with the tab character is good, actually, and (c) to develop a few new conventions for what makes code look neat and pretty.