January 2011
16 posts
7 tags
Going parallel with .NET 4
One of the great new features of .NET 4 is the parallel task library which easily lets you turn simple for loops and foreach loops into multi-core aware tasks.
Our Examples:
For the example we are going to simply iterate over a collection of items and perform some hard work inside that collection. Our hard work could be almost any task but for simplicity we are going to treat the hard work as...
December 2010
22 posts
2 tags
3 tags
2 tags
3 tags
1 tag
Opening presents is like playing air hockey with... →
7 tags
2 tags
3 tags
2 tags
2 tags
4 tags
3 tags
2 tags
5 tags
How to filter a table with jQuery
Did you ever have a huge dataset in a table and needed a way to filter the table on the client side? Well today I was tasked with the same problem and found a simple way to accomplish it with a few lines of jQuery.
<table>
<thead>
<tr>
<th>
Id
</th>
<th>
Name
...
1 tag