Typewire is a live-blogging service that lets you cover live events with instantaneous updates to a huge audience. It is designed to be simple to use, all you do is paste a script tag on your blog and you're ready to put on a show.
A service where I build a web prototype of your idea in two weeks using Clojure. If you have wireframes and an idea, I can build it for you at fixed cost.
Noir is a web framework built in Clojure. It is designed to allow you to write websites as quickly as possible, while allowing for maintainability as the project matures. It is built on top of Compojure, Hiccup, Jetty, and others.
I used to be a Program Manager at Microsoft on the Visual Studio team. Visual Studio is Microsoft's development tool targeted at allowing you to build most any application you can dream of. While there, I worked on the editor and later became in charge of the entire experience of using C# and VB in the IDE.
The site you're looking at, as well as my other site were both written from scratch in Min (see below). Mostly as a proof of concept that the framework was in good shape, but also because I really wanted complete control over how my sites work (how else are you supposed to do off the wall things?). The code for this site is obscenely tiny (read < 1000 lines), but manages to do most everything you would expect a full blogging platform to do. There will certainly be improvements, additions, and general modifications as we go along. I hope you enjoy the ride.
The story of min is an interesting one. It originally started out as an event-based micro framework (called trigger) for handling large websites that needed the utmost performance, while still being maintainable. In some ways, it was a reaction to what I experienced building large websites in clean. Towards the end of the last big project I did for Skookum, I realized that MVC and this new meta-paradigm I had been working with didn't accurately model websites. Instead, they were just an unnecessary abstraction. Min is much closer to the way you develop for the platform; you have a series of classes and then you have some UI that uses them. Instead of having controllers, you simply lay out your views according to the actual site structure and query your models for whatever you need. Min helps all of this by providing some structure, a new very nice to use ORM (finally, after the third time, I got it right), templating, forms and so on. The core is about 500 lines of code, with helpers bringing it up to about 3000. Amazingly enough, it does a fantastic job.
Clean is a meta-programming framework for PHP that I wrote while in college and working as a contractor for Skookum (framework #2). I think this one was the weirdest, yet coolest one. The idea behind clean was that you can essentially describe the functionality of a website and then just write the frontend for the backend functionality. This is different than the codegen that rail's style scaffolding does, though. The goal here was to evaluate this at runtime so that you could have dynamic definitions. The whole thing worked by defining a site structure in XML, where each node has functionality associated to it (i.e. there was a crud node that handled add/edit/delete of the given object). Tie this with another somewhat crazy ORM and magic happens. For an example of Clean in action checkout LordPeacock.
Redox is the first framework for PHP that I decided to build while I was working on projects for MODE as a contractor. At the time, MVC web frameworks were just starting to blow up. Rails was making its first real appearance and some of the PHP frameworks were starting to get pretty powerful. I got fed up with using these megalithic frameworks though (codeigniter is what we were using and it's 50k+ LoC before you even start writing an app, and it's the small one). So I wrote Redox. It was more than an order of magnitude faster than CodeIgniter and was a heck of a lot simpler to deal with. The biggest advantages it had were that I wrote an ORM for it and then tied it neatly into its form handling so that most of the dataflow work was handled for you. We used it for a couple of projects both at Skookum and MODE.