Wednesday, April 13, 2022

Вопросы с собеседования С++ (2018)

 Выкладываю свою памятку, которая должна помогать вспоминать теорию, при подготовке к собесам.

How remove first empty element in dropdown in AngularJS1.4.3

Hello, currently I have some count of legacy projects on the support, and they are has been created with AngularJS 1.4.3.


This is framework has features what first element in dropdown will be empty.

By design, it must be an element with label as 'Select from dropdown'.

Problem:



Saturday, April 9, 2022

Some statistics for 2020-2021

 Hello, I found some personal statistics for 2020-2021 when I worked at SberCloud





And some statistics for same period on gitlab - was used for shared development with third party developers



 

Saturday, January 22, 2022

[Mac] brew using on M1

— How to use brew on Mac with M1 processor?
— Just add arch -x86_64 before brew command.

For example, the final result will be:  arch -x86_64 brew upgrade

Sunday, October 31, 2021

Вопросы на собеседовании DevOps инженера

Приветствую, ниже список вопросов которые я задавал devops инженеру на этапе собеседования (собеседование с командой). Зачастую, мы отыгрывали модель хороший-плохой коп :). Я старался быть хорошим, обычно более жесткую технику спрашивали на первом этапе собеседовании или же коллега из R&D/Производства. Вопросы уже неактуальны,  давались 2 года назад мной (я был еще более зеленым). Скорее просто нашел старую заметку - удалять жалко

Saturday, September 18, 2021

[DevOps] Small tricks for debugging docker images

Sometimes you are needed to be got what of consists of in the docker image. So you can convert this is an image to archive and unpack this is an archive to a file system.

For understanding
docker build --tag site:latest .

docker tag site:latest _name/site:latest

docker push _name/site:latest


# This is keyvalues strings

docker run -d -p 3000:3000 --name container_name site:latest

docker export container_name > contents.tar


[DevOps] How detect version of CentOS

Just run it:

cat /etc/centos-release