def filename
  self.uri.split('/').last
...

C# Get the Filename segment o...

by jwmittag, January 01, 2008 15:04, 11 refactorings, tagged with Comparison, Scott Porad, asp.net, DotNET, .net, C-Sharp, CSharp, C#, RoR, Ruby on Rails, rails, ruby

On his Blog "Progress vs. P...

89f45d140c5d9b14fd63720ea8b0cb47 Talk
public List<double> GenerateLogNormalDistribution(int numberOfTimes, double mean, double standardDeviation)
{
    Random randomGenerator = new Random();
...

C# Lognormal Distribution

by Jonathan, January 26, 2008 02:07, 1 refactoring, tagged with C#, Lognormal distribution, Finance

Is there a better way to do...

55502f40dc8b7c769880b10874abc9d0 Talk
private string CodiceControllo(string codice_fiscale)
{
	int somma = 0;
...

C# Code to Simplify

by Squall77it, December 19, 2007 16:26, 6 refactorings

Hi, I am new on c#...
ther...

6ea4797d26c05b3d44e49b989f1a393c Talk
using System;

namespace FizzBuzz
...

C# I hate to do this, but...

by nibbles&bits, October 24, 2007 15:13, 12 refactorings

Let the battle begin!

326e4b379fafa37c9483d6f8e8eb9826 Talk
static class SqlExec
    {
        public static void ExecCommandBatch(System.Data.Common.DbConnection conn, System.Data.IsolationLevel isolation, ExceptionFailSafeEventHandler<System.Exception> failSafe, params System.Data.Common.DbCommand[] cmds)
...

C# ExecuteCommandBatch

by nibbles&bits, October 21, 2007 02:34, 1 refactoring

It's rather large, but also...

326e4b379fafa37c9483d6f8e8eb9826 Talk
public static class BusyIndicator
{
...

C# .NET BusyIndicator

by D_Guidi, September 26, 2007 23:40, 9 refactorings

Show a BusyIndicator during...

D257aa96373ab45e0ef15cfdb60efe33 Talk
while (classificator.Clients.Count > 0)
{
	Client client = ServiceHelper<Client>.GetFirst(classificator.Clients);
...

C# How to add gracefully undo ...

by Darius Damalakas, September 27, 2007 02:42, 2 refactorings

.Net, C#

The code below ...

C63d2d886af30dbea99a341467ac116d Talk