criosray

Stories kicked by criosray

A series of articles on F#(blogs.msdn.com)

submitted by criosraycriosray(10) 2 years, 8 months ago

Quite remarkable series of articles on F# by Luca Bolognese. * Part I - Workers and ParallelWorkers * Part II - Agents and control messages * Part III - Default error management * Part IV - Custom error management * Part V - Timeout management * Part VI - Hot swapping of code * Part VII - An auction framework * Part VIII – Implementing MapReduce (user model) read more...

add a comment |category: |Views: 6

tags: another

AI: Population based Incremental Learning in C# and .NET(c-sharpcorner.com)

submitted by maheshchamaheshcha(1620) 2 years, 8 months ago

In this article I would like to discuss another offshoot of the genetic algorithm called Population Based Incremental Learning (PBIL). read more...

add a comment |category: |Views: 423

tags: another

Fun With Method Missing and C# 4.0(haacked.com)

submitted by developmentalmadnessdevelopmentalmadness(730) 2 years, 8 months ago

Ruby has a neat feature that allows you to hook into method calls for which the method is not defined. In such cases, Ruby will call a method on your class named method_missing. I showed an example of this using IronRuby a while back when I wrote about monkey patching CLR objects. Typically, this sort of wild chicanery is safely contained within the world of those wild and crazy dynamic language aficionados, far away from the peaceful waters of those who prefer statically typed languages. Until now suckas! (cue heart pounding rock music with a fast beat) read more...

1 comment |category: |Views: 356

tags: another

Writing Great Unit Tests: Best and Worst Practises(blog.codeville.net)

submitted by desmonddesmond(2014) 2 years, 9 months ago

A suite of good unit tests is immensely valuable: it documents your design, and makes it easier to refactor and expand your code while retaining a clear overview of each component’s behaviour. However, a suite of *bad* unit tests is immensely painful: it doesn’t prove anything clearly, and can severely inhibit your ability to refactor or alter your code in any way. How can you be sure to write unit tests that contribute positively to your project and don't end up being a liability? read more...

add a comment |category: |Views: 651

tags: another

12 Must Have Web Developer Bookmarklets(elijahmanor.com)

submitted by elijahmanorelijahmanor(1448) 2 years, 9 months ago

Here is a great set of 12 bookmarklets that are useful for any web developer on any web browser! read more...

1 comment |category: |Views: 886

tags: another

Generic Types and Inheritance(west-wind.com)

submitted by rstrahlrstrahl(7226) 2 years, 9 months ago

Although I use Generics extensively, every once in a while it still throws me for a loop when dealing with complex generic parameters and inheritance. In this post I talk about a compilation error I ran into when trying to inherit a generic type including its generic parameters and a way to get around this particular issue. read more...

add a comment |category: |Views: 278

tags: another

C# lambda and foreach variable(resnikb.wordpress.com)

submitted by resnikbresnikb(110) 2 years, 9 months ago

Surprising behavior of lambdas read more...

4 comments |category: |Views: 647

tags: another