-
Astronomy picture of the day feed met grote foto’s
De RSS feed van Astronomy Picture of the Day (APOD) waarop ik geabonneerd ben is er mee gestopt. Toen viel me pas op dat het niet de feed van de site zelf was, maar een versie die iemand zelf in elkaar had gezet. Nu heeft de APOD site zelf wel een feed, maar daar staan alleen kleine fotootjes in. En ik zie liever de hele foto direct in mijn feed lezer.
Daarom heb ik zelf maar een feed gemaakt met de grote foto’s.
-
Lifestreams op FriendFeed en Dipity
Omdat ik even bezig ben met wat veranderingen aan de techniek achter de site zijn de overzichtspagina en lifestream niet meer aanwezig. Als je wilt kunt je me bij FriendFeed volgen. Het ziet er niet spectaculair uit, maar het is eenvoudig op te zetten.
De feed van FriendFeed heb ik als invoer gebruikt voor Dipity om er een tijdslijn van te maken.
-
Google Alerts lezen in Google Reader
Met Google Alerts kun je een zoekopdracht bij Google bewaren en krijg je, in de loop van de tijd, e-mailtjes als er nieuwe pagina’s gevonden worden die aan die zoekopdracht voldoen. Handig om op de hoogte te blijven. Maar ik gebruik Google Reader om het nieuws te volgen en ik heb die meldingen liever daar bij dan tussen mijn post.
Dat is een probleem want Reader kan niet met e-mailabonnementen overweg. Een ander mogelijkheid, abonneren op een RSS feed uit GMail werkt ook niet want je kunt je niet abonneren op beveiligde feeds.
Vandaag heb ik een gedeeltelijke oplossing gevonden door gebruik te maken van MailBucket. Dat is een dienst waar je e-mail naartoe kunt sturen waarna de binnengekomen berichten op te halen zijn in de vorm van een RSS feed. Dat werkt als volgt: je kiest een e-mailadres bij MailBucket, bijvoorbeeld testje@mailbucket.org en dan hoort daar de RSS feed http://mailbucket.org/testje.xml bij.
Nu laat ik alerts naar een adres bij MailBucket sturen en heb me op de bijbehorende feed geabonneerd. Zo kan ik nu mijn alerts lezen in Google Reader.
Er zijn wel wat nadelen, zo is alles bij MailBucket openbaar toegankelijk en als iemand anders toevallig hetzelfde e-mailadres gebruikt als ik, dan komt dat gewoon samen in dezelfde feed terecht. Ten tweede worden de links uit de alerts omgezet naar tekst waardoor ze niet direct doorlinken naar de betreffende site. Maar dat laatste is wat te verbeteren door de Plain Text Links add-on voor Firefox te installeren waarmee geselecteerde tekst op een pagina, als URL is te openen.
Iemand die een betere oplossing weet?
-
Common Craft screencasts Nederlands ondertiteld
De video’s van Common Craft die op eenvoudige wijze Web 2.0 onderwerpen als social bookmarking en rss uitleggen zijn er ook met Nederlandse ondertitels. credits: Sanne Roemen
-
TwitterWhere
TwitterWhere, een nieuw hulpmiddel voor Twitter om een RSS feed te maken van alle Twitter posts uit een bepaalde omgeving, bijvoorbeeld Haarlem.
-
Usability of email as RSS
In his latest Alertbox Jakob Nielsen discusses usability issues of newsletters sent through email and news in RSS feeds.
One thing I missed was the option of reading newsletters and RSS feeds with the same application. In the article, newsletters sent as email and news distributed with RSS are discussed as two separate things. But email programs can handle RSS feeds, and there are RSS readers that can handle email. With these tools the user has a single way to handle both types of information, independent from the distribution format.
I prefer to read news in a collected form with stories from multiple sources. I use Bloglines for this and one of the sources is the Alertbox newsletter. Now to me this newsletter is no longer an email but one article among many, and with that change comes a change in attention span and impact.
Now the newsletter doesn’t contain the full story, but a summary plus a link to the article on the website. Good for people who want to read articles on the originating website, but I don’t need that. So to get the full article I need to perform an extra action, follow the link. So, to me it would be an improvement if the complete article was available in the newsletter.
What publishers could do to satisfy the needs of different users is to give users a choice when they subscribe. A choice of the contents, complete articles or a link to the website. And a choice of the distribution format, email or RSS. That would give users the freedom to get the information they want delivered the way they want it.
-
Putting the geo position in a Wordpress RSS feed
The last few days I’ve been looking at adding geographic information to articles on this website. For WordPress, the software this site is running on, I found the Geo plugin with which you can store geographic coordinates for an article. The plugin adds this information to the page of each article, but not in the RSS feed, so I made a function that does this, though not automatically.
To use it, start with adding the following function to the Geo plugin. I’m using version 1.0, don’t know if it works in earlier versions:
/** * Returns the tags with geo information for inclusion in RSS 2.0 feeds. * * Include a call to this function inside the <item> tag to * add tags with geo information if available. * To keep the feed valid add these namespace declarations to the <rss> tag: * xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" * xmlns:icbm="http://postneo.com/icbm" * xmlns:geourl="http://geourl.org/rss/module/" */ function get_the_rss_geotags() { global $wp_query; if(!get_settings('use_geo_positions')) return; list($lat, $lon) = split(',', get_post_meta($wp_query->post->ID, '_geo_location', true)); if ($lat == '' || $lon == '') { if (get_settings('use_default_geourl')){ // send the default here $lat = get_settings('default_geourl_lat'); $lon = get_settings('default_geourl_lon'); } } if ($lat != '' && $lon != '') { echo "<geo :lat>$lat</geo><geo :long>$lon</geo>\n" . "<icbm :latitude>$lat</icbm><icbm :longitude>$lon</icbm>\n" . "<geourl :longitude>$lon</geourl><geourl :latitude>$lat</geourl>\n"; } }Now you can add this line to wp-rss2.php, somewhere inside the <item> tag:
<?php echo get_the_rss_geotags(); ?>
Also remember to add these namespace declarations to the rss tag:
<rss version=”2.0” xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:icbm="http://postneo.com/icbm" xmlns:geourl="http://geourl.org/rss/module/">
That’s it.
-
Publishing del.icio.us webfeeds through FeedBurner
To try out FeedBurner I burned the two feeds for the linklogs on the site. The data of these feeds comes from Del.icio.us, which means I don’t know if anyone is using them. By serving them through FeedBurner I hope to get some information.
Nothing has changed on Del.icio.us, so the previous addresses still function. But the icons on the site now point new subscribers to the FeedBurner versions.