cloud-eng .nl

All tags  /  tag

#programming

11 posts tagged with programming.

2015
  1. ReSharper Annotations. Can it be null?

    Hi, ReSharper is doing a great job when it comes to semantics of your code and control flow graph analysis. The special edge case I want to talk about is …

  2. Reactive Extensions. API client with Cache-Aside & Refresh-Ahead strategy. Part 2.

    Hi, In the previous post I told you how to implement the Reactive API client with caching. Well, to prove that our code works we might want to have some unit …

  3. AsyncSuffix ReSharper extension

    There is a tendency in a .NET world to build asynchronous CPU-bound or I/O-related API. We also can see that some APIs support both asynchronous and synchronous …

  4. Reactive Extensions. Api client with Cache-Aside & Refresh-Ahead strategy. Part 1.

    Hi, Today I want to talk about the development of the api client library. Let’s say it is an imaginary GitHub RESTful API that returns user’s rating. To make …

  5. Sharing ReSharper settings and Live Templates

    In my previous post, I’ve described how to create your own Live Templates for ReSharper. Today I’m going to tell you how to share your ReSharper …

  6. Custom live templates for ReSharper

    Hi! As a .NET developer I’m enjoying using an intelligent plug-in for Visual Studio which is called ReSharper. It saves me time, provides me with static …

  7. Keeping the repository interface clean

    The repository pattern is being blamed quite often. The most popular reason for that is an uncontrolled growth of the interface.