Strona głównaUżytkownik

cezarypiatek | użytkownik

cezarypiatek
cezarypiatek
1 418,8
395 dni, 10 godzin, 59 minut temu
18 kwietnia, 2014
dotnetomaniak.pl

In this blog post, I’m going to describe how to create a tool for generating code during the build process and how I used it to create auto-synchronizing mapping classes.

Dziel się z innymi:
How to simulate AutoMapper that works during the build time · Cezary Piątek Blog

Narzędzia 1627 dni, 18 godzin, 59 minut temu cezarypiatek 97 źrodło rozwiń

Documentation for new csproj format, as well as for Nuget related properties, is scattered across different MSDN documents, so I decided to create this blog post as a reference to what I’ve recently learned and discovered about the project’s options that affect the content of the output directory.

Dziel się z innymi:
Managing output in the .NET SDK projects · Cezary Piątek Blog

Narzędzia 1655 dni, 18 godzin, 49 minut temu cezarypiatek 56 źrodło rozwiń

Two weeks ago .NET Core 3.0 was officially published. Together with the new framework version, Visual Studio 2019 got support for a long-awaited C# 8.0. The complete list of the new language features is available here on the MSDN, but the one that deserves special attention is Nullable reference types. In this blog post, I will show you how to use this new language feature and how to achieve similar benefits if you still cannot use .NET Core 3.0 in your projects.

Tagi: C#, dotnet core
Dziel się z innymi:
Non-nullable references with C# 8 and .NET Core 3.0 · Cezary Piątek Blog

Narzędzia 1683 dni, 19 godzin, 58 minut temu cezarypiatek 198 ź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.

Dziel się z innymi:
Avoid thread synchronization problems with Roslyn: Synchronization primitives traps · Cezary Piątek Blog

Narzędzia 1704 dni, 20 godzin, 29 minut temu cezarypiatek 52 źrodło rozwiń

How I built a very simple macro system for C# that works right in the code editor

Dziel się z innymi:
[EN] CSharp Macros - let the Roslyn type for you · Cezary Piątek Blog

Narzędzia 1718 dni, 20 godzin, 40 minut temu cezarypiatek 72 źrodło rozwiń

I've decided to create a series of blog posts where I will present what I've recently learned about the traps related to the multithreading in C#. I will also show you my proposition of Roslyn analyzers that can possibly help to avoid those issues right at the stage of writing the code. This part is about choosing a suitable object for locking.

Dziel się z innymi:
[EN] Avoid multithreading traps with Roslyn: Lock object selection · Cezary Piątek Blog

Sztuka programowania 1732 dni, 19 godzin, 26 minut temu cezarypiatek 60 źrodło rozwiń

How to avoid common mocking issues and save a lot of typing with the help of Roslyn.

[EN] Effective mocking · Cezary Piątek Blog

Narzędzia 1751 dni, 20 godzin, 34 minuty temu cezarypiatek 162 źrodło rozwiń

Over a year ago I wrote a blog post about designing exceptions. I found this article very useful by myself and I used it as a reference a few times during code review. However, it’s almost impossible to expect that, after reading the recommended resource, anybody would start to apply described rules immediately and remember about them all the time.

Dziel się z innymi:
[EN] Exception usage analyzer · Cezary Piątek Blog

Sztuka programowania 1781 dni, 19 godzin, 49 minut temu cezarypiatek 86 źrodło rozwiń

TeamCity has really good support for running PowerShell, however, it can cause some troubles if it’s not configured correctly. After coming across the same mistakes and issues over and over again, I finally decided to write this article that shows how to use PowerShell properly, together with TeamCity.

Dziel się z innymi:
[EN] Best practices for using PowerShell with TeamCity · Cezary Piątek Blog

Narzędzia 1865 dni, 20 godzin, 36 minut temu cezarypiatek 31 źrodło rozwiń

In the early days of dotnet core, there was an attempt of changing the C# project file format. The old “csproj” based on XML format was replaced with .xproj/project.json. However, after releasing dotnet core 1.0 the authors decided to get back to XML file. The format stayed the same but the specification went through a major change. With the new schema...

Tagi: C# .NET
Dziel się z innymi:
[EN] Renovate your .NET solution · Cezary Piątek Blog

Narzędzia 1920 dni, 17 godzin, 54 minuty temu cezarypiatek 134 źrodło rozwiń

In this post, I will show you how to build a self-maintenance mechanism for ELK stack using curator together with cron scheduler.

Tagi: devops, ELK, logi
Dziel się z innymi:
[EN] Scheduled ElasticSearch index cleanup · Cezary Piątek Blog

Narzędzia 1984 dni, 18 godzin, 2 minuty temu cezarypiatek 30 źrodło rozwiń

