feeds

multi user twitter feed

Hi, I'm trying to create a widget on my blog that grabs about 20 twitter accounts and displays the last two posts from each account. At the moment I have a jquery based version that runs a for loop for each account. Naturally I bumped up against the 150 requests per hours maximum pretty fast. My question is two fold: Is there a more eff...

Transfer website to a wordpress blog retaining the older links and RSS feeds

Hello, I have around 40 pages on my website. I also have a Wordpress blog. I would like to shift my website to this blog. When I transfer the website to the blog, I want to transfer its pages to the blog as pages and not blog posts. Would that be possible. The existing pages on the website have the URLs like; www.xyz.com/article1.ht...

Fixing Broken RSS feed, duplicate items via "pubDate"

I am trying to subscribe to an RSS feed for a fighter's history via MixedMartialArts.com, but this particular website updates the pubDate for each of the fights, causing duplicates every time the pubDate is updated. http://www1.mixedmartialarts.com/?go=rss.fighterRecord&pid=8878384A5C892D13 However, other attributes of each remain...

How to prevent someone from hacking API feed?

I have started developing a webpage and recently hired someone to write code to display a customized feed (powered by API) in the middle panel on http://farmball.com/. Note that this is not the RSS feed tied to the site blog. The feed ties to my account on another site. There is no RSS link for an average user to subscribe to the feed. I...

google calendar iCal feed

I am working at a web portal that has a events section. I have created using DDay.iCal a iCal "feed" with all the events. Is there a possibility to make a link to this feed, and when clicked, the feed to be automaticly added to google calendar? (Something similar to RSS feeds, when you click them you can select use google reader). Or sho...

How to create ASP.NET page to act as a "proxy" for Silverlight WebClient?

I need to create an ASP.NET application to access a URL, when this application is live it is able to access the feed URL correctly as the clientaccesspolicy.xml and crossdomain.xml are on the server but only allow non-localhost connections so the debug version won't connect. How do I create a file, so this kind of link: http://localhost...

Drupal - Feed Link Inside Tabbed Mini-Panels Go Wild - Thanks for SOS Help

A panel page created by two tabbed mini-panels using customized views of feedapi. http://arisey.com/template The feed link goes to the right external website in mini-panel view. However in the combined panel view, the feeds went wild and pointed to non-existing internal links, i.e arisey.com/template#ui-tabs-124. The html source cod...

What's a reliable way to check an RSS feed for new entries?

Part of an app I'm building needs to check RSS feeds for updates. I'm looking for a reliable way to know if a feed has new entries. I know that sometimes people make posts to the future and, after that, posts to the present time which could cause some entries to be hidden. It seems like there could be more complications than that, as we...

Python 3.1 RSS Parser?

Anyone know of a good feed parser for python 3.1? I was using feedparser for 2.5 but it doesn't seem to be ported to 3.1 yet, and it's apparently more complicated than just running 2to3.py on it. Any help? ...

News Data API or Feeds

I would like to know if there is any news feeds/api that can be used for coding/datamining. Skygrid for example gives live news feeds and if the news is good or bad, but it's all in flash and they don't seems to provide any rss other than their twitter. ...

What is the best way to fetch RSS, in real time or almost.

I would like to know what's the best way to fetch RSS feeds in real time without having to download the entire feed even when it hasn't been changed. I don't really mind the language, I'm just looking for the best way to do that. ...

Feed generator for PHP, allowing åäö and images

Hi, I'm new to feeds. I want to create feeds, so first, should I use rss 1, 2 or atom, whatever is best/standard? Second, do you know any easy to understand tutorials or code-examples? Any other good to know for feeds is more than welcome. I'm using php and mysql. Thanks in advance. /Johan ...

Pubsubhubbub handle in php

Hi I need to watch a certain feed for my web app and i can't find any proper documentation about this topic -Edited: what i'm actually after is probably so simple that it might be embarrassing :) i know the hub will use a POST request to deliver the updates but i don't know how to fetch that data using $_POST because i don't know the k...

Database schema for an online Rss Reader

Hi. I need to create an online Rss Reader(just like google reader for example) as part of a more big project. I've already done test version using MS SQL. However the problem is that i don't know how to efficiency store feed items in database: each feed item has the id (guid or just permanent link) and while i store them all in one table...

Is there a way to add an elmah rss feed to google reader?

Elmah has an rss feed and rss digest feature. My feeds are working just fine from within my brwoser. However I would like to add them to google reader as this is my feed reader of choice. The problem is that Elmah uses an AXD handler to server its information - therefore the path to the RSS feed is not a physical one. For example the RS...

What are the best RSS feeds for C++ ?

What are the best RSS feeds for C++ ? ...

PHP Creating an atom feed

How do I go about creating an atom feed in PHP? ...

PHP Atom feeds are not showing

I'm using PHP to generate feeds, which is working perfectly fine on my local development sandbox. Once I upload to the server, I get a blank page. I know the programming is correct, because it works fine on my local box. What do you think the problem might be? I'm not using any extra libraries, atleast I don't think so. I put on error re...

Reading content text from SyndicationContent

Hi i am trying to read the content into string from feed items. SyndicationFeed feed = SyndicationFeed.Load(feedReader); SydicationContent itemContent = feed.Items.ToList<SyndicationItem>()[0].Content; string retrivedContent = itemContent .......??? how can I read the text from the itemContent ? The documentation shows how to cr...

how to get RSS or ATOM feed url from blogurl

how i can get feed url (RSS Or ATOM) from blog url ex:- http://anirudhagupta.blogspot.com/ So how i can get his feed dynamically by c# i say that how i can get blog's feedurl by using Regex and c# ...