sirrocco

Stories submitted by sirrocco

Solr 0.2.3-beta 1(bugsquash.blogspot.com)

submitted by sirroccosirrocco(800) 2 years, 6 months ago

Solr .NET client. Solr is an open source enterprise search server based on the Lucene Java search library, with XML/HTTP and JSON APIs, hit highlighting, faceted search, caching, replication, a web administration interface and many more features. read more...

add a comment |category: |Views: 15

tags: another

How b-tree database indexes work and how to tell if they are efficient(mattfleming.com)

submitted by sirroccosirrocco(800) 2 years, 10 months ago

A team member thought we should add an index on a 90 million row table to improve performance. The field on which he wanted to create this index had only four possible values. To which I replied that an index on a low cardinality field wasn't really going to help anything. My boss then asked me why wouldn't it help? I sputtered around for a response but ended up telling him that I'd get back to him with a reasonable explanation. read more...

add a comment |category: |Views: 23

tags: another

Custom Combo Box with colors and text(alinberce.wordpress.com)

submitted by sirroccosirrocco(800) 3 years ago

Code and video for creating a custom ComboBox with a colored rectangle and text read more...

add a comment |category: |Views: 30

tags: another

Using Memoization to speed up recursive functions(weblogs.asp.net)

submitted by sirroccosirrocco(800) 3 years, 3 months ago

A great discussion on using memoization to more efficiently recurse over a sequence like Fibonacci where you can otherwise end up doing the same calculations multiple times... read more...

add a comment |category: |Views: 16

tags: another

Chad Myers and Jeremy Miller on FubuMVC(herdingcode.com)

submitted by sirroccosirrocco(800) 3 years, 4 months ago

# What is FubuMVC? # History of the project # Built to take advantage of static typing .... read more...

add a comment |category: |Views: 305

tags: another

Experimental study about Test Driven Development(channel9.msdn.com)

submitted by sirroccosirrocco(800) 3 years, 5 months ago

We talk with him about Test Driven Development: Does it work better? How better? What's the catch? To answer these questions, Nachi talks about a study done over multiple teams within and outside of Microsoft on TDD. The results are very interesting, as they are based on real teams with real products, so I definitely encourage you to watch the video or download the paper to grok the numbers in details. read more...

add a comment |category: |Views: 23

tags: another

Using Lucene .Net to index and search website content(akcedo.com)

submitted by sirroccosirrocco(800) 3 years, 6 months ago

An elegant solution for adding content indexing and search in a .Net application. read more...

add a comment |category: |Views: 237

tags: another

How to debug an obscure IIS error(hanselman.com)

submitted by sirroccosirrocco(800) 3 years, 6 months ago

ScottHa shows how you can get to the bottom of a clear (as mud) problem when starting IIS using Process Monitor and Process Explorer and a little bit of intuition. read more...

add a comment |category: |Views: 39

tags: another

Dependency injection with Castle Windsor: Video(gojko.net)

submitted by sirroccosirrocco(800) 3 years, 6 months ago

Here’s the video from the talk on dependency injection with Castle Windsor that Mike Hadlow and Gojko Adzic did last month at Skills Matter. read more...

add a comment |category: |Views: 188

tags: another

NHibernate optimization avoid unnecessary select queries(akcedo.com)

submitted by sirroccosirrocco(800) 3 years, 8 months ago

Left outer join is sometimes your friend in NHibernate read more...

add a comment |category: |Views: 140

tags: another

Use objects insted of primitives as method parameters(akcedo.com)

submitted by sirroccosirrocco(800) 3 years, 8 months ago

Don't send entity id's in method calls because sooner or later they will have to do unnecessary calls to the database. Instead, use objects which have a conceptual meaning in that message read more...

add a comment |category: |Views: 15

tags: another

Dojo Toolkit Series(ghidinelli.com)

submitted by sirroccosirrocco(800) 3 years, 8 months ago

A starting point on using the DojoToolkit. read more...

add a comment |category: |Views: 13

tags: another

StackOverflow(stackoverflow.com)

submitted by sirroccosirrocco(800) 3 years, 8 months ago

StackOverflow - - is in public beta. read more...

3 comments |category: |Views: 439

tags: another

ActionFilterAttribute Examples for ASP.NET MVC Framework Preview 2(davidhayden.com)

submitted by sirroccosirrocco(800) 4 years, 2 months ago

As the name ActionFilterAttribute implies, this is a way to perhaps filter incoming requests to a Controller Action in the ASP.NET MVC Framework. read more...

3 comments |category: |Views: 28

tags: another

Add automatic updates to your application(codeproject.com)

submitted by sirroccosirrocco(800) 4 years, 6 months ago

Automatic updates system for client-side, distributed applications. read more...

4 comments |category: |Views: 82

tags: another

ASP.NET MVC - some source code(hanselman.com)

submitted by sirroccosirrocco(800) 4 years, 6 months ago

Some early MVC Demos Source Code from ScottHa :) read more...

2 comments |category: |Views: 5

tags: another