Skip to main content

Blogging for Dollars

I've been toying with the idea of increasing how much I might get back from this little place. At times it gets down right exciting to watch my hits rise day after day, until I get writers block again and drop back to double digits for a month or so. I can't help but listen to the entrepenourial spirit in me that suggests a little more devotion and disipline on my part would push the pocket pennies to a threshold the likes of my ramen-eating self would just drool over. Hell, I could even buy two flavors of ramen.

So, I played with a few things. I naively made an attempt to jury-rig my Google Adsense snippets into my actual posts, to test what would come up in my reader. Squat, that's what. I looked around for feed-specific advertising services, and I found nothing but closed betas. I was seriously surprised at the lack of services in this area. Anyone who gets there first is going to have a serious advantage. Now, many someone is there first, so let me rephrase it as "someone who gets there first, in a noticeable way". It's enough to make a guy want a startup.

The dead-ends I've crawled back from in this pursuit must have been littered with the sweat of others out there, looking for just this sort of thing. Some places are doing in-feed advertising in-house, such as Slashdot, but the rest of us are really left hanging. Every day I look at my hits through Adsense and I really have to wonder what I'm missing. If I'm getting so many people actually making their way to my page, how many aren't even doing that much and just read it through the aggregators and never browse to the site proper?

One might suppose that the "real" hits are more important anyway. Those are the ones that really measure interest, not passive consumption. That isn't what this is about, anyway. I need some cold, hard cash.

What is everyone's opinion on the different routes? I'd like to know both what anyone thinks personally and/or what experiences you've had with the options available.
  1. What is to be done about the feeds (which are great) taking users away from our sites? Does this change the perspective of the entire web?
  2. What about our feeds being interlaced with advertising, text and banner?
  3. What reaction, if any, should the public have to paid advertising posts by bloggers and are they worth it?

Comments

metapundit.net said…
I've been watching the evolution of ads in an RSS driven world with interest. Slashdot, for instance, strips the links out of their stories now - if you're interested in a story you have to click through to slashdot in order to follow the links. I can see this in a site that's always been community based (ie - the comments are as much the deal as the news for nerds is.)

I think I actually like this model better than what they were doing previously - graphical ads embedded in the feed that sometimes dwarfed the story. Very annoying - I thought about unsubscribing for a while.

If you do pursue ads do it the google way - ads should be text based and unobtrusive. Don't ruin my reading experience! If I start seeing flash ads in my bloglines I'll unsubscribe in a heartbeat...

BTW, did you look at feedburner.com? I've never used their service but have always been under the impression that they do exactly the ads-in-feeds thing you're talking about. Maybe they're not contextual. Sure seems like the sort of thing Google would be good at, doesn't it?
Michael Foord said…
I only provide partial feeds, which means that people have to come to my site to read the full entry.

Some people argue that this actually *reduces* traffic to your site as some people won't read partial feeds.

Personally, the reason I use partial feeds is because I haven't *bothered* to put the effort into changing over... but it is an interesting debate.

I'm sure that somewhere I saw some company that would put ads into RSS feeds. Can't remember who they are though. :-)
Michael Foord said…
Feedburner offers an 'ads in RSS' service:

http://blogs.feedburner.com/feedburner/archives/001762.html

I knew I had seen it somewhere...

Popular posts from this blog

CARDIAC: The Cardboard Computer

I am just so excited about this. CARDIAC. The Cardboard Computer. How cool is that? This piece of history is amazing and better than that: it is extremely accessible. This fantastic design was built in 1969 by David Hagelbarger at Bell Labs to explain what computers were to those who would otherwise have no exposure to them. Miraculously, the CARDIAC (CARDboard Interactive Aid to Computation) was able to actually function as a slow and rudimentary computer.  One of the most fascinating aspects of this gem is that at the time of its publication the scope it was able to demonstrate was actually useful in explaining what a computer was. Could you imagine trying to explain computers today with anything close to the CARDIAC? It had 100 memory locations and only ten instructions. The memory held signed 3-digit numbers (-999 through 999) and instructions could be encoded such that the first digit was the instruction and the second two digits were the address of memory to operat...

Statement Functions

At a small suggestion in #python, I wrote up a simple module that allows the use of many python statements in places requiring statements. This post serves as the announcement and documentation. You can find the release here . The pattern is the statement's keyword appended with a single underscore, so the first, of course, is print_. The example writes 'some+text' to an IOString for a URL query string. This mostly follows what it seems the print function will be in py3k. print_("some", "text", outfile=query_iostring, sep="+", end="") An obvious second choice was to wrap if statements. They take a condition value, and expect a truth value or callback an an optional else value or callback. Values and callbacks are named if_true, cb_true, if_false, and cb_false. if_(raw_input("Continue?")=="Y", cb_true=play_game, cb_false=quit) Of course, often your else might be an error case, so raising an exception could be useful...

Announcing Feet, a Python Runner

I've been working on a problem that's bugged me for about as long as I've used Python and I want to announce my stab at a solution, finally! I've been working on the problem of "How do i get this little thing I made to my friend so they can try it out?" Python is great. Python is especially a great language to get started in, when you don't know a lot about software development, and probably don't even know a lot about computers in general. Yes, Python has a lot of options for tackling some of these distribution problems for games and apps. Py2EXE was an early option, PyInstaller is very popular now, and PyOxide is an interesting recent entry. These can be great options, but they didn't fit the kind of use case and experience that made sense to me. I'd never really been about to put my finger on it, until earlier this year: Python needs LÖVE . LÖVE, also known as "Love 2D", is a game engine that makes it super easy to build ...