Post Closed as "not a real question" by Lucas McCoy, strager, Adam Rosenfield, Daniel A. White, Rob

show/hide this revision's text 2 Remove my solution; deleted 39 characters in body

My Solution

var watch = Stopwatch.StartNew();var countRegex = new Regex(@"<div class=""summarycount""[^>]*>([^<]*)</div>",                          RegexOptions.Compiled);var worker = new Func<string, int>(url => {        string siteHtml;        try {            siteHtml = new WebClient().DownloadString(url + "/questions");        } catch (WebException) {            return -1;        var match = countRegex.Match(siteHtml);        return match.Success ? int.Parse(match.Groups[1].Value) : -1;    });var startUrl = "http://meta.stackexchange.com/questions/4";var startHtml = new WebClient().DownloadString(startUrl);var jobs = Regex.Matches(startHtml,                         @"<a href=\""(http://[^/""]*)/?\"" rel=""nofollow"">")    .Cast<Match>()    .Select(match => match.Groups[1].Value)    .Distinct(StringComparer.InvariantCultureIgnoreCase)    .Select(site => new {Site = site,                         Async = worker.BeginInvoke(site, null, null)})    .ToList();foreach (var job in jobs) job.Async.AsyncWaitHandle.WaitOne();var results = jobs    .Select(job => new {job.Site, Count = worker.EndInvoke(job.Async)})    .OrderByDescending(result => result.Count)    .Take(20);foreach (var result in results) {    Console.WriteLine("{0,-6}{1}", result.Count, result.Site);Console.WriteLine("Processing time: " + watch.Elapsed);Processing time: 00:02:03.6133820
        
show/hide this revision's text 1 [made Community Wiki]

Code Golf: Multi-threaded HTML screen scraper/spider

The Challenge

Create a simple HTML screen scraper that finds all links to stackexchange sites on a given start page and attempts to fetch the number of questions on each site. Results should be fetched in parallel with the top 20 listed in descending order.

With all the new stack exchange sites springing up, I was wondering which ones were developing the biggest communities. So I wrote a little C# program that uses Regex, LINQ to Objects and asynchronous delegates to fetch and summarize this information based on the number of questions on each site.

I'd love to see how something like this could be implemented in a range of different languages.

My Solution

var watch = Stopwatch.StartNew();
var countRegex = new Regex(@"<div class=""summarycount""[^>]*>([^<]*)</div>",
                          RegexOptions.Compiled);
var worker = new Func<string, int>(url => {
        string siteHtml;
        try {
            siteHtml = new WebClient().DownloadString(url + "/questions");
        } catch (WebException) {
            return -1;
        }
        var match = countRegex.Match(siteHtml);
        return match.Success ? int.Parse(match.Groups[1].Value) : -1;
    });
var startUrl = "http://meta.stackexchange.com/questions/4";
var startHtml = new WebClient().DownloadString(startUrl);
var jobs = Regex.Matches(startHtml,
                         @"<a href=\""(http://[^/""]*)/?\"" rel=""nofollow"">")
    .Cast<Match>()
    .Select(match => match.Groups[1].Value)
    .Distinct(StringComparer.InvariantCultureIgnoreCase)
    .Select(site => new {Site = site,
                         Async = worker.BeginInvoke(site, null, null)})
    .ToList();
foreach (var job in jobs) job.Async.AsyncWaitHandle.WaitOne();
var results = jobs
    .Select(job => new {job.Site, Count = worker.EndInvoke(job.Async)})
    .OrderByDescending(result => result.Count)
    .Take(20);
foreach (var result in results) {
    Console.WriteLine("{0,-6}{1}", result.Count, result.Site);
}
Console.WriteLine("Processing time: " + watch.Elapsed);

Current Results

406   http://www.epicadvice.com
406   http://epicadvice.com
404   http://mathoverflow.net
326   http://answers.onstartups.com
313   http://ask.recipelabs.com
232   http://moms4mom.com
204   http://fogbugz.stackexchange.com
153   http://ask.sqlservercentral.com
128   http://smartergamer.stackexchange.com
108   http://ask.sqlteam.com
94    http://www.acurioushome.com
93    http://www.videowtf.com
91    http://know.bbhacker.com
73    http://forceclose.stackexchange.com
72    http://kiln.stackexchange.com
70    http://nullpointer.ph
67    http://uxexchange.stackexchange.com
64    http://officequestions.com
60    http://www.sharepointoverflow.com
60    http://outflopped.com
Processing time: 00:02:03.6133820