Home > > Home

ForumsHome

Post a new topic
8 Replies Last post: Jan 7, 2008 2:22 AM by ysdata

Mash-ups and RSS?

Oct 22, 2007 11:13 PM

Click to view youthlax's profile Start-up youthlax 3 posts since
Oct 11, 2007

I run a Youth Lacrosse League and was wondering if anyone had so suggestions about good ways to use mash-ups and RSS feeds to provide more infomration on my website. My husband talks aout these things all the time, but I don't really understand what they are or how to use them.


Thanks

R

Report as inappropriate
Click to view Techie's profile Founders Techie 46 posts since
Jul 29, 2007
1. Re: Mash-ups and RSS? Oct 23, 2007 8:36 PM
RSS is great to provide if the website is changing/updating content all the time. It allows the user to easily receive updates in a consolidated view. Read more about it on wikipedia: http://en.wikipedia.org/wiki/RSS_%28file_format%29.
Click to view DomainDiva's profile Mogul DomainDiva 1,731 posts since
Oct 10, 2007
2. Re: Mash-ups and RSS? Oct 23, 2007 9:41 PM
Your web host should be able to incorporate any feeds you want into your site.
Click to view BDS INC's profile Founders BDS INC 131 posts since
Jul 20, 2007
3. Re: Mash-ups and RSS? Oct 25, 2007 9:41 AM
Domain Diva and Techie provide some great responses but my question is do the folks who use your site really get RSS? I was reading a study on adoption rates for RSS and the rates are really low and it is usually young people or highly educated individuals who get the technology and actually use it. I guess my advice is to understand the adoption rate of your sites users before you tackle providing feeds.
Click to view guitarboy8d6's profile Professional guitarboy8d6 8 posts since
Oct 28, 2007
4. Re: Mash-ups and RSS? Oct 28, 2007 1:32 PM
My company specialises in things of that nature. If you are intrested in some advice or things of that nature go to www.ten31studios.com, on site that may spark your intrest one we just did for a local political group http://www.lakeyoungdemocrats.org/ It has rss feed and things like that. You could maybe do a blog or something like that as well. There are tons of options.
Click to view guitarboy8d6's profile Professional guitarboy8d6 8 posts since
Oct 28, 2007
5. Re: Mash-ups and RSS? Oct 28, 2007 1:37 PM
in response to: guitarboy8d6
Sorry for the spelling mistakes this is only my second post on this forum and thought It said preveiw message not post message. I am used to post on other forums with that option.

My company specializes in things of that nature. If you are interested
in some advice or things of that nature go to www.ten31studios.com. One site
that may spark your interest we just did for a local political group http://www.lakeyoungdemocrats.org/
it has rss feeds and a podcast and so on. You could maybe do a blog or something
like that as well. There are tons of options.

Thanks
Click to view Arshnet.net's profile Professional Arshnet.net 6 posts since
Nov 15, 2007
6. Re: Mash-ups and RSS? Nov 15, 2007 1:10 PM

You can use Widgets for RSS Feeds and embed them on your website. If you can give me all the feeds URLs that you want. I can create the widget for you and give you the code to place it on your website.

-arshnet
Click to view MTCreations's profile Mogul MTCreations 82 posts since
Nov 18, 2007
7. Re: Mash-ups and RSS? Dec 26, 2007 11:39 AM
You've got two different directions going on here at the same time (grin):

RSS feeds FROM your website and TO your website. You can do both, but keep them separate in your head, or it will explode!

RSS from your website is a way to keep folks updated on new content that you post to your site. When you update your website with new content, your RSS feed also gets updated with the new item(s). How this happens (technically) is beside the point (could be database driven or maybe a 3rd party service).

People who are interested in your content, and see you have an RSS feed (you usually provide an icon with a link to the RSS feed/page/xml), and will subscribe to it using an RSS reader/software (3rd party, Google Reader, integration with browser or email client - there are lots of choices for RSS readers).

That's about it - once it's all setup and running, you update your website, RSS process updates the feed, RSS readers become aware of the new feed/content, and pull it into the reader, and subscriber sees new content.

It's not exactly the same as seeing it on YOUR website (they see text content, maybe an embedded image), but the young'uns like it because they can see updates to a lot of websites (with RSS feeds) from their central RSS reader.

RSS TO your website means pulling in other websites's content feeds (RSS streams) and presenting it on your website as content. A Mashup would be taking different RSS and other content feeds and 'mashing' them together in some meaningful way.

Ex: real estate site could take housing prices from one RSS, median incomes from another, and crime rates from a third, mash them up, and give an interesting picture of a neighborhood. Now, push all that into a mapping service (google maps) and you get a nice visual of the area!

Hope that helps.
Click to view ysdata's profile Start-up ysdata 2 posts since
Jan 7, 2008
8. Re: Mash-ups and RSS? Jan 7, 2008 2:22 AM
If you have access to your FTP site this is a simple code you can use with notepad.

<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
<channel>
<title>The title of my RSS 2.0 Feed</title>
<link>http://www.example.com/</link>
<description>This is my rss 2 feed description</description>
<lastBuildDate>Mon, 12 Sep 2005 18:37:00 GMT</lastBuildDate>
<language>en-us</language>
<item>
<title>Title of an item</title>
<link>http://example.com/item/123</link>
<guid>http://example.com/item/123</guid>
<pubDate>Mon, 12 Sep 2005 18:37:00 GMT</pubDate>
<description>This is the description</description>
</item>
<!-- put more items here -->
</channel>
</rss>

Do not change text in bold, or text inside <>
Save As example.com/feedname.xml and upload to your site. You can find the logo (picture) on google.