У нас вы можете посмотреть бесплатно Hidden Gems BONUS: Fonts for Developers или скачать в максимальном доступном качестве, видео которое было загружено на ютуб. Для загрузки выберите вариант из формы ниже:
Если кнопки скачивания не
загрузились
НАЖМИТЕ ЗДЕСЬ или обновите страницу
Если возникают проблемы со скачиванием видео, пожалуйста напишите в поддержку по адресу внизу
страницы.
Спасибо за использование сервиса ClipSaver.ru
We know many developers enjoy tweaking their Cincom Smalltalk tools, like themes and fonts for the source code browser. I look for good visibility in a font for programming, especially at smaller sizes or on a big 4K monitor. A prior font favorite has been “Bookerly” which is used by Amazon on the kindle and advertised as a font that lets you “read faster with less eyestrain.” Bookerly is a serif font, but most modern, simple, clear fonts for coding are sans serif. Note that in addition to the font, you may want to tweak or experiment with the relative size as well. Some fonts may not be installed on your system. Some you can find here: fonts.google.com. Here are a few fonts to experiment with: Roboto Roboto Slab Noto Sans Source Sans Pro Montserrat DejaVu Sans Some veteran fonts deserve consideration too (and some of these are in the product default): Verdana Tahoma Arial Here is some workspace code to cycle through and see these fonts. Have an editor with a large method visible. fonts := #( 'Verdana' 'Tahoma' 'Roboto' 'Roboto slab' 'Noto Sans' 'Montserrat' 'Source Sans Pro' 'DejaVu Sans' 'Bookerly') . fonts do:[:font | 3 seconds wait. Transcript cr; show: font. SourceCodeTheme fontName: font ]. 3 seconds wait. “Restore defaults” Transcript cr; show: 'Defaults'. SourceCodeTheme fontName: 'verdana, tahoma, liberation sans, nimbus sans L, helvetica, arial, sans*, *' My current favorites are Roboto and Noto Sans, with Source Sans Pro of interest too. What is your favorite?