A world for a stage
"In other words, it's like setting the scene for a play rather than recreating the world as it is. If you don't tell people they should be making a stage, they go ahead and try to make an entire world. There is an art to how you properly set a stage and that's what I had to carefully explain."
Twittering
Having had a similar reaction to twittering as Mr Hicks, I decided to start writing a post on social networks and relationships management only to find that others have already done so.
This is what happens when you don't keep up with the blogosphere…
A little bit of SEO
Whilst I wouldn't say I am the most active seeker of traffic, I have to confess that there is a certain pleasure in seeing traffic flow in. Hence, when a thread on unusual search phrases popped up on the 9rules forum, it brought to mind the topic of Search Engine Optimisation.
Fellow 9ruler Neil Patel, who did some SEO work for me recently, has a number of posts covering the subject 1 but as he'll point out, many of important things you could do to your site to aid SERP ranking are also sensible and common-sense.
Using semantic markup, dynamic meta tags, usable title names, pretty permalinks, alt and title tags; as well as aiding SE discoverability, it's comforting to observe that, just as importantly, they all have the side effect of improving usability2.
There are downsides to SEO however. Finding out your highest commented posts aren't your more serious pieces but are instead less important pieces such as this one on MGS 4 and Yahoo Passwords can be a bit deflating3.
- Worth subscribing to if you're interested in SEO or online marketing [back]
- Or is that backwards? Is SEO a side-effect of optimising and improving usability for users? [back]
- Though, I'll admit, that MGS comment thread kept me hooked for ages. [back]
CSSEdit 2 review
One of the characteristics of serious developers is the importance that they attach to their tools and working environment. When you're spending a significant amount of time each day developing, it's natural that you'll want that experience to be as comfortable as possible1.
It's for this reason that it isn't surprising that we build up a large amount of brand loyalty to our favoured tools2. The knowledge capital investment that goes into using these tools means that we're significantly more productive using them than without. To be more scientific, things just "feel right" when using our preferred tools3.
That said, being serious about our jobs, we're willing to explore and take a look at what else is out there and occasionally we uncover gems that allow us to put down our own polished treasures. One such gem is MacRabbit's CSS Edit, a new version of which was released earlier this month.
Enter CSS Edit
The idea of a "CSS editor" is a strange one; surely, a general text editor ala Textmate or Editplus would be enough. But to apply such blanket dismissals would be to say that a hammer is the only tool that you'll need. Far from being a limiting or marketing feature, by focusing on a specific application, CSSEdit turns into a must-have tool in a developer's toolkit.
Live previews
- Edit
- Save
- Upload
- Refresh
- Rinse
- Repeat
This particular workflow is all too familiar to web developers. Automatic FTP uploads (cf. Transmit) or working on local files can help mitigate the process by getting rid of task 3, but a fair amount of a developers day does seem to be taken up by mechanical processing.
Hence, CSSEdit's live preview is a wonderful boon. If you've used the live-editing feature of Chris Pederick's excellent web developer FF extension, you'll have some idea of the usefulness of the feature.

Make a small change to the colour of hyperlinks in your css file4; this is instantly reflected in the preview window. The preview window uses Webkit as it's underlying rendering engine so you're seeing how the page will look in Safari.
Even better is that you can use your css file as an override for any file/url. This is easy to overlook so I'll say it again. You can override or edit the css for any page without making changes to that given page's markup.

Want to edit your WP theme's css but don't want to make a local/temp copy? All you have to do is click the "Add URL" and "Style Sheets" buttons. You can even pull down a copy of the active CSS stylesheets for that url into your workspace and start working off that. You can see how your CSS looks across all your pages (home page, comments page, blog posts, etc) without writing out markup for each of those pages.
Note that this isn't WYSIWYG but WYSIWYW. You're still in control as you're editing your css file by hand but some of the unnecessary roadblocks are removed.
X-Ray
Even if you use semantic classnames, and logical markup, there are times where you want to check how a particular element is marked up. Instead of viewing the source, you can just click on the X-Ray button and then click on the element that you want to inspect.

Once again, this isn't groundbreakingly new (for example, the FF users with the Firebug extension will be used to this feature as will Xylescope users) but it's refreshing to see it built in. It's yet another testament to the benefit of a focused app.
Rules pane
By focusing purely on editing CSS, CSSEdit is able to add organisational enhancement aimed at making life easier. One simple but important example of one is the styles pane. This provides a convenient grouped index of your CSS rules.

Rather handily, the items representing each of these rules visually represent what the rules look like (e.g. colour, background, type) making it easy to look for and access a particular definition. In addition, you can use the search-box as a filter to make looking for that elusive class that much easier.
Milestones
Every developer will know the benefit of versioning. The ability to "rollback" to a given stable version is an important life-saver to anyone working with code. CSSEdit introduces milestones, which you can use to represent saved states.

