joelmartinez

Stories submitted by joelmartinez

Conway's Game of Life in C#(codecube.net)

submitted by joelmartinezjoelmartinez(75) 8 months, 22 days ago

I wrote this for fun on the train a while ago, and just came across it again recently. So I figured I may as well post it. The code implements a simple game of life simulation, but the interesting bit is that it parallelizes the process using the TPL. read more...

add a comment |category: |Views: 13

tags: another

ASP.NET MVC Charts(codecube.net)

submitted by joelmartinezjoelmartinez(75) 1 year, 11 months ago

There are a few references online about how to get the new ASP.NET Charting controls working with the MVC framework. However, some of them are outdated, and the corresponding information to make it work with MVC2 are spread out. So in an effort to organize the info all in one place, here’s a quick step by step guide on how to get this working read more...

add a comment |category: |Views: 528

tags: another

Custom Transactions - C#(codecube.net)

submitted by joelmartinezjoelmartinez(75) 2 years, 3 months ago

... We needed a way to have multiple transaction scopes, each with different conditions of success or failure. I started thinking about how to accomplish this, and decided to write my own implementation which mimics the TransactionScope, but lets me control things a bit closer. So I came up with a class which can be used like this ... read more...

add a comment |category: |Views: 45

tags: another