rss etiketine sahip kayıtlar gösteriliyor. Tüm kayıtları göster
rss etiketine sahip kayıtlar gösteriliyor. Tüm kayıtları göster

jQuery Feed Menus

Feed Menus

When feeds became popular, it worked to have one icon on your site to point your readers to your RSS or Atom feeds. As feeds are more prevalent in blogs and websites abroad, the presence of multiple feeds abound. I have a feed for my blog, the nerdlab, my bookmarks, my friend feed as well as my twitter updates. That’s a butt-ton of feeds.

Browsers have come up with a smart way of offering this content to users and it is usually place somewhere by the location bar as shown below:

Firefox 3 Feed Menu

Firefox 3 Feed Menu

Safari 3 Feed Menu

Safari 3 Feed Menu

With the click of a button, you can view all of the feeds available in the of the document.

But still, it’s nice to offer users an alternate way to get at your feeds, so typically you will see a feed icon lurking around a site somewhere. At times, you will see a list of two, three or more links to different feeds offered on a site. Why not have an easy and standard way of offering your feeds via a nice, compact menu, just like in the location bar, but on your site? Why I ask? Why?

It’d be awesome to allow users to click your feed icon and be presented with a list of feeds to choose from. Hmmm, I want your twitter feed in Atom format or I’d like to subscribe to your blog feed in RSS format. Done.

The jQuery Feed Menu

Here’s how easy it is. I am going to plop one right here: . Go ahead click it. You know you want to. This feed menu was created easily by the following snippet of code:

var fm = new FeedMenu();
fm.write('#jquery_feed_menu_example_1');

Cool huh? That piece of code finds all of your feeds in the of your HTML document and makes them into a handy menu you can plop anywhere. Here are some more examples:

Atom Feeds

Atom Feeds:

Code:

