Docker has built in great cache mechanism, but to be able to use it, you have to understand how it works.
Strona głównaUżytkownik
Tometchy | użytkownik
Microsoft SQL Server is available for Linux so we can run it from Docker container, but usually we need to initialize database at startup, which currently is a bit tricky...
Bazy danych i XML 1747 dni, 14 godzin, 12 minut temu 118 źrodło rozwiń
This blog post continues the series "Avoid thread synchronization problems with Roslyn" and this part is about the traps related to the usage of synchronization primitives.
Introduction to docker-compose with example written in C# on .NET Core 2.2 composed with MySQL database.
How to avoid common mocking issues and save a lot of typing with the help of Roslyn.
This article shows how to Dockerize .net core application which has references to solution projects, which may not be obvious for beginners. Generally this is good article to start learning Docker :)
Dzisiaj chciałbym podzielić się zestawem reguł, który w różnych projektach stosuję od lat. Pod to stworzyłem repozytorium https://github.com/kmorcinek/dotnet-tools-settings Korzystam ze StyleCopa od ładnych kilku lat. Jest to niezbędne narzędzie gdy stosuje się Code Review. Po prostu szkoda czasu i ludzkiej cierpliwości, żeby ręcznie wytykać komuś coś, co może wychwycić narzędzie.
Matching text using regex patterns is extremely useful. But sometimes we need to invert this process and create text which will match the regex. The solution has already been written.