del.icio.us
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 19
del.icio.us post 0.7
del.icio.us post is a Firefox extension that allows you to posts current page or link to del.icio.us. more>>
del.icio.us post is a Firefox extension that allows you to posts current page or link to del.icio.us. Adds an entry to the context menu and a button to the toolbar.
Due to some changes in version 0.4, it is advised to first uninstall any previous versions of this extension before proceeding with the installation.
After installing use View -> Toolbars -> Customize... to add the button to the toolbar.
<<lessDue to some changes in version 0.4, it is advised to first uninstall any previous versions of this extension before proceeding with the installation.
After installing use View -> Toolbars -> Customize... to add the button to the toolbar.
Download (0.010MB)
Added: 2007-05-07 License: MPL (Mozilla Public License) Price:
902 downloads
del.icio.us Bookmarks 1.5.26
del.icio.us Bookmarks is a Firefox extension that integrates your browser with del.icio.us. more>> <<less
Download (0.25MB)
Added: 2007-04-09 License: Other/Proprietary License Price:
929 downloads
konqil.icio.us 1.8
konqil.icio.us is a KDE service menu for del.icio.us. more>>
konqil.icio.us is a KDE service menu for del.icio.us.
INstallation:
1) Check you have the Perl HTML, URI and LWP modules installed (liburi-perl, libhtml-parser-perl and libwww-perl packages under GNU/Debian)
2) Copy del.icio.us and del.icio.us.desktop to $HOME/.kde/share/apps/konqueror/servicemenus
3) Make sure $HOME/.kde/share/apps/konqueror/servicemenus/del.icio.us is executable (chmod u+x $HOME/.kde/share/apps/konqueror/servicemenus/del.icio.us).
4) Change the username variable within $HOME/.kde/share/apps/konqueror/servicemenus/del.icio.us to point at your del.icio.us account (this is on line 33)
Enhancements:
- Bug fixes to bookmark method, brought about by changes to del.icio.us API
<<lessINstallation:
1) Check you have the Perl HTML, URI and LWP modules installed (liburi-perl, libhtml-parser-perl and libwww-perl packages under GNU/Debian)
2) Copy del.icio.us and del.icio.us.desktop to $HOME/.kde/share/apps/konqueror/servicemenus
3) Make sure $HOME/.kde/share/apps/konqueror/servicemenus/del.icio.us is executable (chmod u+x $HOME/.kde/share/apps/konqueror/servicemenus/del.icio.us).
4) Change the username variable within $HOME/.kde/share/apps/konqueror/servicemenus/del.icio.us to point at your del.icio.us account (this is on line 33)
Enhancements:
- Bug fixes to bookmark method, brought about by changes to del.icio.us API
Download (0.003MB)
Added: 2007-05-25 License: GPL (GNU General Public License) Price:
882 downloads
pydelicious 0.3.0
pydelicious allows you to access the web service of del.icio.us via its API through python. more>>
pydelicious library allows you to access the web service of del.icio.us via its API through python.
def getrss(tag = "", popular = 0, url = , user = ""):
get posts from del.icio.us via parsing Rss
tag (opt) sort by tag
popular (opt) look for the popular stuff
user (opt) get the posts by a user, this striks popular
url (opt) get the posts by url
def apiNew(user, passwd):
creates a new _DeliciousApi object
requires username and passwd
class _DeliciousAPI:
def __init__(self, user, passwd):
initialize the api with username and passwd
def tags_get(self):
get the tags
def tags_rename(self, old, new):
rename a tag
def posts_update(self):
when have the posts been updated
def posts_dates(self, tag = ""):
when have the posts been posted
def posts_get(self, tag="", dt="", url=""):
get the posts, filtering may help
def posts_recent(self, tag="", count=""):
what have been the latest posts
def posts_all(self, tag=""):
get me all posts
def posts_add(self, url, description="", extended="", tags="", dt="", replace="no"):
add an post to del.icio.us
url - the url of the page you like to add
description - a description of the page, often the title of the page
extended (opt) - an extended description, could be some kind of comment
tags - tags to sort your posts
dt (opt) - current date in format ...., if no date is given, the current
date will be used
def posts_delete(self, url):
delete a post by url
def bundles_all(self):
def bundles_set(self, bundle, tags):
def bundles_delete(self, bundle):
This are short functions for common api calls.
def add(user, passwd, url, description, tags = "", extended = "", dt = "", replace="no"):
def get(user, passwd, tag="", dt="", count = 0):
def get_all(user, passwd, tag = ""):
def delete(user, passwd, url):
def rename_tag(user, passwd, oldtag, newtag):
def get_tags(user, passwd):
This are short functions for getrss calls.
def get_userposts(user):
def get_tagposts(tag):
def get_urlposts(url):
def get_popular(tag = ""):
Examples:
>>> a = apiNew(user, passwd)
>>> a.posts_add(url="http://my.com/", desciption="my.com", extended="the url is my.moc", tags="my com")
True
>>> len(a.posts_all())
1
>>> get_all(user, passwd)
1
>>>
Enhancements:
- This release is mainly a rewrite.
- It now uses external libraries.
<<lessdef getrss(tag = "", popular = 0, url = , user = ""):
get posts from del.icio.us via parsing Rss
tag (opt) sort by tag
popular (opt) look for the popular stuff
user (opt) get the posts by a user, this striks popular
url (opt) get the posts by url
def apiNew(user, passwd):
creates a new _DeliciousApi object
requires username and passwd
class _DeliciousAPI:
def __init__(self, user, passwd):
initialize the api with username and passwd
def tags_get(self):
get the tags
def tags_rename(self, old, new):
rename a tag
def posts_update(self):
when have the posts been updated
def posts_dates(self, tag = ""):
when have the posts been posted
def posts_get(self, tag="", dt="", url=""):
get the posts, filtering may help
def posts_recent(self, tag="", count=""):
what have been the latest posts
def posts_all(self, tag=""):
get me all posts
def posts_add(self, url, description="", extended="", tags="", dt="", replace="no"):
add an post to del.icio.us
url - the url of the page you like to add
description - a description of the page, often the title of the page
extended (opt) - an extended description, could be some kind of comment
tags - tags to sort your posts
dt (opt) - current date in format ...., if no date is given, the current
date will be used
def posts_delete(self, url):
delete a post by url
def bundles_all(self):
def bundles_set(self, bundle, tags):
def bundles_delete(self, bundle):
This are short functions for common api calls.
def add(user, passwd, url, description, tags = "", extended = "", dt = "", replace="no"):
def get(user, passwd, tag="", dt="", count = 0):
def get_all(user, passwd, tag = ""):
def delete(user, passwd, url):
def rename_tag(user, passwd, oldtag, newtag):
def get_tags(user, passwd):
This are short functions for getrss calls.
def get_userposts(user):
def get_tagposts(tag):
def get_urlposts(url):
def get_popular(tag = ""):
Examples:
>>> a = apiNew(user, passwd)
>>> a.posts_add(url="http://my.com/", desciption="my.com", extended="the url is my.moc", tags="my com")
True
>>> len(a.posts_all())
1
>>> get_all(user, passwd)
1
>>>
Enhancements:
- This release is mainly a rewrite.
- It now uses external libraries.
Download (0.060MB)
Added: 2006-01-23 License: Python License Price:
1369 downloads
Revealicious 1.0
Revealicious project is a set of graphic visualizations for your del.icio.us account. more>>
Revealicious project is a set of graphic visualizations for your del.icio.us account.
Revealicious is a set of three interactive visualizations to browse the tags and posts from your del.icio.us account.
It is an experimental project that tries to demonstrate the importance of interactive graphical representations when it comes to understanding a set of information.
The visualizations are implemented in ActionScript 2.0 and use an MTASC port of Ladislav Zigos Tweening Prototypes, included with the source code.
All applets are in the Sources directory, where you only have to type "make" in
the subdirectories to compile a fresh version of the applets (but this is not
needed, as they are already compiled).
There is a "bookmark.xml" file, which is the one used in the demo. You can
replace it with your own by using CURL:
curl --user LOGIN:PASSWORD -o bookmarks.xml
-O http://del.icio.us/api/posts/all
This will retrieve all your posts from del.icio.us.
<<lessRevealicious is a set of three interactive visualizations to browse the tags and posts from your del.icio.us account.
It is an experimental project that tries to demonstrate the importance of interactive graphical representations when it comes to understanding a set of information.
The visualizations are implemented in ActionScript 2.0 and use an MTASC port of Ladislav Zigos Tweening Prototypes, included with the source code.
All applets are in the Sources directory, where you only have to type "make" in
the subdirectories to compile a fresh version of the applets (but this is not
needed, as they are already compiled).
There is a "bookmark.xml" file, which is the one used in the demo. You can
replace it with your own by using CURL:
curl --user LOGIN:PASSWORD -o bookmarks.xml
-O http://del.icio.us/api/posts/all
This will retrieve all your posts from del.icio.us.
Download (0.51MB)
Added: 2007-02-01 License: BSD License Price:
995 downloads
delicious python 0.3.3
delicious python lets you access the Web service of del.icio.us via its API through Python. more>>
delicious python lets you access the Web service of del.icio.us via its API through Python. It uses only the standard Python library an is written in same language.
Installation instructions:
download and unzip
run as root from unzipped directory
python setup.py install
run python and load library with
import pydelicious
<<lessInstallation instructions:
download and unzip
run as root from unzipped directory
python setup.py install
run python and load library with
import pydelicious
Download (0.12MB)
Added: 2006-06-22 License: GPL (GNU General Public License) Price:
1222 downloads
Rubilicious 0.2.0
Rubilicious project is a set of Del.icio.us bindings for Ruby. more>>
Rubilicious project is a set of Del.icio.us bindings for Ruby.
Youll need to create an account at Delicious in order to use Rubilicious. An RDoc-generated API reference is in doc/, and some simple examples are in examples/.
<<lessYoull need to create an account at Delicious in order to use Rubilicious. An RDoc-generated API reference is in doc/, and some simple examples are in examples/.
Download (0.043MB)
Added: 2006-09-11 License: BSD License Price:
1138 downloads
Gnomolicious 0.7.2
Gnomolicious is an GNOME applet that help you post links on the del.icio.us site simply by dragndropping them. more>>
Gnomolicious is an GNOME applet that help you post links on the del.icio.us site simply by dragndropping them.
Gnomolicious project is written in python using the pygtk bindings. The library used to connect on the del.icio.us API is the work of Frank Timmermann.
<<lessGnomolicious project is written in python using the pygtk bindings. The library used to connect on the del.icio.us API is the work of Frank Timmermann.
Download (0.035MB)
Added: 2006-04-08 License: GPL (GNU General Public License) Price:
1294 downloads
DeliK 0.5.2
DeliK is the KDE porting of Delibar. more>>
DeliK is the KDE porting of Delibar (http://www.rknet.it/program/delibar/). DeliK is a del.icio.us bookmark manager client, it will store all your bookmarks in the system bar so you can easily access to it by selecting the tag and then the link.
<<less Download (0.032MB)
Added: 2007-01-28 License: GPL (GNU General Public License) Price:
999 downloads
Net::Delicious::Simple 0.01
Net::Delicious::Simple is a Net::Delicious for backups. more>>
Net::Delicious::Simple is a Net::Delicious for backups.
SYNOPSIS
use Net::Delicious::Simple;
my $del = Net::Delicious->new(user => plki, pswd => secret);
print "$_->{href}n" for $del->all_posts;
__top
If you want to do anything interesting with del.icio.us automation, you probably want the Net::Delicious manpage. Its good. This module is not. Its just here to return all of your tags or posts as a basic Perl data structure.
This makes it very easy to store that structure using existing dumpers. In fact, it only exists to power delbackup, which dumps to YAML or Netscape::Bookmarks.
<<lessSYNOPSIS
use Net::Delicious::Simple;
my $del = Net::Delicious->new(user => plki, pswd => secret);
print "$_->{href}n" for $del->all_posts;
__top
If you want to do anything interesting with del.icio.us automation, you probably want the Net::Delicious manpage. Its good. This module is not. Its just here to return all of your tags or posts as a basic Perl data structure.
This makes it very easy to store that structure using existing dumpers. In fact, it only exists to power delbackup, which dumps to YAML or Netscape::Bookmarks.
Download (0.003MB)
Added: 2006-07-27 License: Perl Artistic License Price:
1184 downloads
Tag Editor 0.6
Tag Editor is a Firefox extension that generates tag links for your blog. more>>
Tag Editor is a Firefox extension that generates tag links for your blog. Its practically a tag editor for your blog.
Main features:
- Supports del.icio.us and Technorati style tag links
- Can get tag list from del.icio.us accounts
- Supports link attribute customization
- Supports tr-TR locale
<<lessMain features:
- Supports del.icio.us and Technorati style tag links
- Can get tag list from del.icio.us accounts
- Supports link attribute customization
- Supports tr-TR locale
Download (0.032MB)
Added: 2007-05-29 License: MPL (Mozilla Public License) Price:
542 downloads
url.markr 0.1
url.markr is a personal bookmark manager written in Ruby on Rails. more>>
url.markr is a personal bookmark manager written in Ruby on Rails. The project has support for tagging of bookmarks, RSS feeds of links for each tag, inline editing of bookmarks, and tag autocompletion on entering a new bookmark.
It has public and private bookmarks. You can view public bookmarks without the need to login. You can also choose to import your existing del.icio.us bookmarks, along with tags.
<<lessIt has public and private bookmarks. You can view public bookmarks without the need to login. You can also choose to import your existing del.icio.us bookmarks, along with tags.
Download (0.24MB)
Added: 2006-11-28 License: GPL (GNU General Public License) Price:
1060 downloads
Flock 0.9.0.2
Flock is the ultimate web browser based on the popular Firefox. more>>
Flock is the ultimate web browser based on the popular Firefox.
Welcome to the Flock Developer Preview, aka the Flock 0.5pre developer snapshot. If you have made it this far, chances are that you are aware of the risks associated with software that is nestled somewhere between the alpha and beta states.
While we are very excited about what we are doing, we want to make sure that you have been fully forewarned that this browser will crash from time to time and that any settings you save in this browser may quite possibly be erased, lost, or overwritten! Please have a backup of your blog posts and your shared bookmarks! Given that, we strongly recommend that you proceed with caution. Still here? Great!
So before you get started, please read through these release notes. This will give you some of the relevant information you will need to get up and running. Also, if you have general questions about Flock, who we are, what we do, and how we get away with it, please check out flock.com. Thanks for your interest in Flock; we hope you enjoy your stay.
Flock Developer Preview includes a number of features and services that make it fun and easy to talk back to the web and organize, share and retrieve interesting web pages.
Main features:
- The Blog Manager
- The Flickr Topbar
- RSS integration
- Favorites with del.icio.us integration
- The Shelf
- History Search
Flock Developer Preview is now available.
Our code couldnt wait any longer to be free!
But! This preview aint for the faint of heart! If youre the bleeding-edge type and dont mind a few scrapes and busted knees from time to time, feel free to give it a whirl.
Weve got interesting ideas in this thing. We want to know what weve done right how we could improve. And weve got a lot of work ahead of us!
- Flock still doesnt import your Firefox or IE favorites
- Flock does support Flash, but other plug-ins have NOT been tested
- While we have ten or so of the most popular Firefox extensions working, we need to come up a way to make most Firefox extensions working in Flock and/or cajole extension authors to make their extensions work with Flock
- A weird timestamp/debug window shows up when you publish a blog post. Were on the case. But your post will get published just fine
- Firefox themes do not work with Flock
- Choice! We like it as much as you do, but we must crawl before we can walk. While we support a number of blogging platforms, we dont yet offer a choice of social bookmark services or photo sharing services
- Blogging platforms: WordPress and Blogger work pretty well. There are some problems still with Movable Type. We havent tested any other blogging platforms
- Bad things happen if you say "Yes, share my bookmarks" and then dont enter del.icio.us account info
Finally, there is a list of several hundred bug reports and ideas for feature improvements, including some bugs that will make your browser crash. So consider this software experimental, and be prepared for crashes and occasional data losses. We do not recommend that you use Flock 0.5 as your main web browser.
<<lessWelcome to the Flock Developer Preview, aka the Flock 0.5pre developer snapshot. If you have made it this far, chances are that you are aware of the risks associated with software that is nestled somewhere between the alpha and beta states.
While we are very excited about what we are doing, we want to make sure that you have been fully forewarned that this browser will crash from time to time and that any settings you save in this browser may quite possibly be erased, lost, or overwritten! Please have a backup of your blog posts and your shared bookmarks! Given that, we strongly recommend that you proceed with caution. Still here? Great!
So before you get started, please read through these release notes. This will give you some of the relevant information you will need to get up and running. Also, if you have general questions about Flock, who we are, what we do, and how we get away with it, please check out flock.com. Thanks for your interest in Flock; we hope you enjoy your stay.
Flock Developer Preview includes a number of features and services that make it fun and easy to talk back to the web and organize, share and retrieve interesting web pages.
Main features:
- The Blog Manager
- The Flickr Topbar
- RSS integration
- Favorites with del.icio.us integration
- The Shelf
- History Search
Flock Developer Preview is now available.
Our code couldnt wait any longer to be free!
But! This preview aint for the faint of heart! If youre the bleeding-edge type and dont mind a few scrapes and busted knees from time to time, feel free to give it a whirl.
Weve got interesting ideas in this thing. We want to know what weve done right how we could improve. And weve got a lot of work ahead of us!
- Flock still doesnt import your Firefox or IE favorites
- Flock does support Flash, but other plug-ins have NOT been tested
- While we have ten or so of the most popular Firefox extensions working, we need to come up a way to make most Firefox extensions working in Flock and/or cajole extension authors to make their extensions work with Flock
- A weird timestamp/debug window shows up when you publish a blog post. Were on the case. But your post will get published just fine
- Firefox themes do not work with Flock
- Choice! We like it as much as you do, but we must crawl before we can walk. While we support a number of blogging platforms, we dont yet offer a choice of social bookmark services or photo sharing services
- Blogging platforms: WordPress and Blogger work pretty well. There are some problems still with Movable Type. We havent tested any other blogging platforms
- Bad things happen if you say "Yes, share my bookmarks" and then dont enter del.icio.us account info
Finally, there is a list of several hundred bug reports and ideas for feature improvements, including some bugs that will make your browser crash. So consider this software experimental, and be prepared for crashes and occasional data losses. We do not recommend that you use Flock 0.5 as your main web browser.
Download (10.7MB)
Added: 2007-08-01 License: GPL (GNU General Public License) Price:
815 downloads
Plagger 0.7.11
Plagger is a pluggable RSS/Atom feed aggregator written in Perl. more>>
Plagger is a pluggable Atom/RSS feed aggregator written in Perl.
Everything is implemented as a small plugin and you can mash them up together using Plagger core API and plugin hooks.
You can think of Plagger as a blosxom or qpsmtpd for RSS aggregator.
Plagger comes with various plugin API hooks so that third-party plugins can extend:
Subscription (Bloglines, Google Reader, My Yahoo!, OPML)
Custom Feed (mixi, Mailman, Google News)
Filter/Tag Content (del.icio.us, Technorati, URLBL, FeedBurner)
Smart Feed (Tag, Rating, Enclosure)
Widget on output (del.icio.us, Digg.com, Technorati, Bloglines, Blogpulse)
Publish (Gmail, SMS, CHTML, Mobile Mail, XHTML, JavaScript, IMAP, NNTP, PSP, iPod, metaWeblog, Atom)
Plugins can be enabled / disabled using condition modules (= rule-based). So you can do "Forward all the updates to my Gmail account, but if the title contains Plagger and bookmarked by 5 users on del.icio.us, SMS me as well."
By default, Plagger doesnt do anything with the 2 tough parts of aggregator: Crawling and User Interface, but lets other services/tools do it. My recommendation is to use Bloglines for Crawling and Gmail for User Interface (and Search).
Since rev7, Plagger comes with a dumb aggregator plugin that fetches RSS/Atom feeds synchronously. You can use OPML remote subscription and the Simple aggregator to consume a small number of feeds. It doesnt do de-duplication of feed updates yet.
Were in the active development right now. API and config file format might be changed in the future.
<<lessEverything is implemented as a small plugin and you can mash them up together using Plagger core API and plugin hooks.
You can think of Plagger as a blosxom or qpsmtpd for RSS aggregator.
Plagger comes with various plugin API hooks so that third-party plugins can extend:
Subscription (Bloglines, Google Reader, My Yahoo!, OPML)
Custom Feed (mixi, Mailman, Google News)
Filter/Tag Content (del.icio.us, Technorati, URLBL, FeedBurner)
Smart Feed (Tag, Rating, Enclosure)
Widget on output (del.icio.us, Digg.com, Technorati, Bloglines, Blogpulse)
Publish (Gmail, SMS, CHTML, Mobile Mail, XHTML, JavaScript, IMAP, NNTP, PSP, iPod, metaWeblog, Atom)
Plugins can be enabled / disabled using condition modules (= rule-based). So you can do "Forward all the updates to my Gmail account, but if the title contains Plagger and bookmarked by 5 users on del.icio.us, SMS me as well."
By default, Plagger doesnt do anything with the 2 tough parts of aggregator: Crawling and User Interface, but lets other services/tools do it. My recommendation is to use Bloglines for Crawling and Gmail for User Interface (and Search).
Since rev7, Plagger comes with a dumb aggregator plugin that fetches RSS/Atom feeds synchronously. You can use OPML remote subscription and the Simple aggregator to consume a small number of feeds. It doesnt do de-duplication of feed updates yet.
Were in the active development right now. API and config file format might be changed in the future.
Download (0.043MB)
Added: 2006-09-14 License: Perl Artistic License Price:
1135 downloads
BlogBridge 5.0.1
BlogBridge is a Free, Open Source, Cross Platform RSS Aggregator for professional users. more>>
BlogBridge project is for true info-junkies who want a better way to wrangle all their RSS feeds from blogs and news into one pretty cool organizer. But it is also for people who need to learn things on the fly and want to stay current on select topics -- from internet security to product innovation to wine. With BlogBridge you quickly get to enjoy the latest, best, and most relevant stuff without the distraction and blind alleys (fascinating though they may be) that characterize most Internet searches. BlogBridge is also free and open source!
Much more than a standard rss reader, BlogBridge allows you to create filters, agents, search, slice and dice the information so that only the most important and relevant information bubbles up to the top. With SmartFeeds you can create standing queries and build them into a funnel that delivers what you need to know on a silver platter. There is direct integration with other well known web services such as Technorati, del.icio.us, Flickr, and many others.
<<lessMuch more than a standard rss reader, BlogBridge allows you to create filters, agents, search, slice and dice the information so that only the most important and relevant information bubbles up to the top. With SmartFeeds you can create standing queries and build them into a funnel that delivers what you need to know on a silver platter. There is direct integration with other well known web services such as Technorati, del.icio.us, Flickr, and many others.
Download (0.002MB)
Added: 2007-05-07 License: LGPL (GNU Lesser General Public License) Price:
934 downloads
Secleted [ 0 ] software to compare
- Page: 1 of 2
- 1
- 2
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above del.icio.us search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed