Blog

Entdecken Sie unsere neuesten Beiträge

.NET 9.0 - .NET Maui von Frame zu Border
20. Februar 2025 | Allgemein
Seit .NET 9 warnt der Compiler "Frame" ist veraltet: "Frame is obsolete as of .NET 9. Please use Border instead.". nun gut leider geht ...
16. Februar 2025 | Allgemein
As a little finger exercise, I thought that a Visual Studio extension that explains the code would be good - thanks to OpenAI, that shouldn't be a...
MSSQL Script: Move all LOG files in a DB
16. Februar 2025 | Allgemein
-- First, create a temporary table to store the file move operations CREATE TABLE #LogFileChanges ( DatabaseName sysname, LogicalFile...
MSSQL Script: Alle LOG Files in einer DB verschieben
11. Februar 2025 | Allgemein
-- First, create a temporary table to store the file move operations CREATE TABLE #LogFileChanges ( DatabaseName sysname, ...
Code compilation: How C# code magically becomes an EXE!
09. Februar 2025 | Allgemein
The question is how can I compile C# code on ‘the fly’ in .NET 9.0 As a demo, we will make a small programme that compiles any file wit...
Code-Compilation: Wie C# Code magisch zur EXE wird!
08. Februar 2025 | Allgemein
Die Fragestellung ist wie kann ich on "the fly" c# Code kompilieren in .NET 9.0 Als Demo machen wir ein kleines Programm, das eine beli...
MSSQL Schema umbenennen
14. Januar 2025 | Allgemein
Das ist leider so leicht nicht möglich. Aber es gibt einen Weg. Zuerst das neue Schema erstellen: create schema {newschema...
String in allen Files ersetzen mit POWERSHELL.
05. Januar 2025 | Allgemein
Get-ChildItem -Path "C:\path\to\your\directory" -Recurse -File | ForEach-Object { (Get-Content $_.FullName) -replace "your_...
WGET
03. Januar 2025 | Allgemein
Ein Klassiker unter den Tools. Download: https://eternallybored.org/misc/wget/1.21.4/64/wget.exe Beispiele ...