-
Continue reading →: Alignment in CSS
Original post: https://twitter.com/Prathkum/status/1373683008956297221 A Complete guide: https://css-tricks.com/snippets/css/a-guide-to-flexbox/
-
Continue reading →: npm i protagonist ~1.6.8 – Prerequisite
https://nodejs.org/dist/v8.12.0/node-v8.12.0-x64.msi https://www.python.org/download/releases/2.7/ Tell Node to use the 2015 build tools. npm config set msvs_version 2015 –global Set your Node config to use Python 2.7. npm config set python python2.7
-
Continue reading →: Install oh-my-posh for Powershell
https://github.com/JanDeDobbeleer/oh-my-posh Installation You need to use the PowerShell Gallery to install oh-my-posh. Install posh-git and oh-my-posh: Enable the prompt:
-
Continue reading →: Local stack quick setup on my Windows 10 machine
Prerequisite: Docker is installed and running. I have installed a Docker desktop community edition. Steps: Create a file with the name docker-compose.yml. Copy the following content and paste it into a docker-compose.yml. If there is any problem due to indentation, you can download the original file from here. Open PowerShell…
-
Continue reading →: How to make PowerShell shorten the long path of the current directory.
Are you getting less space on the PowerShell due to the long path of the current directory? You can increase the signal to noise ratio by hiding that long path. How? Follow the steps: Navigate to PowerShell and type $profile. It will give you a path to the PowerShell profile…
-
Continue reading →: Collect human-readable code coverage report for .net core apps
In this post, I will note down steps to collect human-readable code coverage for .net core/standard apps on the developer machine. I have created a simple .NET standard class library and .net core test project (xUnit) project here. Prerequisites You will require the following NuGet packages to be installed on…
-
Continue reading →: Consistent C# coding styles in .NET Core and VS 2019
Are you a part of champion C# team who has developers from Different background (JavaScript, Python, Java, Ruby etc.)? Some of them may prefer their own ways of indentations, placing curly brace locations (JavaScriptish), even not putting them at all (Python-ish). Members from your team have different perspectives over C#…
-
Continue reading →: Principles – Quick notes
Robustness principle – Postel’s law, after Jon Postel Programs that send messages to other machines (or to other programs on the same machine) should conform completely to the specifications, but programs that receive messages should accept non-conformant input as long as the meaning is clear. Rule of least power In programming, the rule…
