feed

how to do a smooth scrolling + fade in live feed with jquery?

i've found a lot of news ticker plugins that kinda do what i need, but not exactly. i want to do exactly what twitter.com does on their home page with the "Top Tweets". facebook also does this on their feed. basically whenever i have a new item i want all the LIs to scroll down, make room for the new LI on top, and fade it in. the ne...

How to get RSS feed item count?

Hello, In C#, .NET 3.5, in a Windows Forms application... How does one get the integer count of the number of items that a given RSS url returns? Example: For my blog at: http://forgefx.blogspot.com/feeds/posts/default The expected result would be: postCount = 25 Thanks! ...

Are there free realtime financial data feeds since the demise of OpenQuant?

Now that the oligopole of market data providers successfully killed OpenQuant, does any alternative to proprietary and expensive subscriptions for realtime market data subsist? Ideally I would like to be able to monitor tick by tick securities from the NYSE, NASDAQ and AMEX (about 6000 symbols). Most vendors put a limit of 500 symbols...

intercepting feed:// in safari5

Hello. I am writing an extension for Safari5 and I am trying to intercept the fact that the user is clicking on an RSS icon and loading a feed://.... URL to offer him/her subscription options. I have tried to register a start content script for the feed:/// whitelist pattern but that does not work. Does anyone know how to make this work?...

Free Software Solution to continuously load a large number of feeds with several servers?

I need a system that schedules and conducts the loading of a large number of Feeds. The scheduling should consider priority values for feeds provided by me and the history of past publish frequency of the feed. Later the system should make use of pubsub where available. Currently I'm planning to implement my own system based on HBase an...

Making a user profile activity feed

I need to build an activity feed to go on each users profile page showing what they have been doing on the site. There is three tables: comments, ratings, users I want the feed to include the comments and ratings that the user has posted. in the comments and ratings table it stores the user id of the user who posted it, not the userna...

News sources for python django

Hi All, I find myself continually sifting through the net to keep up with Python/Django/web development trends and news. Does anyone recommend any good news sites that focus on web development or they Python community? For example, what new Django modules are popular or interesting new jQuery plugins, etc. Just curious to know how ...

how to add rss feed in our website

I m adding rss feed in out publish website which is related to advocate . ...

RSS Feed validation: IRI found where URL expected - How to convert IRI link to the valid URL?

I have created an RSS feed, that contains non-ASCII characters URLs (IRI). That's why it does not validate using Feed validator. How important is that validation? As far as I know this is more or less a validation for legacy RSS readers? Anyway, I would like to know how to convert IRI to URL in C#? http://www.viva.si/Zdrav-način-prehr...

Confused about namespaces in Atom feed

Is there any difference between <opensearch:totalResults>1000</opensearch:totalResults> and <totalResults xmlns="opensearch">1000</totalResults> I'm using the SyndicationFeed class in .NET to generate an Atom feed, and I need to add some elements for the opensearch standard, but it keeps adding elements like the latter one above w...

Displaying inverse numbers when loading Hebrew rss with android ...

Hi , I'm Loading an Hebrew (rtl) xml feed with xml Dom using eclipse android environment. When displaying the feed on TextView text is OK but numbers Displaying inverse for example : if feed (XML) contain 007 it WILL displayed as 700.. any help blessed (: thanks ...

how can I import an rss feed from a specific category from one blog and print that rss feed inside the rss feed of another blog?

There are two blogs. The client wants a category from blog 1 to appear in the RSS feed of blog 2. is that possible? would I use something like this? $feed = new SimplePie(); $feed->set_feed_url(array( 'http://simplepie.org/blog/feed/', 'http://feeds.tuaw.com/weblogsinc/tuaw' )); $feed->init(); $feed->handle_content_type(); fo...

Remote Desktop Services feed authentication and ASP.NET

Hi, I am trying to create a custom ASP.NET MVC site that can show the RemoteApp's published through Remote Desktop Services at one of our servers. I am parsing the XML from the /rdweb/feed/webfeed.aspx feed and downloading the RDP files. However, when I access this webfeed.aspx, I have to provide network credentials for it, which means...

Using the Facebook Graph API, how can I get the contents of a page?

For example, here's a 'page': http://www.facebook.com/facebook That page has an RSS feed (which I'd like to use, ideally), but a) it browser-sniffs meaning I need to fake the user-agent from a script to fetch it - and that feels really brittle b) the quality of the data returned is really poor. Can I use the graph api to fetch the sam...

How to create php RSS simulator?

So I have RSS feed of 10 000 records in file.xml (I collected them from 10 feeds in 1 hour time so there timestamps will not help, btw I used yahoo pipes). I need some class to simulate that records appearing 24 per a day with 1 per hour. How I see it: 1) turn file.xml into sql table (if you know a class for this please help) 2) cr...

How to join RSS feeds into one? (from php)

How to join RSS feeds into one? (from php) what libs can help us with it? ...

How to convert JSON to XML? (preferably with Yahoo Pipes or Ruby).

There is plenty of information on XML to JSON conversion... But I would like to convert a JSON result into XML. For example the iTunes Search API only provides output in the JSON format. http://itunes.apple.com/WebObjects/MZStoreServices.woa/ws/wsSearch?term=jack+johnson&amp;country=US&amp;media=music&amp;entity=musicArtist&amp;limit=6...

can Google AJAX Feed API support geo-rss or geo-atom .

i want to load geo-rss using google ajax api , but can it load geo-rss ? thanks ...

how to get geo data via 'MIXED_FORMAT' in google ajax feed api.

this is my code : <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"&gt; <html xmlns="http://www.w3.org/1999/xhtml"&gt; <head> <meta http-equiv="content-type" content="text/html; charset=utf-8"/> <title>Google AJAX Feed API - Simple Example</title> <script type="tex...

How to show RSS feeds from my Wordpress blog in my CakePHP website?

Hello, How i can show the RSS Feed from my WordPress blog into my CakePHP website? I need the result to be a list where i can use the html code: <ul> <li>feed item 1</li> <li>feed item 2</li> ... <li>feed item n</li> </ul> ...