Need someone to lead product management at your software company? I build high-craft software and the teams that build it. I'm looking for my next opportunity. Check out my resume and get in touch.

This is the blog of Adam Kalsey. Unusual depth and complexity. Rich, full body with a hint of nutty earthiness.

Content Management

RSS Ads in Movable Type

Freshness Warning
This blog post is over 22 years old. It's possible that the information you read below isn't current and the links no longer work.

I’ve added a short ad for my consulting services to the RSS feed for Simplelinks. The problem with putting persistant content in RSS is that many news aggregators only show an item once unless it changes.

So your persistant item has to change regularly, but not too regularly. If the same item appears in the feed every day, people may get irritated and stop reading your feed. If the item only changes once a month, then the ad won’t have much impact.

I settled on changing the ad weekly. Then I had to figure out how to have content automatically changes once a week. My plan was to have link element use a query string that would be unique each week. Using the year and the week number for the current date would work fine.

MT’s date formatting commands will let me insert the day number (the tag <$MTDate format="%j"$> inserts 177), but not the week number. I considered writing a plugin to add a week number format command to MT (and I still might), but for a quick and dirty way of doing things I turned to the Regex plugin to convert the day number into a week number.

Here’s what ended up in my template, right after the final </MTEntries> tag.

<MTAddRegex name="weeknum">          s|(\d+)|int($1/7 + .9999)|e</MTAddRegex>    <item>        <title>Kalsey Consulting Group :: Web Sites With         Business Sense</title>        <description>Simplelinks is a product of Kalsey Consulting         Group. We build Web sites that solve real business problems.         To find out how we can help your business, ask for a         free quote at <a         href="http://kalsey.com?<MTDate  format="%Y">-        <MTDate format="%j" regex="weeknum">      ">http://www.kalsey.com/</a></description>        <link>http://kalsey.com?<MTDate format="%Y">-        <MTDate format="%j" regex="weeknum"></link>    </item>

Recently Written

What branding can teach about culture
Jan 8: Culture is your company’s point of view in action—a framework guiding behavior, even in the unknown. You can’t copy it; it must reflect your unique perspective.
Think Systems, not Symptoms
Dec 15: Piecemeal process creation frustrates teams and slows work. Stop patching problems and start solving systems. Adopting a systems thinking approach helps you design processes that are efficient, aligned with goals, and truly add value.
Your Policies Aren’t Your Culture
Dec 13: Policies guide behavior, but culture is the lived norms and values of your team. Policies reflect culture -- they don’t define it. Netflix’s parental leave shift didn’t change its culture of freedom and responsibility. It clarified how to live it.
Lighten Your Process Burden
Dec 7: Everyone hates oppressive processes, but somehow we keep managing to create them.
Product Add-Ons Are An Expansion Myth
Dec 1: Add-ons can enhance your product’s appeal but won’t drive significant market growth. To expand your customer base, focus on developing standalone products.
Protecting your Product Soul when the Same Product meets New People.
Nov 23: Expand into new markets while preserving your product’s core value. Discover how to adapt and grow without losing your product’s soul.
Building the Next Big Thing: A Framework for Your Second Product
Nov 19: You need a first product sooner than you think. Here's a framework for helping you identify a winner.
A Framework for Scaling product teams
Oct 9: The people, processes, and systems that make up a product organization change radically as you go through the stages of a company. This framework will guide that scaling.

Older...

What I'm Reading