Show a stream of your online activity.
Currently supports the following feeds:
- Bitbucket
- Bitly
- Blogger
- Citeulike
- Digg
- Dailymotion
- Delicious
- DeviantART
- Dribbble
- Facebook Pages
- Flickr
- Foomark
- Formspring
- Forrst
- Foursquare
- Gimmebar
- Github
- Google+
- Google Reader
- Hypem
- Instapaper
- Iusethis
- Last.fm
- LibraryThing.com
- Mlkshk
- PicPlz
- Pinboard
- Posterous
- Quora
- RSS
- Slideshare
- Snipplr
- Stackoverflow
- Tumblr
- Vimeo
- Wikipedia
- Wordpress
- Youtube
- Zotero
Feel free to fork the project and add your own feeds in.
Just send a pull request to [christianv/jquery-lifestream][jquery-lifestream] when you're finished.
jam install jquery-lifestream
Then add the followng code
$("#lifestream").lifestream({
list:[
{
service: "github",
user: "christianv"
},
{
service: "twitter",
user: "denbuzze"
}
]
});
You also need to add a bit of HTML:
<div id="lifestream"> </div>
The plug-in accepts one configuration JSON object:
$("#lifestream").lifestream({
classname: "lifestream",
feedloaded: feedcallback,
limit: 30,
list:[
{
service: "github",
user: "christianv"
},
{
service: "twitter",
user: "denbuzze"
}
]
});
classname
: The name of the main lifestream class. We use this for the main ul class e.g. lifestream and for the specific feeds e.g. lifestream-twitter
feedloaded
: (function) A callback function which is triggered each time a feed was loaded.
limit
: (integer) Specify how many elements you want in your lifestream (default = 10).
list
: (array) Array containing other JSON objects with information about each item.
Each item should have a service and a user.
For more information about each service, check out the [source code][examplesource] of the [example page][example].
- 0.3.2 Quora support
- 0.3.1 Citeulike support
- 0.3.0 RSS support
- 0.2.9 Hypem support
- 0.2.8 Gimmebar support
- 0.2.7 Zotero support
- 0.2.6 Google+ support
- 0.2.5 Wikipedia support
- 0.2.4 LibraryThing support
- 0.2.3 Digg support
- 0.2.2 Facebook Pages support
- 0.2.1 Bitbucket support
- 0.2.0 Modular builds
- 0.1.6 Bitly support
- 0.1.5 Snipplr support
- 0.1.4 Instapaper support
- 0.1.3 Mlkshk support
- 0.1.2 Foomark support
- 0.1.1 Blogger, Formspring, Posterous & Wordpress support
- 0.1.0 jQuery Template support
- 0.0.17 Forrst & PicPlz support
- 0.0.16 Iusethis support
- 0.0.15 Dailymotion & Pinboard support
- 0.0.14 Slideshare support
- 0.0.13 Vimeo support
- 0.0.12 Reddit support
- 0.0.11 Tumblr support
- 0.0.10 DeviantART support
- 0.0.9 Foursquare support
- 0.0.8 Add support for Github tags
- 0.0.7 Dribbble support
- 0.0.6 Update links in twitter to be able to have hashes in them
- 0.0.5 Flickr support
- 0.0.4 Last.fm support
- 0.0.3 Delicious support + minor bug fix in the stackoverflow code
- 0.0.2 Youtube support
- 0.0.1 Initial version