10 Jul
2009

Views into CouchDB

To start off, here are the links to my previous posts about CouchDB: Relaxing on the Couch(DB) Installing the Couch(DB) PUTting the Couch(DB) in Your Living Room GETting Documents From CouchDB DELETE Documents From CouchDB Adding Attachments to a Document in CouchDB So far, we’ve mostly talked about managing documents in CouchDB. Now I want […]

Read More
10 Jul
2009

Adding Attachments to a Document in CouchDB

To start off, here are the links to my previous posts about CouchDB: Relaxing on the Couch(DB) Installing the Couch(DB) PUTting the Couch(DB) in Your Living Room GETting Documents From CouchDB DELETE Documents From CouchDB Today, I want to talk about how to create attachments for a document. Documents in CouchDB can have attachments just […]

Read More
7 Jul
2009

Fluent Context Builders

One thing I?ve been doing more and more of, especially as I use MSpec and context/spec driven development, is using lambdas and fluent-interface style programming to capture the essence of the spec?s I?m working on and keep them separate from the details of the code that implements them. What the heck does that mean? Well, […]

Read More
3 Jul
2009

WPF Multithreading: Using the BackgroundWorker and Reporting the Progress to the UI.

I can’t count the number of times someone has asked me about running a time consuming task on a separate thread, but at the same time show a progress dialog with up-to-the-second percentage updates being displayed to the user. Multithreading can be confusing at first, but if you just take it one step at a […]

Read More