var fm = new FeedMenu('link[type*=atom]‘);
fm.write(’#jquery_feed_menu_example_2′);

RSS Feeds

RSS Feeds:

Code:

var fm = new FeedMenu('link[type*=rss]‘);
fm.write(’#jquery_feed_menu_example_3′);

Different Theme Classes:

Classic Orange
Komodo Media v.4 Woodgrain
Komodo Media Azure

Transparent on Dark (for dark backgrounds)

Transparent on Light (for light backgrounds)

Code:

/*
* @param 1: CSS link selector or array of JSON objects
* @param 2: Class Name: null, wood, azure, trans_on_dark, trans_on_light
/*
var fm = new FeedMenu(null,'wood'); //2nd param is class
fm.write('#jquery_feed_menu_example');

Last, something custom

Let’s say you don’t want the feed menu to find links for you. You want to provide them in code. Check this out:

And, here’s the custom code:

var oCustomLinks = [
{
title:'RSS Feed',
href:"http://feeds.feedburner.com/komodomedia"
},
{
title:'Subscribe with Bloglines',
href:"http://www.bloglines.com/sub/http://feeds.feedburner.com/komodomedia"
},
{
title:'Subscribe with Google Reader',
href:"http://www.google.com/reader/view/feed/http://feeds.feedburner.com/komodomedia"
}
];
var fm = new FeedMenu(oCustomLinks);
fm.write(’#jquery_feed_menu_example_6′);

You can download all of the files used here to use on your site. Feel free to modify and use this code how you see fit and if you use it, please drop a comment here to show me how you’ve used it.

This work is licensed under a Creative Commons Attribution-Noncommercial-Share Alike 3.0 United States License.

Read More!

All About RSS

All About RSS

Many of you may already know all about RSS but a lot of Internet surfers and newly established bloggers are still not familiar with the three-letter acronym. In order to make life easier for them, here is a detailed article that explains the word. RSS stands for Really Simple Syndication or Rich Site Summary; syndicating means republishing an article that comes from another source such as a website.

RSS is a means of publicizing updates about websites. It may or may not include a summary and photos of the latest posting. But those that provide summaries (thus Rich Site Summary) allow users to skim through the article so that they could decide later on if they want to access the website source. The RSS feed usually contains the title of the update originating from the website. It is also usually the link to the website source.

What are the benefits of RSS?

RSS gives benefits to both readers (users) and web publishers.

  • It gives you the latest updates. Whether it is about the weather, new music, software upgrade, local news, or a new posting from a rarely-updates site learn about the latest as soon as it comes out.
  • It saves on surfing time. Since an RSS feed provides a summary of the related article, it saves the user’s time by helping s/he decide on which items to prioritize when reading or browsing the net.
  • It gives the power of subscription to the user. Users are given a free-hand on which websites to subscribe in their RSS aggregators which they can change at any time they decide differently.
  • It lessens the clutter in your inbox. Although your email address will be required to enjoy the services of online RSS aggregators, RSS does not use your email address to send the updates.
  • It is spam free. Unlike email subscriptions, RSS does not make use of your email address to send updates thus your privacy is kept safe from spam mails.
  • Unsubscribing is hassle-free. Unlike email subscriptions where the user is asked questions on why s/he is unsubscribing and then the user would be asked to confirm unsubscribing, all you have to do is to delete the RSS feed from your aggregator.
  • It can be used as an advertising or marketing tool. Users who subscribe or syndicate product websites receive the latest news on products and services without the website sending spam mail. This is advantageous to both the web user and the website owner since advertising becomes targeted; those who are actually interested in their products are kept posted.

What are the drawbacks of RSS?

The disadvantages of RSS use are brought about by its being a new technology and some user-preference concerns.

  • Some users prefer receiving email updates over an RSS feed.
  • Graphics and photos do not appear in all RSS feeds. For conciseness and ease of publication, RSS feeds do not display the photos from the original site in announcing the update except for some web-based aggregators.
  • The identity of the source website can be confusing. Since RSS feeds do not display the actual URL or name of the website, it can sometimes get confusing on what feed a user is actually reading.
  • Publishers cannot determine how many users are subscribed to their feed and the frequency of their visits. Moreover, they would not know the reasons why users unsubscribe which could be important in improving their advertising.
  • RSS feeds create higher traffic and demands on the server. Most readers still prefer the whole update over a brief summary of the entry, thus they still access the site.
  • Since it is a new technology, many sites still do not support RSS.

How do I start using RSS?

There are two things needed: an RSS feed and an RSS aggregator or reader. The RSS feed comes from an RSS-supported website. There are also websites that provide a list of RSS feeds of different websites. An RSS aggregator is used to read the RSS feed from the source website. It scans and collects data on latest RSS feeds from the worldwide web.

An aggregator comes in two forms: a downloadable program also known as desktop aggregator and an online or web-based aggregator. Downloadable aggregators may require payment before they can be acquired, while internet-based aggregators are usually free of charge. All you need to do is to register an account then you are ready to use their services. Both versions allow you to customize or choose which RSS feeds to enter. Paid aggregators are usually chosen by more experienced users and they usually allow more freedom in customizing feeds.

  • Choose an RSS aggregator to use. For beginners, web-based aggregators are recommended since they are usually user-friendly.
  • Scan the homepage of your target website for the RSS or XML button. It contains the RSS code you need to enter in the aggregator. Copy this code. Syndic8 provides a directory of websites that support RSS.
  • Paste the code (which contains the URL of the website) in your aggregator. There is a space provided for pasting the code.

After you have done these three easy steps, you can start reading the RSS feeds coming from the website. New postings appear as they are published real time at the source website.

RSS and Internet Marketing

The original idea of RSS came from Netscape, where their intention is to provide a means for users to customize their personal homepage to contain links to websites that interest them, similar to bookmarking websites.

The application of RSS to internet marketing was an unforeseen development to RSS technology developers. Since users are given the freedom to add RSS feeds to their aggregators, those who are interested in particular products and services available in the internet can now be notified real time. Marketing becomes more specific to interested people and not a hit-and-miss operation.

Those who intend to use RSS for marketing their products and services should consider linking up with email account providers, (e.g. Yahoo, MSN, Google mail); networking websites (e.g. Friendster, Multiply, My Space, Hi5); websites of newspapers and television network websites (e.g. New York Times, CNN) for medium to big-scale companies. Small-time industries can also look into networking websites as well as personal blog websites (e.g. Blogspot) and websites of clubs and organizations that would probably make use of their products or services e.g. a fishing supplies store can look for the website of their local fishing club for possible RSS marketing.

Clearly, RSS is an innovation in information management in the worldwide web as well as online marketing. We can expect better RSS technology in the not-so-distant future as its popularity increases among users and website owners alike.

Read More!

Beatiful RSS feed icons for your blog

Beatiful RSS feed icons for your blog

Here are some nice RSS feed icons I collected over the past few months. Hope you all like them.

Previous post : Beatiful RSS feed icons for your blog - Part 1

Design Freak Feed Icons

Design Freak Feed Icons

Design Freak Feed Icons

Design Freak Feed Icons

Design Freak Feed Icons

Design Freak Feed Icons

Design Freak Feed Icons

Design Freak Feed Icons

Design Freak Feed Icons

Design Freak Feed Icons

Design Freak Feed Icons

You need a Image Editor cut these icons apart. Did you know all icons above have their own meaning ? Read the post in Russian at Design Freak. If you do not know Russian, just use Google Translate to translate it to English :)

Lrvisual 3D RSS Icons

Lrvisual 3D RSS Icons

Lrvisual 3D RSS Icons

You can see full collection and download at Lrvisual.net

Fresh RSS icons from MannoDesign

Manno design RSS Feed Icons

12 Fresh RSS icons can be downloaded here

Icojoy Web 2.0 RSS Icons

Icojoy Web 2.0 RSS Feed Icons

Free icon set that includes 28 RSS icons of 7 diferent types with 4 color variants. Icon set also includes a .psd source file with icons’ reflection. You can read the post and download them here

Glossy Balls RSS Icons

Glossy balls RSS Feed Icons

The zip folder contains 3 icons without shade and 3 others with shade. These icon can be downloaded here

Read More!

En iyi RSS yazilimi hangisi

En iyi 5 RSS yazılımı

Gündelik hayatımızda kimimiz özel ilgi alanlarıyla, kimimiz işleriyle ilgili konuları internet üOrtalazerinden gün aşırı takip ederiz. Belirli aralıklarla, ilgilendiğimiz konularla ilgili siteleri bir bir gezmek ise... gereksizdir.

İşte bu durumda gereksiz yükü üzerimizden almak için RSS yazılımları devreye giriyor. RSS yazılımları ilgilendiğimiz konularla ilgili başlıkları web sitelerinden toplayarak karşımıza çıkartıyor.

İşte sizler için seçtiğim en begenilen 5 RSS Reader yazılımı.
Feed Demon
Desteklediği işletim Sistem: Windows 98-2000-XP-Vista
Boyut: 3882 KB

Feed Demon kolay özelleştirilebilir bir RSS olmakla birlikte ilgilendiğiniz konularla ilgili haberleri sizin için listeleyebiliyor. Yeni dosyalar açıp kaydetme özelliğine de sahip.

Ayrıca başlıkları okuyabilmeniz için online olmanıza gerek kalmıyor. Bir diğer özellik ise 'panic' tuşuyla tüm eski haberleri anında silerek karşınıza en son ve en yeni haberleri sunuyor.

Tek tıkla hemen menüye ulaşabileceğiniz gibi popüler başlıklar bölümünden birçok farklı habere ulaşabilmenizde mümkün.

Hiçbir üyelik gerektirmeden de New York Times, BBC News gibi önemli haber kaynaklarından da faydalanbiliyorsunuz.

Feed Demon programını buradan indirebilirsiniz.

RSS Bandit
Desteklediği işletim sistemi: Windows NT-2000-XP-Vista
Dosya büyüklüğü: 7700 KB

RSS Bandit takip ettiğiniz haberleri oldukça kolaylaştırıyor ve gelen haberleri çok kolay bir şekilde organize ediyor. Programın en önemli özelliklerinden birtanesi tüm haberleri sizin için sürekli güncelleyebiliyor.

Henüz okuyamadığınız haberler varsa onları kalın bir yazılışla karşınıza çıkartıyor, böylelikle yeni olarak gelen her haberi direk gözüne çarpıyor.

Sevdiğiniz siteler, bloglar ve politika gibi birbirinden farklı bir çok kaynaktan takip ettiğiniz haberleri RSS Bandit an ve an takip ediyor.

" Programın içinde video izlemeniz de mümkün. "

RSS Bandit buradan indirilebilir.

Feed Reader
Desteklediği işletim sistemi: Windows NT-2000-XP-Vista
Dosya büyüklüğü: 7700 KB

RSS okuyucularının en kolayı ve en iyilerinden olan Feed Reader'da herşeyi yapmanız oldukça basit ve mümkün. Feed Reader'ın en sevimli özelliği bir çok yeni Web sitesini keşfetmenizi sağlıyor.

Feed Reader klavye kısayollaryla da çalışabildiğinden çok rahat bir kullanım sağlıyor. İstediğiniz dilde haberleri alabiliyor yazılımı Türkçe olarak kullanabiliyorsunuz.

Yazılımı kurarken araba, teknoloji, spor gibi belli başlı kategorileri seçebiliyorsunuz. Bu seçim sonrasında konuyla ilgili tüm haberler önünüze geliyor.

Smart Feeds özelliği sayesinde birbiriyle uyumlu olabilecek haberleri tahmin edip direk belli bir dosyada toplayabiliyor.

Feed Reader'ı buradan indirebilirsiniz.

RSS Ticker
Desteklediği işletim sistemi: Macintosh, Linux, Windows 2000, Windows XP, Windows Vista
Gereklilikler: Mozilla Firefox 1.5-3.0b3

RSS Ticker, FireFox'la hizmet veren bir RSS'tir. Firefox'unuzdaki Live Bookmarks bölümüne gelen en son haberlerin başlıklarını sizlere sunar. Karşınıza çıkan bookmark bölümünü keyfinize göre özelleştirebilirsiniz.

Ayrıca tüm bu başlıkların altında küçük bir özet sayesinde haberle ilgili bilgi edinmenizi de mümkün. RSS Ticker programını buradan indirebilirsiniz.

Great News
Desteklediği işleti sistemi: Windows 2000-XP
Dosya büyüklüğü: 800 KB

Great News bir çok haberi içinde bulundurabilmesinin yanı sıra ayrıca haberlerinizi 6 farklı çeşitte gazete, makale ve Fire Fox destekli açabiliyorsunuz. Great News yazılımının da OPML desteği olması yine RSS yazılımları arasında ideal bir kullanım sağlıyor.

Great News tüm RSS'ler arasında en az karmaşaya sahip sade bir menüyle karşımıza çıkıyor. Great News'u buradan indirebilirsiniz
Read More!

Sitenize ffb widgeti

Sitenize İçerik ekleyin ffb.ceoxi.com içeriğini sitenize taşıyın Örnek görünüm alttaki gibidir ekleme için widget deki options a tıklamanız yeterli.
Read More!

Subscribe Now! rss abonelik

Rss nin Önemi

rss abonelik sistemi insanları bir siteyi takip etmesi için önemli bir sistemdir bir siteye girdiniz ve sitedeki yazıların bir çoğu sizin için önemli ise ve bir sonraki yazı ne olacak diye merak ediyorsanız rss abonelik sistemleri işinizi çok kolaylaştıracaktır.

Tabiki bir sonraki yazı anında rss aboneliklerinden öğrenebileceksiniz ben google reader ı kullanıyorum googlen bu hizmetini kullanabilmak için sadece gmail hesabınız olması yeterli gmail davetiyesi bulamıyorsanız ben size gönderebilirim

gmail davetiyesi istek mail:patron@ceoxi.com



Subscribe Now!

...with web-based podcatchers. Click your choice below:

Subscribe in podnovaSubscribe in NewsGator OnlineAdd to netvibes
addtomyyahoo4Subscribe to My Odeo ChannelAdd to Google

...with iTunes:

Add to iTunes

...via email:

Get Free Fresh Blogger delivered by email

Rsslere mail ile abone olabilirsiniz!

Get more info on other podcatchers:


original feed View Feed XML

Embed this content on your site

Embed with: SpringWidgets

Read More!

RSS'de Bütün Konuları Göstererek Sitemap Yapma

Blogspotlarda sitemap.xml yoktur. Herkez rss'den ekliyor rss'de de bilindigi gibi 25 konu yayinlaniyor yani siteye eklenen son 25 konu

simdi biz bunu daha fazlalastirip blogunuzdaki tüm yazilari rss de gösterecegiz

ilk olarak Google Webmaster Tools 'a giriyoruz ordan Site Haritalari ve son olarak Site Haritasi ekle'ye tiklayiniz.

Türü Secin Secenegi vardir ordan Genel Web Site Haritasi Ekle 'yi Seciniz. Altta site haritasinin url 'sini altta verdim.

rss.xml?redirect=false&start-index=1&max-results=1000

Burdaki 1000 sayisi blogunuzda mesela 1000 tane konu varsa 1000 konuyu gösteriyor bu sayiyi degistirmeniz gerekmiyor

Bunu yazip Genel Web Haritasi Ekle 'ye tikladiktan sonra artik bizimde bütün konularimizi gösteren sitemap olmustur.
Read More!