To change your name server on a dk domain go to DK Hostmaster site https://selvbetjening.dk-hostmaster.dk/. Log in and select your domain from the list. On the right hand side you have administrator configuration. Select change name server. “Skift navneservere”. Input your new nameserver to what to move your domain to. Now write your new nameserver
How to remove Microsoft Compatibility Telemetry
The Microsoft Compatibility Telemetry is a service in Windows 10 and Windows 11. It periodically sends data to Microsoft which contains technical data about how the Windows devices and their related software are working. That’s one thing, but it can take up high disk usage and CPU as seen in the task manager. Disable Microsoft Compatibility
How to fix set-output command is deprecated in Github Action
Running microsoft/setup-msbuild@v1.0.2 and Run NuGet/setup-nuget@v1.0.5 is now deprecated and you should upgrade the version. The underlying set-out is being removed from 1st June 2023. Instead of set-output the $GITHUB_OUTPUT should be used instead. Your Github Action pipeline will look something like this Solution to set-output Update the version on setup-msbuild and/or setup-nuget In details the
How to fix Windows Search in the Start Menu
Now and then the Windows Start Menu Search or the common simple name of Windows Search something doesn’t work after starting up or suddenly during the day. In older Windows it was the Explorer that was not responding anymore. But in newer Windows. Windows 10 and Windows 11 the Search has it’s on dedicated App.
How to change Google Docs Header Format
To change a default Google Docs Header format to another size or color. Select the header you have, then change the change the front, size etc. When you’re happy. Then make sure you still have the header selected. Then go to the header section and select e.g. Heading 3 and press the “update ‘heading 3’
How to call Databricks notebook without Github mail from Data Factory
You can call Databricks notebook affiliated to your Github repository from Data Factory. It is a easy way to have your whole workflow pipeline inside Data Factory and have all triggers only in one place and not also having them in Databricks. However, when calling a Databricks notebook the path depends on your Github username
What is Java Matcher find in C#
The equivalent of Java Matcher in C# is the Regex.Matches() function. First define the pattern and then call the Regex.Matches(). C# documenation on Regex Matches: https://learn.microsoft.com/en-us/dotnet/api/system.text.regularexpressions.regex.matches?view=net-7.0
How to remove all whitespace in C#
There a multiple way to remove whitespace in a string in C#. You can use the simple Trim(), TrimStart(), TrimEnd(). But to remove all whitespace you can’t only use the trim function as that is only remove whitespace on start and end. The most efficient way to remove all whitespace is using the replace function
How to temporarily disable pipeline in Data Factory
Sadly you can’t temporarily disable pipeline in Data Factory. But depending on what you what to do there are other options. If you want to debug a specific activity you can use the red circle above it. It’ll now stop while debugging. You can also use this if you just want to disable a single
How to python request.form.get not getlist in Flask
The get and getlist here a specific thing for Flask in python. To obtain values of request variables using Python you simple use the request.form.get To retrieve and make sure what you actually retrieve if it’s a value or array. Flask request documentation: https://flask.palletsprojects.com/en/2.2.x/api/#flask.Request