It's rather like Photoshop's snapshot system by giving you piece of mind unobtrusively and without difficulty. Now you can proceed to experiment without fear of breaking or losing that working version5.
Closing off
Rather than go through all the features, I've just given a tour through some of the ones which I think are particularly handy. There's also your usual editor features such as code formatting and intellisense but what I like about the app is that it does one job, namely edit css, but does it extremely well. It's not perfect and there are some things that I miss (code folding is one) or have no need for (for example, the properties pane and css validation features are all but unused) but all in all, I love it.
The greatest praise that I have for it is that whilst I'd still use Textmate as my general purpose editor, CSS Edit is now my editor of choice when it comes to CSS. Now if only it would let me choose a dark background colour for the code pane…
On an aside
With the advent of "sponsored posts" that are cropping up all over the blogosphere, I will just point out that this post has no affiliation or connection with MacRabbit, CSSEdit or any other party. These are just the words of a happy customer; the fact that it seems so positive is because I like it. No hidden agenda here.
It's annoying and disappointing that I even have to consider writing such an anti-disclaimer; the most damaging aspect of these so-called paid reviews is that they add noise and doubt so as to harm legitimate reviews.
- This, of course, isn't unique to developing but is common to any activity or job that you do frequently. Someone commuting daily or playing sports professionally has different demands from those who only do so sporadically or as part of their hobby. Comfort, reliability, familiarity are all concerns which you may be willing to sacrifice when you're only semi-serious but not when it's crucial to your working life. [back]
- Which also helps to explain why "versus" threads/posts (cf. vi vs emacs, Mac vs PC, FF vs Safari etc…) are always cauldrons for fiery discussions. [back]
- Flamebait notwithstanding, this is probably one of the significant factors behind the large fanbase that vi and emacs still command. [back]
- By working of your css file and not a 'temporary css session' as found in the web developer extension, you remove the hackiness nature/temptation. [back]
- This isn't an excuse however to not use a real source control system to manage your code. I personally recommend Subversion but anything that isn't the abomination that is MS Visual SourceSafe will do. [back]
Mephisto Simpla theme
Justin informed me earlier this week that Mephisto, the RoR blogging system which he and Rick have lovingly crafted, has just had a new release and is now using a Liquid powered Simpla as it's default theme.
I'm a bit late in posting this but great work guys.
Irregularity
If you were to take a random sample of successful blogs, you will find that, irrespective of their subject matter, country of origin or background, they are all likely to share a number of common characteristics. Good writing is easy enough to identify; whether it's biting analysis, insightful discussion or just sheer wit, content is very much king. Other characteristics that would probably lay on this list would be the blogger themselves, whether it's their personalities, depth of knowledge or background as would the topics that are being discussed.
Yet, whilst the writing and the writer are by far the most significant factors, what is often overlooked is that the regularity of the posts themselves is of substantial import. Whilst quantity rarely makes up for quality, all the blogs that I read have a(n approximate) consistent posting pattern1. Without trying to sound too tautological, a predictable routine results in regular reads; expectation is a useful tool in hooking readers. Imagine the impact of a missed publication of a daily newspaper or the Olympic games being delayed by a 6 months or so. Or to continue to stretch the realms of believability, what if you couldn't rely on their regularity? Suffice to say, their popularity would suffer somewhat.

So if a regular posting pattern is so important, how do I explain my utter failure at adhering to my own advice?
Procrastination defined
Despite all the evidence to the contrary, I enjoy blogging. I enjoy writing and enjoy having a platform to talk from. And yet, my last few main posts are about or have accompanied site redesigns rather than being more interesting fare.
The problem is that when it comes to blogging, the decision involves more than deciding what to write (about). As with all things in life2, there's a cost as you have to weigh up what the benefits of writing that blog entry are against what you're giving up to do so. The time it takes to write that post on "Why Google bought YouTube" is time that could have been spent on development, watching a movie, spending time with family and friends or rather amusingly, reading someone else' blog post.
It's partly for this reason why I find "services" such as PayPerPost so unconvincing. Why would you want to give up your valuable time, not to mention your credibility, for a meagre 10 dollars?
Getting back on track
What makes procrastination so tempting is the way I write posts. I probably spend far longer on blog posts than many; I admire people who write off-the-cuff as it were but my style is more deliberate. The other factor is that I write as much for myself as for anyone else. That this blog is read by others is a nice side effect but, strictly speaking, not the main driver. The problem is that often, I would start writing a post on a topic, gathering up information and evidence for and against a given point, writing the introduction, bits of the middle and the end and then, having been satisfied with the process, leave it there. Definite room for improvement there.
Heading forward
One possible solution may be to tie your hands. Making a public commitment, that is removing options or at least removing some of the incentives, can make decisions easier. So here's mine; I'm going to write at least on a bimonthly basis. I'll try to aim to better that but at the least, there'll be a post every two weeks.
Let's see how this plays out…
- Note that I used the word consistency. Different blogs succeed with widely different posting patterns. Some like 37SvN and Kottke manage to deliver on a daily basis whilst others have a less vigorous routine. What's important is a predictable pattern and not the specifics of the pattern itself, though there would be a strong correlation between post frequency and readership. [back]
- As Netscape found out, simply being on the internet doesn't make you magically exempt. [back]
