Andrei Fedotov

Andrei Fedotov @andreisfedotov

About: I write here some notes

Joined:
Dec 4, 2017

Andrei Fedotov
articles - 13 total

What's new in C# 10? New features of C# 10

In this short note we go through the main new features of the C# 10 language. Welcome!

Learn More 5 0Oct 26 '21

List of C# 9 features

Top-level statements The very simple program on C# looks like the following using...

Learn More 13 2Jun 29 '21

C# Ranges and Indexes

In this tutorial, we're going to go through two new .NET types - `System.Index`, `System.Range` and cover appropriate operators: `^` and `..`. If you are interested in learning more about C# language, this is for you.

Learn More 10 2Jun 22 '21

How to create a new folder in visual studio - keyboard shortcuts

Creating a new folder in Visual Studio manually (by using mouse) is bit annoying process. I like to use shortcuts for such kind of routines. And this note show several options how to create new folder in Visual Studio by using shortcuts.

Learn More 9 0Jun 15 '21

How to change GitHub Actions run_number

Recently we faced a challenge to set an offset for different types of build (e.g. production/test builds). Searching over the internet had a lack of answers to the question of how to change `run_number` or how to increment it. After a good bit of time spent on documentation investigation, we came up with a solution.

Learn More 8 2Jun 8 '21

Launching Angular app on emulator without Android Studio

Previously we went through launching Android emulator without installing Android studio. In this note...

Learn More 7 0Jun 29 '20

Notes - How to become a Product Manager

Recently I've listened to talks on GitCommitShow. One of them was about becoming a product manager by...

Learn More 9 0Jun 27 '20

How to install Android emulator without installing Android Studio

This is the step-by-step note that answering the question: How to install and launch Android emulator without installing Android Studio itself.

Learn More 50 10May 8 '20

Shell script that finds all files which correspond to a given template

In today’s short trip we will develop a program with using of shell language. We won’t to use find command. Our program will search all files whose names correspond to a given template. The search will be in a given subtree of the file structure.

Learn More 9 1Nov 15 '19

Back to 1969 or Introduction to Ed - old-school text editor

Let's immerse in the atmosphere of the late 1960s and touch the history.

Learn More 14 0Sep 1 '19

Fix of Angular-cli 'JavaScript heap out of memory' error while running 'ng serve'

First option: Run node command as: node --max_old_space_size=8048 ./node_modules/@angular/cli/bin/ng...

Learn More 60 16Jan 17 '19

How to join several commits into one?

First way: 1) Consider we have the following commit’s history: * 493f284 2019-01-11 |...

Learn More 16 0Jan 12 '19

Git: How to delete all local branches except master

Checkout to master branch. The command to delete all branches except master is: git branch | grep -v...

Learn More 25 5Nov 18 '18