Author / Mikhail Kozlov
-
Apps to install on clean MacBook
Programs to install: Visual Studio Code Figma Brew /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)" Iterm brew install --cask iterm2 Zsh sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)" SpectacleFebruary 4, 2021 -
Unity Collaborate
In Unity you can create a team and work together at one project. Just go to Unity Organizations Page and create new team. Then you can create new project or open existing…March 28, 2020 -
Copy file to local folder from docker container
Check containerId, by runing this command: sudo docker ps In order to copy a file from a container to the local computer, use following command: docker cp <containerId>:/file_path_inside_container /local_path Here's an example:…August 13, 2019 -
Git configuration and first push
Navigate to the local project directory and create a git repository: git init To add all files to next commit, run following: git add . To check git status, use this: git…May 5, 2019 -
Useful angular commands
Create a new angular project ng new Update application and it's dependencies ng update For development, start the app at localhost:4200 ng serve --open Generate new component ng generate component [component name]…May 2, 2019 -
MS SQL insert in the middle and reset auto increment
In case you need to insert something in the middle and need to set autoincremented column to some particular values, you can do the following: Set Identity_Insert [TableName] On -- Turn off…April 29, 2019 -
SQL query for today’s date minus year, month, day or minute
To add or subtract some date/time you can use MS SQL function: DATEADD(datepart, number, date) Let's say you need to add five months to current date, use this: SELECT * FROM YourTable…October 10, 2018 -
Changing the folder where screenshots placed on Mac
By default all your screenshots are saving on desktop, but you can change this location to any other folder on your Mac. First of all, start the terminal. I personally prefer iTerm,…February 2, 2018 -
How to select first row in each group ordered by some columns
I'm just gonna show you an example how to select first row in each group of logins ordered by IsActive and Created columns, hope you will realise how it works. For example…February 1, 2018 -
Automate your work on Mac
Hello! I always wanted to use my macbook more effectively and do more tasks then I do right now. And I have found how to make it possible! Automator You already have…January 31, 2018
Loading posts...