Điều khiển thời gian trong unit test C#
Việc test các hàm phụ thuộc vào thời gian chạy là tương đối phức tạp. Thật may là các package NodaTime và NodaTime.Testing có thể giúp ta giải quyết vấn đề này.
About technology stuff that piqued my interest
Việc test các hàm phụ thuộc vào thời gian chạy là tương đối phức tạp. Thật may là các package NodaTime và NodaTime.Testing có thể giúp ta giải quyết vấn đề này.
Testing time dependent classes can be tricky. Fortunately, the NodaTime and NodaTime.Testing package can assist us in resolving this issue.
Phương pháp đồng bộ phổ biến nhất trong C# .NET là sử dụng lock. Nhưng trong nhiều tình huống, Interlocked có hiệu năng vượt trội.
The most common way to synchronize threads in C# .NET is using the lock keyword. But in many situations, the Interlocked class can provide superior performance.
Có nhiều thư viện hỗ trợ tính toán khoa học trong C#. Một trong số đó là NumSharp, một bản port của Numpy. Hôm nay, ta sẽ dùng nó để đọc file Numpy.
There are many library to support scientific computing in C#. One of them is NumSharp, a port of Numpy in C#. Today, we will use it to read Numpy files.
The OpenAPI Generator tool can help us generating API clients from the OpenAPI Spec. But what if we want to add some modification? Enter the Mustache template.
OpenAPI Generator giúp ta sinh code cho API client mà chỉ dựa vào file OpenAPI Spec. Và khi ta cần tùy biến client đó, ta có thể sử dụng Mustache template.