Visual Studio Code - How to easily diff and compare two files
In this post I will share four ways to diff and compare files in Visual Studio Code. All of them are built-in and require no extensions. »
In this post I will share four ways to diff and compare files in Visual Studio Code. All of them are built-in and require no extensions. »
Last month - November - I had 25.066 organic and referral traffic, that is everything that is no direct traffic. In November 2021 this number »
In C# you can easily convert a DateTimeOffset to Unix time in seconds or miliseconds using the built-in methods ToUnixTimeSeconds or ToUnixTimeMilliseconds: var dateTimeOffset = DateTimeOffset.Now; »
The basic structure of the IF THEN ELSE formula in Google sheets is an IF formula with parameters, it looks like the following: =IF(logical_expression; »
This post describes how to create a stored procedure in MSSQL that takes parameters. For this we will use the simple table below: CREATE TABLE SomeTable( »
This post will demonstrate how to SELECT from a MSSQL table using a variable. There will be three examples: * Simple select statement * Setting a variable from »
You can easily create in-cell drop-downs in Google sheets using the "Data validation" menu point. It can be found under: * Data * Data Validation Located right here »
In MSSQL you can set auto increment for a column using the IDENTITY property. This will often be used on the primary key column, but it »
In MSSQL you can easily format datetime strings using the FORMAT function. For the examples in this post we will use a simple table like the »
For this blog post we will use the following two tables as examples, the scripts are written in SQL for MSSQL but it should be transferable »