Many Niches

Jack of All Trades, Master of Some

The Hanselman Effect

October 22nd, 2009 by Brandon Watson
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace ScottHanselman
{
    public class HanselmanEffect
    {
        public int twitterClicks {get; set;}

        public HanselmanEffect(int minutesSinceTweet)
        {
            twitterClicks = 50;

            if (minutesSinceTweet >= 10)
            {
                minutesSinceTweet = 10;
            }

            Console.WriteLine("You should have {0} clicks",
                _(twitterClicks*minutesSinceTweet));

        }
    }
}

 

For the nerds out there. :)   Yes, there should be some form of degradation on this function, but you get the idea.

Posted in Developers

blog comments powered by Disqus

 
© 2009 Many Niches Powered by Wordpress