Solution: Found a swap file by the name ".git/.MERGE_MSG.swp"
Normally, you get this message when you are doing GIT operations from two different places. Like I got this issue while using Git Bash (Command Line) & Visual Studio both to perform Git…
A proper & well organized listing of IT companies
Normally, you get this message when you are doing GIT operations from two different places. Like I got this issue while using Git Bash (Command Line) & Visual Studio both to perform Git…
This post provides information about the command to list out all active channels in Redis pub-sub & command to get number of subscribers subscribed to a Redis channel in Redis pub-sub.…
What is ASP.NET CoreASP.NET Core is a free and open-source web framework, and the next generation of ASP.NET, developed by Microsoft and the community. It is a modular framework that runs on both the…
I just got this error when I was publishing my first ASP.NET Core application in Self Contained mode.SolutionOne-liner solution to this problem is - Just repair your Visual Studio.Though I took some…
To get previous & next page URLs in Umbraco, you can use below piece of code.…
Solution:Just change @id to @+id while defining or referencing an id. This will fix your issue.For me, I just changed…
Solution:Just replace ConfigurationSettings.GetConfig with ConfigurationManager.GetSection…
To check bytes used by a variable in SQL Server, you can use DATALENGTH function.DECLARE @temp NVARCHAR(MAX)SET @temp = N'化字'SELECT DATALENGTH(@temp)This will display the number of bytes used @temp…
ASCII & Unicode both are character sets & both character sets (ASCII & Unicode) hold a list of characters with unique decimal numbers (code points). A= 65, B=66, C=67 etc.ASCIIASCII defines 128…
Android has by default many themes. For example, below are some existing themes in…