Skip to main content

Web Feeds and How to use them

RSS Feeds

Web Feeds


Web feed is a type of data which is used to keep users updated with a specific information source such as a website.Information providers or website owners syndicate a web feed to allow users to subscribe to it.The tool to read out the data or to subscribe to a feed is commonly known as an aggregator program or simply a feed reader.A feed reader when get subscribed to a feed pulls out the latest updates which have been done in the website.Therefore, a user need not to go to a website daily and check out the updates.Using a feed reader is simply like dragging the link to the web browser.The type of content delivered by a feed reader is xml document or link to the updated information.You can visit the post Top 10 Feed Readers for information about the best feed readers available for your computer operating system.



Why Use Feeds

There are so many reasons to subscribe to feed.A few have been listed below

  • There is no need to use email addresses or social media accounts to subscribe to feed.It means there is no threat regarding spans, phishing, viruses etc.Privacy remains yours and the content provider will never have access to it.So don't hesitate while subscribing to feeds of your useful or favourite site.For eg. You can subscribe to this blog just by clicking on the link Subscribe in a reader and latest articles will automatically be displayed in you feed reader.
  • You can easily unsubscribe from the feeds of the site which information you dnt want to be displayed.Just remove that feed from your feed reader.
  • It is a very convenient way to get yourself updated with your favorite sites and news articles.So its always advisable to subscribe to feeds to save time.


Types of feeds

What basically type of feeds means is that there are various ways in which a publisher can provide its feeds to users.The two which are the most popular feed formats are

  • RSS Feeds
  • Atom Feeds


  • Every feed reader is compatible of reading both type of feeds.Atom was built as an alternator of RSS feeds because RSS feeds had some limitations but new versions of RSS feeds has got it to the level.Publishers can provide any type of feeds to users And there is no botheration for users to select whether to subscribe to a feed or not only on the basis of its type.Users can easily subscribe to any feed.And publishers can refer to wikipedia for more information about both the types.


    Other helping links

    1. Top 10 feed readers
    2. How to add feed icon to your blog
    3. Atom Feed
    4. RSS Feeds

    Comments

    Popular posts from this blog

    Image Search Engine Using Python

    Images provide a lot more information than audio or text. Image processing is the prime field of research for robotics as well as search engines. In this article we will explore the concept of finding similarity between digital images using python. Then we will use our program to find top 10 search results inside a dataset of images for a given picture. It won't be as good as google's search engine because of the technique we will be using to find similarity between images. But what we are going to make will be pretty cool. So lets start. Setting up the Environment Our Algorithm How the code looks Lets build the GUI Additional Techniques Setting up the Environment The code we are going to write requires a few tools which we need to install first. I will try to be as precise as i can and if you get stuck into installing some tool then you can drop a comment below and i will help you sort out the problem. So here are the tools and the steps to install

    Understanding Python Decorators

    If you have ever wondered what those @something mean above a python function or method then you are going to have your answers now. This @something line of code is actually called a decorator. I have red from various articles about them but some of them were not able to clarify the concept of a decorator and what we can achieve with them. So in this post we'll learn a lot about python decorators. Here is a list of topics we'll be covering. What is python decorator Understanding the concept Multiple decorators on same function class method decorator Where can we use decorators What is python decorator A python decorator is nothing but a function which accepts your given function as a parameter and returns a replacement function. So its like something this def decorator(your_func): def replacement(your_func_args): #do some other work return replacement @decorator your_func(your_func_args): #your_func code Now when your_func gets called then

    Cordova viewport problem solved

    Include the viewport settings in Cordova If you are facing the auto zooming problem of cordova then go read on the full article. Cordova actually ignores the viewport meta tag which causes the pixel density problem. So we need to tell cordova that viewport tag is equally important as other tags. To do this, we need to add some code to a file which is specify in the article. Corodva messes with pixels If you are using the latest cordova version or creating the cordova app for latest android versions then you may have faced the zoom malfunctioning.I also faced it when creating an app. Many of you may have already searched the web and found the answer of changing the meta tag attributes to get it working. But adding target-densitydpi=medium-dpi does not solve the problem for latest android versions. It may work for gingerbread but not for kitkat and others. So the final solution which i found was one of the stackexchange answer but rarely found. So i am gonna two things here, i