Website Optimization Measures, Part I
Post from February 10, 2008 (↻ December 14, 2020), filed under Web Development.
This and many other posts are also available as a pretty, well-behaved ebook: On Web Development. And speaking of which, here’s a short treatise just about managing the quality of websites: The Little Book of Website Quality Control.
Permanent focus on QA requires an occasional website review, not necessarily always a “redesign” or “relaunch.” This week I spent some time analyzing, refactoring, and optimizing my personal sites. I thought to share a few things for inspiration and discussion:
-
Removing irrelevant posts. I did indeed browse this blog for irrelevant posts—and found a lot. While some might consider deleting posts “taboo,” I do not, if the posts in question decrease the average post quality. I accept that not every post needs makes it #1 on Digg, but admittedly, some entries looked like I just babbled in order to say something. The removal measure made maintenance a little easier (apart from the fact that I will need to remove a few redirects later). It didn’t affect many comments; few people commented on those posts, unsurprisingly. There’s no downside removing irrelevant stuff really, not even in blogs.
-
Editing and removing comments. Some might consider this another taboo but it has a few very good reasons, too, some of them mentioned in the new comment guidelines. The most important reason was spam, and my tolerant approach to comments that avoids both moderation,
nofollow
, and stuff just bears a larger risk of getting spammed without noticing (that despite I check everything Akismet does and what gets published). So I went through all comments, removed some, edited or “neutralized” others. While this measure meant a lot of work it increased this blog’s overall quality, too, and decreased the likelihood of getting “penalized.” It benefits all commenters in that it emphasizes and strengthens everyone’s contributions. -
Cleaning up the folder structure for “auxiliary” files. For style sheets, scripts, images, and stuff I personally used to use a folder structure like “/bin/css”, “/bin/js”, and “/img”. Not anymore. The mentioned structure has been inspired by UNIX but doesn’t make real sense, and it doesn’t scale very well, either. So I changed the architecture to
- /media
- /setup
- /css
- /js
And while this appears to be much better than the former type of organization, I’ll observe how it really behaves—so far, it works and scales great. “/media” is not just for images and thus gives me the flexibility to throw in videos as well (something I didn’t really do before, not in my private projects), and “/setup” looked like a short name that would roughly legitimate hosting style sheets and the like. Anyway, if there’s something better, I’ll revise it again. Unless cost of problem gets too low, that is.
-
Revising use of
rel="alternate"
. I used to addlink rel="alternate"
elements in thehead
section of some documents to point to alternative versions (mostly translations) of the corresponding page. I dropped this, not due to eventual SEO advantages but due to maintainability reasons. Addingrel="alternate"
only to hyperlinks pointing to alternative versions now needs to suffice. -
Replacing Google and Yahoo verification
meta
elements by HTML equivalents. Using both Google Webmaster Tools and Yahoo Site Explorer I once decided to use themeta
element verification way in order to avoid additional stuff in the corresponding project roots. However, I noticed this had a downside, namely forcing homepage visitors to download these, for them useless, elements. By removing themeta
elements and verifying sites with the alternative HTML documents file size decreased again, and that is great.
As I’ll be leaving Bremen tomorrow for a few days of home search in Zurich and my next farewell tour in Berlin, I had to hurry a little bit and keep some arguments and explanations a little short. At least four additional measures are waiting in part II, however. 😊
This is the first part of an open article series. There are ten additional articles on website optimization, part II, part III, part IV, part V, part VI, part VII, part VIII, part IX, part X, and part XI.
About Me

I’m Jens Oliver Meiert, and I’m a web developer and author. I love trying things (including philosophy, art, and adventure). Here on meiert.com I share some of my views and experiences.
If you have a question or suggestion about what I write, please leave a comment (if available) or a message.
Comments (Closed)
-
On February 12, 2008, 16:47 CET, Stefan Nitzsche said:
From my point of view, it makes sense to think about a blog post before you publish it, and not with hindsight. I think that users don’t like to comment on posts that will be possibly edited or deleted during a “blog review“. And much more important: I would never touch a comment, because the writer meant it the way he wrote it. My changes would only affect the typographical, grammatical and orthographical correctness.
Live with your past babble and look forward to make it better. 😊
-
On February 14, 2008, 22:41 CET, Jens Oliver Meiert said:
Thank you, Stefan, I guess you point out a few things other readers might wonder about as well:
From my point of view, it makes sense to think about a blog post before you publish it, and not with hindsight.
Of course. Alas, mistakes occur, and to quote Confucius: “A man who has committed a mistake and doesn’t correct it, is committing another mistake.”
I think that users don’t like to comment on posts that will be possibly edited or deleted during a “blog review“.
Maybe I didn’t make myself clear about that: Unless comments are “spammy” (or violate the comment guidelines), no comment gets edited or removed. I absolutely understand concerns about this measure, but it is supposed to benefit all people involved. (It won’t happen often, either.)
And much more important: I would never touch a comment, because the writer meant it the way he wrote it.
Neither spam nor offensive comments? (The latter didn’t appear in my blog yet, but I wouldn’t tolerate them.)
-
On November 3, 2008, 21:11 CET, Santhos said:
I just came in on part V and decided to start with part 1. Great serie of articles with finally not such a common approach to web optimization. You’re digging a little deeper then what I come across most of the time.
Folder structure is a good one. I do not always use the same map structure and that sucks… Especially when I sometimes copy and paste some stuff and find out half an hour later that some path is incorrect… 😉
Read More
Have a look at the most popular posts, possibly including:

Perhaps my most relevant book: CSS Optimization Basics (2018). Writing CSS is a craft. As craftspeople we strive to write high quality CSS. In CSS Optimization Basics I lay out some of the most important aspects of such CSS. (Also available in a bundle with Upgrade Your HTML and The Web Development Glossary.)
Looking for a way to comment? Comments have been disabled, unfortunately.