C# On Line splitting optimization

by rikkus, December 13, 2009 12:16

How about a more standard w...

22e33503870d8e20493c4dd6b2f9767f Talk
1
2
3
4
public IEnumerable<IStatus> ResponseHandler(string responseText, string unused)
{
    return ResponseHandler(responseText);
...

C# On Generic Lists of Different ...

by rikkus, May 13, 2009 08:49

Implement Status.Load as yo...

22e33503870d8e20493c4dd6b2f9767f Talk
1
Subvolumes.Skip(random.Next(Subvolumes.Count)).First()

C# On Find random point inside a ...

by rikkus, May 07, 2009 15:38

The easiest way to choose a...

22e33503870d8e20493c4dd6b2f9767f Talk

C# On Method to read Network stre...

by rikkus, March 21, 2009 16:28

If you want to perform an H...

22e33503870d8e20493c4dd6b2f9767f Talk
1
2
3
4
namespace Whatever
{
    public static class FileUtils
...

C# On DirectoryInfo.CopyTo

by rikkus, November 11, 2008 20:17 Star_fullStar_fullStar_full

Here's a quick sketch of so...

22e33503870d8e20493c4dd6b2f9767f Talk

C# On Sorting by dependencies

by rikkus, November 06, 2008 11:31

The real world scenario is ...

22e33503870d8e20493c4dd6b2f9767f Talk

Ruby On xml rss feed

by rikkus, November 05, 2008 12:47

It looks like you're concat...

22e33503870d8e20493c4dd6b2f9767f Talk
1
2
3
4
foreach (var item in
    DependencySorter<int>.Sort
    (
...

C# On Sorting by dependencies

by rikkus, November 05, 2008 12:16

Simple demo program.

22e33503870d8e20493c4dd6b2f9767f Talk
1
2
3
4
public static class DependencySorter<T>
{
    public static IEnumerable<T> Sort(Dictionary<T, IEnumerable<T>> dependencies)
...

C# Sorting by dependencies

by rikkus, November 05, 2008 12:14, 3 refactorings, tagged with recursion

This code sorts a collectio...

22e33503870d8e20493c4dd6b2f9767f Talk
1
2
3
DECLARE @indexName VARCHAR(128)
...

C# On Drop all Indexes in SQL Server

by rikkus, October 07, 2008 12:13

I had to ask because often ...

22e33503870d8e20493c4dd6b2f9767f Talk

PHP On Mortgage Calculator

by rikkus, September 25, 2008 16:59

You're confusing the terms ...

22e33503870d8e20493c4dd6b2f9767f Talk

VB.NET On Remove the Evil GOTO

by rikkus, September 25, 2008 16:56

This kind of error handling...

22e33503870d8e20493c4dd6b2f9767f Talk

C# On Common StProc Code

by rikkus, April 02, 2008 16:05

To be honest I haven't look...

22e33503870d8e20493c4dd6b2f9767f Talk

C# On Common StProc Code

by rikkus, April 02, 2008 15:11

See the comments by alazela...

22e33503870d8e20493c4dd6b2f9767f Talk

C# On Common StProc Code

by rikkus, April 02, 2008 15:00

I'm not sure what the Prepa...

22e33503870d8e20493c4dd6b2f9767f Talk