Recently I’ve learned a few new DevOps things which help me and my teammates to work more effectively with ELK. I think they’re worth sharing.

Dziel się z innymi:
[EN]Tips and Tricks for managing ELK configuration · Cezary Piątek Blog

Narzędzia 2010 dni, 18 godzin, 29 minut temu cezarypiatek 32 źrodło rozwiń

Have you ever been in a situation when you discovered an exception in the logs that forced you to spend the next couple of minutes - or even hours - figuring out what exactly went wrong? The message was very cryptic and the only useful information that guided you to the crime scene was a stack trace. And after arriving there, you still had no idea what had really happened and what was the culprit. The most frustrating part is that in many cases the reason is very trivial and could be diagnosed immediatel...

Dziel się z innymi:
The art of designing exceptions · Cezary Piątek Blog

Sztuka programowania 2036 dni, 16 godzin, 38 minut temu cezarypiatek 137 źrodło rozwiń

The CQRS/CQS pattern works great, I immediately found a lot of benefits. It helps me to enforce separation of concerns, single responsibility and consistency in my codebase, as well as eliminate all that AOP magic with restoring full control over the code execution. Unfortunately, there is also a boring side of implementing CQRS - THE TYPING.

Dziel się z innymi:
[EN]CQRS snippets · Cezary Piątek Blog

Narzędzia 2061 dni, 19 godzin, 29 minut temu cezarypiatek 136 źrodło rozwiń

StaleElementReferenceException can be definitely classified as the number 1 nightmare of people who write automated tests with Selenium framework. This exception occurs when given web element with which we are trying to interact is no longer present in DOM tree. This can be caused by multiple factors...

Dziel się z innymi:
No more StaleElementReferenceException · Cezary Piątek Blog

Web 2103 dni, 17 godzin, 59 minut temu cezarypiatek 27 źrodło rozwiń

When it comes to writing maintainable UI test there always appears the term of Page Object Pattern. For those who are not familiar with Page Object, it’s the approach to building UI test that focuses on creating high-level abstraction over low-level details related to interaction with a tested application. This testing interface encapsulates all the noise related to technology and allows to clearly express intention of test cases. This concept is very well described...

Dziel się z innymi:
[EN] Feature Object Pattern · Cezary Piątek Blog

Sztuka programowania 2110 dni, 19 godzin, 28 minut temu cezarypiatek 80 źrodło rozwiń

Let’s assume that your system consists of a few microservices. Everything must have high availability so each microservice has at least two active instances on separate machines and everything must be multiplied by the number of testing and production related environments. When there is a situation that requires log analysis you have to skip from server to server looking for the file with desired information. You browse each file using some kind of notepad-based editor and if the files weight hundreds of...

Tagi: devops, ELK, logs
Dziel się z innymi:
[EN] Demystifying ELK stack · CEZARY PIĄTEK

Narzędzia 2140 dni, 19 godzin, 30 minut temu cezarypiatek 56 źrodło rozwiń

One of my ideas for increasing productivity of my team with ELK was to integrate it with Microsoft Teams. I wanted to shorten the feedback loop between error occurrence and diagnosis phase by notifying development team about the issue right after of the occurrence through the dedicated Microsoft Teams Channel. In this blog post, I've described how to easily implement this integration.

Dziel się z innymi:
Be the first to know of the bug · CEZARY PIĄTEK

Narzędzia 2156 dni, 10 godzin, 49 minut temu cezarypiatek 82 źrodło rozwiń

My laptop stores everything on 250 GB SSD hard drive (actually Windows sees it as 223 GB), so from time to time I’m running out of free space. When there is a need I’m starting clearing-up by emptying c:\Users\username\AppData\Local\Temp\ and c:\Users\username\Downloads\ directories (the second one against all appearances is often full of unnecessary files). When this is not enough I use ...

Dziel się z innymi:
[EN] Space eaten up by Resharper · CEZARY PIĄTEK

Narzędzia 2191 dni, 12 godzin, 21 minut temu cezarypiatek 119 źrodło rozwiń

Recently I’ve had occasion to work much more than usually with NHibernate. This is a really great ORM and a very mature project, but when you make a mistake it informs you about that in a very generic way (in most cases). The problem that hunted me for a few days was the issue with field length constrains (which was caused by insufficient and inconsistent REST API validation). When there was a discrepancy between declared field length in NHibernate mapping and validation logic (or the vali...

Dziel się z innymi:
[EN] Validating fields of NHibernate model · CEZARY PIĄTEK

Bazy danych i XML 2214 dni, 20 godzin, 19 minut temu cezarypiatek 48 źrodło rozwiń

1 2 3

Najaktywniejsi w tym miesiącu