Category Archives:

Blogging

Following

twitter I joined the microblogging service Twitter about 2 weeks ago, writing a total of 60 tweets so far – this post is not supposed to be a proper (early) résumé about whether Twitter is useful or not, I’d just like to mention a few odd things:

  • A strange but funny video by LisaNova as “Twitter Whore” (part 1, part 2; just don’t remember who tweeted it, sorry via this gwup tweet).
  • Advertising twitterers were there pretty quickly: a food company (left in the mean time) and a DIY market – what’s the use of their following but one brief attention? At least they don’t throw ad messages at you – then they’d be quickly blocked (and blogged) anyway, however.
  • And there’s also offenbarung (=revelation) who tweet texts from their antique story collection – and apparently hope for re-followers who’d like to be converted if they follow many “godless” people like me. Well, apparently didn’t work out, they left again…
  • And [update:] the fake account Richard_Dawkins seems to re-follow almost everyone who’s following him, regardless of the language. Whatever that may be good for… – his real account is RichardDawkins without the “_”, though he doesn’t write himself, just representatives.

The twitter bird here is one from the free Smashing Magazine collection, by the way.

Traffic-Knüppel

Bei Stephan gefunden: Macfidelity interessiert sich für den Traffic, den ein Blog (in drei Monaten) so verursacht, und da ich auch bei all-inkl.com (Partner-Link) bin, war es auch ein leichtes, den Gesamt-Traffic aus den Usage-Statistiken abzulesen – um die Daten mt Excel etwas aufzuhübschen:

traffic

Anhand der überlagerten Besucher-Zahlen interessant zu sehen, wie unterschiedlich der Traffic pro Besucher (oder Seitenaufruf, da ist das Verhältnis ähnlich) sein kann – nicht nur abhängig vom neuen, bildlastigeren Theme, das ich seit 29. November verwende, sondern auch vom gebloggten Inhalt…

Übrigens: Wer – als all-inkl-Kunde – nicht will, dass andere die Usage-Statistiken (samt Suchbegriffen etc.) anschauen können, sollte das /usage-Verzeichnis mittels Passwort schützen (was über all-inkls KAS-Server geht).

Das Stöckchen möge nehmen, wer mag. :)

Changes

obamiconme1 Two little changes here:

Blogroll with images

I’ve seen it last year here and there, but somehow lost sight of it – Maya (eisitu) and Luigi (hartgekochtes) reminded me, and so I’ve now added screenshots made by websnapr to my blogroll. It’s actually quite simple: Register at websnapr, wait for your key and then access the images with the appropriate URL:

http://images.websnapr.com/?size=X&key=XXXXXXXXXXXX&url=http://XXX

There’s s=202×152 and t=90×70 available for the size – given how large my blogroll is, I’ve picked the 90×70 version. If you’re using standard functions, you have to add these image URLs to the links in the WP admin area; since I’m using my own theme function for the blogroll anyway, I simply could add this functionality there automatically.

Opinion? :)

Single-language posts

No more “Sorry, this post is not available in English” for posts I only wrote in German (in the future and for a couple weeks back; I didn’t reassign all the old ones) – those posts get now assigned to a special category which then is excluded in the English setting. They won’t show up in the feed nor on index and archive pages (except for category archives). They’re still included when clicking through single posts.

Frank Bültge wrote about it here for feeds, I’ve changed it accordingly:

function ag_cat_exclude($query) {
  global $langswitch_lang_pref;
  if (!$query->is_category) {
    if ($langswitch_lang_pref=="en") { $query->set('cat','-385'); } else
    if ($langswitch_lang_pref=="de") { $query->set('cat','-386'); }
  }
  return $query;
}
add_filter('pre_get_posts','ag_cat_exclude');

If you want to do it without Langswitch (the language switching plugin I’m using here), leave out those parts; 385 and 386 are my category IDs of “German only” and “English only”. Other variables besides is_category are is_single, is_page, is_archive, is_date, is_year, is_month, is_day, is_time, is_author, is_tag, is_tax, is_search, is_feed, is_comment_feed, is_trackback, is_home, is_404, is_paged, is_admin, is_attachment, is_singular, is_robots, is_posts_page. If you got any questions, just ask. :)

Links of the Week (2009/03)