Kwebble : Blog

Archief van december 2004

  • Alleen de advertenties van Google

    Gepubliceerd op 30 december 2004 in Links.

    Je kunt bij Google zoeken naar de gesponsorde links voor de woorden die je ingetikt hebt.

  • The World as a Blog

    Gepubliceerd op 28 december 2004 in Artikelen.

    It’s addictive to watch The World as a Blog, where you can see new posts on weblogs pop up all over the world, almost in realtime.

    The software behind the site, called worldKit is based on Flash and freely available for personal or non-commercial use. Might be fun to play with.

  • My linklog now comes from del.icio.us

    Gepubliceerd op 26 december 2004 in Artikelen.

    I switched over from Bloglines to del.icio.us to store the links that appear on the linklog. The linklog only contains links to existing pages, so there’s no necessity to maintain a complete weblog with articles as I did on Bloglines.

    The purpose of the linklog is to make a list of links, and using del.icio.us is ideal for this. With it I also get the benefit of the tagging system, and my links and tags become part of the whole del.icio.us community. You can find me on del.icio.us at http://del.icio.us/kwebble.

    The changes to the script to show the links from del.icio.us are small:

    require_once('rss_fetch.inc');
    $rss = fetch_rss('http://del.icio.us/rss/kwebble');
    echo "<ul>n";
    foreach ($rss->items as $item){
    	echo '<li><a href="' . $item[link] . '">' . $item[title] . "</a></li>n";
    }
    echo "</ul>n";
    
  • A dutch part of Kwebble

    Gepubliceerd op 22 december 2004 in Artikelen.

    The site has been extended with a dutch section, called Ontwikkelingen (Developments). It’s not a translated version of these articles, but a place to put articles specific to Holland.

  • Ontwikkelingen 2.0

    Gepubliceerd op 22 december 2004 in Artikelen.

    Welkom bij de nieuwe versie van Ontwikkelingen. Na een periode van stilte heb ik de site verplaatst en pak ik de draad weer op.

  • My first comment

    Gepubliceerd op 18 december 2004 in Artikelen.

    A new milestone for this site. Yesterday I got my first real comment, not counting family.

    • kwebble
  • Building a linklog with Bloglines

    Gepubliceerd op 11 december 2004 in Programming. 1 reactie

    There’s a new part on the site, a list of links or linklog that contains links to interesting items from the webfeeds I read. The list is not maintained on this site, but comes from Bloglines, which I use as my reader for webfeeds. Here’s how I did that:

    The links are stored using the blog on Bloglines that comes with an account. I activated my blog and created Kwebble’s linklog. On Bloglines you can post to the blog direct from the reading page by using the Clip/Blog This link. This makes collecting items from several webfeeds very easy.

    The next step is to get the data here on Kwebble.com. The input from Bloglines that can be used for this is the webfeed for the blog. With the freely available MagpieRSS using this webfeed is easy. MagpieRSS can retrieve the webfeed, cache it and parse it’s contents. These few lines of PHP add the items to this page:

    require_once('rss_fetch.inc');
    $rss = fetch_rss('http://www.bloglines.com/blog/kwebble/rss');
    echo '<ul>';
    foreach ($rss->items as $item) {
        preg_match('/.*?><a href="(.*?)".*?>(.*?)<.*?/', $item[description], $matches);
        echo '<li><a href="' . $matches[1] . '">' . $matches[2] . '</a></li>';
    }
    echo '</ul>';
    

    The regular expression gets the first link from each message. I could have used $item[description] directly but Bloglines adds some attributes to the link I don’t want.

    • bloglines
    • php
  • Google Suggest

    Gepubliceerd op 10 december 2004 in Links.

    A great new feature on Google called Google Suggest. The text field is enhanced with an auto-complete function which searches while you type your query! And it does it amazingly fast too. (Found on Kottke.org)

  • Flickr photos on the site

    Gepubliceerd op 3 december 2004 in Artikelen.

    I’ve added a column of photos to the site. They come from Flickr, where you can store, organize and share your photos online.

    I created an account, called kwebble to put my photos. Then I let the site generate a JavaScript to add to my site. This script puts the photos I’ve recently uploaded to Flickr on my own site. So now when I add a photo to Flickr it automatically shows up here.

    The only thing I miss is an alternative text for each image. Perhaps they could use the tags added to the image for that?

    • kwebble
  • Kwebble is here!

    Gepubliceerd op 1 december 2004 in Artikelen. 1 reactie

    Finally I have my own place on the web, available at kwebble.com.

    At this time a search with Google, Yahoo and MSN all give only 1 result for ‘kwebble’, spread over two different pages. Two pages I have nothing to do with, by the way.
    Let’s see if I can increase that number.

    Rob Schlüter

    • kwebble
  • Rubrieken

    • Artikelen
    • Foto's
    • Links
    • Media
    • Overheid
    • Programming
  • Recente Berichten

    • Stanford Web Applications course lectures
    • The importance of knowing Unicode
    • “If you are not paying for it, you’re not the customer; you’re the product being sold.”
    • Inzage in je gegevens bij Facebook
    • Tuning Oracle UCM 11 & Site Studio performance
  • Abonneren

    • Atom feed Artikelen
    • Atom feed Reacties
  • Archief

© Rob Schlüter - Contact