Multi Service Bus Core 2.0

Hi, today I want to present Multi Service Bus Core 2.0. The new version has a lot of small bugs fixed. I recently bought myself an excellent tool to draw diagrams. Below I will want first to start by showing the concept diagram. Multi-Service Bus Core 2.0 offers Server-Client communication. It is an important point, so I described it first with this but let me start from the basics principles of the Continue ReadingMulti Service Bus Core 2.0

Batch Processing Aspect in C#

Hi, today I want to share with you idea of batch processing aspect. It solves an issue with calling T-SQL Server procedures 1-by-1 requests, for example, for inserts calls. And instead of calling 1-by-1, I prepared aspects that you call 1-by-1, but it does it in batches, for example, up to 100-by-100, like in my test example. Below you can find a code that includes aspects and a simple test. The most Continue ReadingBatch Processing Aspect in C#

TEDx Krakow 2015

Hi, today I was on the biggest TEDx in Poland, TEDx Krakow 2015 #tedxkrakow. The event was amazing. There were a lot of talks, presentations, and shows given by amazing presenters. Also, I meet great people with passion at the Conference Center ICE. I really enjoy today’s event, and you probably in a short time see all presentations on the TEDx Krakow website. Today I played with robots in a checkers game, Continue ReadingTEDx Krakow 2015

Multi Service Bus Project Launch

Hi, I started today Multi Service Bus (GIT repo) project. Already I have full C# implementation. And I will be working on other language implementations. First, I will start on Java and then on C++. I have some ideas on how to make this in Java, but overall I am not a Java expert, only a C# expert, so that may be a bit difficult at the beginning. But I will be Continue ReadingMulti Service Bus Project Launch

Happy Holidays at The End of 2014

Hi, as you know year 2014 is almost going to end. This year for me, was full of innovations. I made a new version of KinectCam for Kinect for Windows V2 and later, I made some performance improvements with the frame generation algorithm to make it really fast. I made a breakthrough with the testing tool TSQLTester that was chosen at my work to testing performance with full regression of our database Continue ReadingHappy Holidays at The End of 2014

Generic Free Pattern

Hello, below you can find C# 2.0 Generic Free Pattern example that I just invented ;). Only generic code is invoked, but it is called without generic type. I have a better idea of implementing this pattern, but it needs the introduction of 3rd usage of our keyword in C#, and I cannot make it. However, I could make this pattern, and I hope you like it. Now you can write generic Continue ReadingGeneric Free Pattern