Development notes

Thoughts, notes and ideas about development

Visual Studio Code: How to enable fonts ligatures in Ubuntu

2019-01-10 1 min read Linux Alexey Bogdanov
Visual Code supports fonts ligatures out of the box. But also an appropriate font with ligatures support is required. Fira Code is one of such fonts. Fira Code can be used not only in Visual Studio Code but also in other editors and IDE (e.g. Intellij Idea). First of all we need to install Fira Code. For Ubuntu based distributions it’s better to install font from official repositories. (With other installations ligatures didn’t work for me). Continue reading

How to change font size in Skype for Linux

2018-12-20 1 min read Linux Alexey Bogdanov
Skype for Linux doesn’t scale fonts well on monitor with high DPI out of the box. Below I provide 2 solutions how to increase font size. Increase Electron’s fonts Because Skype for Linux uses Electron under the hood, which is just a web browser, we can increase font by using Ctrl + Shift + =. Or via menu: Using such approach menu will still have a small font. Scale Skype window Another approach is to scale the whole Skype window. Continue reading

How to enable high DPI mode in Firefox

2018-12-20 1 min read Linux Alexey Bogdanov
In our days High DPI monitors become more popular. But unfortunately, still there are issues with some applications on such monitors mostly on all operating systems. �And Firefox on Linux is not an exclusion. All what is written bellow mostly relevant to Firefox on Linux, because on Windows and Mac OS Firefox looks good out of the box on high DPI monitors. Right now (when I’m writing this) in Linux only KDE can scale monitors out of the box. Continue reading

How to run Spring Boot and MongoDB in Docker using Docker Compose

2017-12-26 9 min read Development Alexey Bogdanov
Into the previous post How to run Spring Boot and MongoDB in Docker container I described how to start Spring Boot web application and MongoDB in docker using Dockerfiles. Described approach works, but has some drawbacks: we need to remember all commands and repeat them from time to time. Into this tutorial I’ll describe how to build locally a Docker image with Java application and run it together with MongoDB in Docker containers using Docker Compose. Continue reading

Linux: how to make Bluetooth working

2017-11-06 2 min read Linux Alexey Bogdanov
This post describes step by step solution of how to make Bluetooth working on Lenovo V580c in linux distributions: Ubuntu 17.10 and Manjero 2017. My Lenovo laptop uses BCM43142 chipset. Find bluetoth chipset and device ID First of all we need to make sure that we have appropriate Chipset. Open terminal and enter the following command: lsusb | grep Bluetooth The output will look like: Bus 001 Device 004: ID 105b:e065 Foxconn International, Inc. Continue reading

Scala expressions and definitions cheatsheet

2017-09-13 1 min read Development Alexey Bogdanov
Intro This is a cheatsheet of Scala expressions and definitions from Coursera online course Functional Programming Principles in Scala What is Expression Expression is any bit of Scala code that yields a result. In other words expression evaluates to a result or results in a value Categories of expressions An identifier such as x, isValid A literal, like 0, 2, abc A function application, like sqrt(x) An operator application, like -x, x+y A selection, like math. Continue reading

VSCode: How to change the font size

2017-05-22 1 min read VSCode Alexey Bogdanov
Visual Studio Code is a lightweight but powerful source code editor which runs on your desktop and is available for Windows, macOS and Linux. It’s developed by Microsoft. Here a guide how to change the Editor’s font and the font of the hole application (tabs, explorer, etc). This article describes how to change the VSCode’s fonts. How to open setting There 2 way of opening VSCode’s setting: Over main menu or hot keys: go to File -> Preferences -> Setting (or click on Ctrl + Alt + S) Over setting. Continue reading
Older posts Newer posts