The initial gtag code for setting up google analytics looks something like the following:
window.dataLayer = window.dataLayer || [];
function gtag(){window.dataLayer.push(arguments);}
gtag(' »
Peter Daugaard Rasmussen
on Blogging , SEO
13 August 2022
You are likely here because you are waiting for your site on Ezoic to be set up. While waiting, I found several pages with people complaining »
Peter Daugaard Rasmussen
on Blogging
10 August 2022
When searching for "Ezoic" together with Ghost blog pro there were close to no results out there. I was wondering what others had experienced »
Peter Daugaard Rasmussen
on Blogging
08 August 2022
Prior to moving to Ezoic I had a static ads.txt file on my site with just an adsense line in it:
google.com, pub-2997413406307797, DIRECT, »
Peter Daugaard Rasmussen
on Blogging
06 August 2022
Prior to C# 7, the only type of tuple was the System.Tuple class. This type of Tuple is an immutable class (reference type) and a »
Peter Daugaard Rasmussen
on C#
02 August 2022
Earlier I was putting some code together for an example. I got the following error (Top-level statements must precede namespace and type declarations):
Error CS8803 Top-level »
Peter Daugaard Rasmussen
on C#
01 August 2022
If you are on this page you likely got an error like the following:
Msg 4901, Level 16, State 1, Line 8 ALTER TABLE only allows »
Peter Daugaard Rasmussen
on MSSQL
15 July 2022
Often when working with JSON you would parse it to a C# object structure that matches your JSON. But sometimes you may want only a subset »
Peter Daugaard Rasmussen
on C#
02 July 2022
If you are like me and have never had more than two or three packages as dependencies in a python project you have likely never needed »
Peter Daugaard Rasmussen
on Python
27 June 2022
This post describes how to make a HTTP request with a specific content-type using the HttpClient in C#. Using the HttpClient you can POST JSON or »