Daily Shaarli

All links of one day in a single page.

February 11, 2021

gittutorial(7)

$ git status

Using Git with a central repository
Binary flags with Python
Simple Filters and Syntax Sugar in DAX - Excelerator BI

There is a concept in the DAX language called “Syntax Sugar”.  Simply put, the developers have created simplified versions of more complex formulas to make it easier for people to learn and use the DAX language.  Here are a couple of examples

CSCI 104 – GIT Resources
Creating a date dimension or calendar table in SQL Server

WITH seq(n) AS
(
SELECT 0 UNION ALL SELECT n + 1 FROM seq
WHERE n < DATEDIFF(DAY, @StartDate, @CutoffDate)
)
SELECT n FROM seq

GitHub - satwikkansal/wtfpython: What the f*ck Python?