Matt / June 25, 2008, 12:32 pm
Khoi Vinh on getting good ideas out faster by collaborating closely:
TimesPeople is the result of a tight collaboration between a small team of our technologists and designers and, for a new feature on our site, they managed to launch it in something like record time. It was actually a lot of fun bringing it to life, but the really important thing is the try-it-and-see approach that drove it. Rather than spend months and millions on creating the ‘perfect’ social networking addition to our site, we decided to take a good idea and get it out as quickly as possible. It’s certainly not perfect, but we’re hoping to learn as much as we can about how social networking makes sense in the Times environment.
From “People Wanted” (subtraction.com)
Matt / April 23, 2008, 9:42 am
From Khoi Vinh’s ongoing Q&A session:
Over the past two-plus years, as The Times newsroom has embraced blogging with tremendous alacrity, we’ve created over 150 blogs, and over a third of those remain active today.
The challenge is even more complex when you consider that, though each blog has its own needs, the vast majority must be based on a single template (within WordPress, our Web log publishing system) that manages all of the blogs together. As you can imagine, that requires that the template be very versatile and that our designers be very nimble.
So by virtue of the fact that we’re constantly launching new blogs, we’re also in a perpetual state of revision and refinement. We’re fine-tuning the typography, adding new features to the right-hand column, incorporating new kinds of media content into the articles, etc. All of which is work that may then be reflected back on the other blogs.
I find this really remarkable. I can’t help but wonder how difficult it was to get stakeholders to agree to the constraints of a single Wordpress template. By standardizing the blog creation process, they now have an agile publishing system that imposes creative constraints but has been able to grow rapidly with nytimes.com.
Imagine being the guy in charge of maintaining these blogs though.
Nathan / April 14, 2008, 4:12 pm
At the end of last week Phusion, a Netherlands based IT company, launched the Passenger gem, which acts as a mod_rails for Apache. Without going into the technical details, this is as close as Rails has come to having an ‘ftp files to the server and it works’ deployment method. With deployment being one of the steepest learning curves in the Rails world, this announcement could potentially be huge.
So what does this mean for developers who have been using Rails for several years and those who have yet to pick it up? Many Rails developers, who have seen the progression from CGI to FastCGI to Mongrel, Mongrel Cluster, Thin, etc, have been forced to learn a good amount about unix, apache, nginx, monitoring servers, watching processes, etc. Unix command line skills have gone hand in hand with Rails development up to this point. In fact, entire businesses such as Rails Machine, Engine Yard, Planet Argon, etc. are built around the fact that Rails is hard for the average person to deploy (not to mention great open source tools like capistrano, vlad and mongrel itself).
Is this the beginning of a new era for Rails where the last barrier to entry has been removed? It will be interesting to see what kind of effect this has on the current Rails community as real-world data becomes available.
Nathan / April 14, 2008, 3:48 pm
I spent most of this past weekend working through Michael J. Mangino’s book “Developing Facebook Platform Applications with Rails“(DFPAWR) from the Pragmatic Programmers. I’ve been interested in the facebook platform for awhile but the resources have mostly fallen into two categories: 1) Overly simple Hello World programs in PHP or 2) Exhaustive api references.
DFPAWR, which is still in Beta, walks the reader through creating a full application from start to finish using Chad Fowler’s excellent Facebooker library for Rails. While this is definietly a Rails-centric book, the author provides the underlying FBML code first and then explains how to achieve the same effect using the simplified syntax of the Facebooker library.
It should be noted that the book assumes a strong understanding of the Rails framework. However, this assumption is one of the book’s biggest strengths. DFPAWR is a perfect example of how fast author and reader can hit the ground running when they already speak the same language. Michael Mangino clearly knows his subject matter and readily points out many of the common pitfalls, security concerns, and Facebook terms of use issues (i.e. you can’t store a username in a local database) that those new to the platform would have to stumble through themselves.
It’s a great resource for Rails developers looking to get started on Facebook apps, and with mod_rails on the way it’s never been easier.
Caleb / April 7, 2008, 5:31 pm
While perusing the ever important osflash.org in preparation for some upcoming flash work, I came across some really great open source flash projects I thought might be interesting to some.
- movie masher
Facilitates easy navigation of video, audio and image assets as well as effects, transitions and themes. Media can simply be dragged into the timeline for inclusion in a mash.
- swf address
A small, but powerful library that provides deep linking for Flash and Ajax
- ajax animator
Ajax Animator is a free open source web based flash ide designed for simplicity and community effort.
The only issue I have with osflash is that a lot of the projects are out-dated and not removed or tagged as being so, and it can become difficult to figure out if it is still applicable.
Matt / March 19, 2008, 11:59 am
Safari 3.1 (released yesterday) offers support for some new HTML & CSS features. There’s a demo on MacRumors.
One of the most exciting, I think, is downloadable font support — you can link to actual font files from the CSS instead of having to use the common “web safe” fonts.
All of these features are just eye candy until Firefox and IE support it, but it offers a little glimpse into the future of web design & development.
Matt / March 13, 2008, 8:11 am
An Opera developer writes up a comprehensive overview of the state of the mobile web design industry. Let me summarize, since it’s a long article:
- The iPhone is one slice of a much larger mobile market
- Mobile browsers are divided into two categories: full-featured (Opera Mobile and Safari) and constrained (WinWAP, Pocket IE, Blazer)
- Javascript support on mobile devices is uneven, always provide a fallback
- Design for 240 x 320; assume you’ll have a limited color palette to use and limited control over typography
- Plan for two distinct user experiences: Don’t ever assume that your web-based user experience will be the same on a mobile device
- Build one site that degrades well on mobile devices instead of building a second website just for mobile users
- Make use of the “handheld” media type for CSS
Nathan / March 11, 2008, 3:37 pm
According to the site: God is an easy to configure, easy to extend monitoring framework written in Ruby.
While god is mainly intended for monitoring mongrels it is also a great way to keep an eye on apache itself. Below is our config for watching apache.
%w{80}.each do |port|
God.watch do |w|
w.name = "apache"
w.interval = 30.seconds # default
w.start = "apachectl start"
w.stop = "apachectl stop"
w.restart = "apachectl restart"
w.start_grace = 10.seconds
w.restart_grace = 10.seconds
w.start_if do |start|
start.condition(:process_running) do |c|
c.interval = 5.seconds
c.running = false
end
end
end
end
The code is pretty self-explanatory. We’re just looking to make sure apache is up every 5 seconds.
After gem installing god, save the configuration file anywhere you want and kick if off with this command:
god -c /path/to/your_conf.god
That’s it. To test, kill apache and in less than 5 seconds it will be back up and running.
Caleb / March 11, 2008, 8:36 am
I’ve recently stopped using javascript to do rollovers when reasonable. It’s much nicer because you don’t have to write onmouseover or onmouseout events, and it works without javascript. It’s also prevents a weird ‘blink’ (especially in IE) when rolling over if the image isn’t loaded in cache.
The trick is to create one image that has both states and assign the background-position of the hover state.
Using the following image and css, you don’t have to worry about javascript.

a.seeMore {
background: #dce1e4
url(/images/icons/arrowFull.gif)
no-repeat top right;
}
a.seeMore:hover {
background-color:#4f5a62;
background-position:right -18px;
}
Matt / January 24, 2008, 12:22 pm
This looks like a good one to add to your RSS reader.
The CMS Myth strongly believes in the power of web CMS to be a key enabler for achieving online success. We recommend and deliver web CMS systems every day. Done right, a web CMS can be the nucleus of your web strategy and lift up all of your online marketing initiatives.
Yet for every “market leading” CMS, for every brilliant online strategy and web application, there’s a misguided effort or an ill-conceived approach ready to derail your web initiative. The goal of The CMS Myth is to help you avoid those landmines.
A couple of recent posts from their blog:
Found via InfoDesign