Highlights from new version to 1.0.11. added VS2013 version added a “separated assembly” versions. Until now I was using RedGate’s Smart Assembly to pack all referenced assemblies into […]
Manage Code ContractClass plugin
I just finished coding a DXCore/CodeRush plugin that helps you with managing the ContractClass for an interface. Find the dedicated page here.
Righthand’s utilities for managing Intel Rapid Storage Technology drivers are live
I’ve started developing a set of utilities for managing Intel Rapid Storage Technology drivers (aka Intel’s integrated RAID drivers). Even though Intel provides a GUI there is a […]
Go To Implementator update
Due to the DXCore/CodeRush internal reorganization I’ve had to update my Go To Implementator plugin as well. Nothing changed except that the new version (1.0.6) now works with […]
A managed path to DirectCompute
About DirectCompute After NVidia Cuda, OpenCL we got DirectX’s version (of GPGPU parallelism for numerical calculations) named DirectCompute. All three technologies are very similar and have one goal: to […]
Want to try Parallel Extensions on .net 3.5?
Check out Reactive Extensions to .NET (Rx). Looks like it includes “a back ported (and unsupported) release of Parallel Extensions for the .NET Framework 3.5 in the form […]
Dealing with iterations over null lists in LINQ to Objects
Problem If you used LINQ to Objects you have certainly come across iterations over null values resulting in an ArgumentNullException being thrown at you. See this example: int[] […]
A better call to Control.Invoke
Whenever one needs to interact with WinForms UI from within another thread (the one that didn’t create the UI controls) one has to rely on the Control.Invoke (or […]
Packing assemblies to a single file for Righthand.Dataset.Visualizer
A while ago I’ve created Righthand.DataSet.Visualizer, an advanced DataSet visualizer. Today I’ve added support for displaying a single table as well. It wasn’t a big deal but I […]
Using XtraChart ASP.NET control in an ASP.NET MVC project
The problem These days I am building an ASP.NET MVC project that requires charting. The problem is that there are no native ASP.NET MVC charting controls out there. […]