read more blogger
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 2376
Bash Blogger 0.3.6
Bash Blogger is a shell script that generates CSS styled XHTML 1.1 static Web pages. more>>
Bash Blogger is a shell script that generates CSS styled XHTML 1.1 static Web pages.
Keeping up a website is basically just adding new content and a bunch of small repetitive tasks, e.g. updating the archives, updating the front page, etc. Bash scripting is good for automating repetitive tasks, so this works out pretty well.
Why program in the shell instead of (Perl, Python, etc)?
You may not have Perl, PHP or any number of the other scripting languages available on your hosting provider. Its a fairly safe bet that if you have shell access to your account, you can use Bash Blogger.
Enhancements:
- This release adds pingservices to notify technorati, blo.gs, etc. when a site is updated.
- It adds pingback support (autodiscovery and XML-RPC posting of pingback).
- User templates are now fully exposed.
- The default templates have been changed from XHTML 1.1 to HTML5 as per WHATWG recommendations.
- An ispell/aspell spellcheck menu option has been added.
- The welcome message code has been replaced with functions to make articles "sticky".
<<lessKeeping up a website is basically just adding new content and a bunch of small repetitive tasks, e.g. updating the archives, updating the front page, etc. Bash scripting is good for automating repetitive tasks, so this works out pretty well.
Why program in the shell instead of (Perl, Python, etc)?
You may not have Perl, PHP or any number of the other scripting languages available on your hosting provider. Its a fairly safe bet that if you have shell access to your account, you can use Bash Blogger.
Enhancements:
- This release adds pingservices to notify technorati, blo.gs, etc. when a site is updated.
- It adds pingback support (autodiscovery and XML-RPC posting of pingback).
- User templates are now fully exposed.
- The default templates have been changed from XHTML 1.1 to HTML5 as per WHATWG recommendations.
- An ispell/aspell spellcheck menu option has been added.
- The welcome message code has been replaced with functions to make articles "sticky".
Download (0.032MB)
Added: 2007-07-28 License: GPL (GNU General Public License) Price:
822 downloads
Net::Blogger 1.02
Net::Blogger is an OOP-ish interface for accessing a weblog via the Blogger XML-RPC API. more>>
Net::Blogger is an OOP-ish interface for accessing a weblog via the Blogger XML-RPC API.
SYNOPSIS
Top
use Net::Blogger;
my $b = Net::Blogger->new(appkey=>APPKEY);
$b->BlogId(BLOGID);
$b->Username(USERNAME);
$b->Password(PASSWORD);
$b->BlogId($b->GetBlogId(blogname=>superfoobar));
# Get recent posts
my ($ok,@p) = $b->getRecentPosts(numposts=>20);
if (! $ok) {
croak $b->LastError();
}
map { print "t $_->{postid}n"; } @p;
# Post from a file
my ($ok,@p) = $b->PostFromFile(file=>"/usr/blogger-test");
if (! $ok) {
croak $b->LastError();
}
# Deleting posts
map {
$b->deletePost(postid=>"$_") || croak $b->LastError();
} @p;
# Getting and setting templates
my $t = $b->getTemplate(type => main);
$b->setTemplate(type=>main,template=>$t) || croak $b->LastError();
# New post
my $txt = "hello world.";
my $id = $b->newPost(postbody=>$txt) || croak $b->LastError();
# Get post
my $post = $b->getPost($id) || croak $b->LastError();
print "Text for last post was $post->{content}n";
Blogger.pm provides an OOP-ish interface for accessing a weblog via the Blogger XML-RPC API.
<<lessSYNOPSIS
Top
use Net::Blogger;
my $b = Net::Blogger->new(appkey=>APPKEY);
$b->BlogId(BLOGID);
$b->Username(USERNAME);
$b->Password(PASSWORD);
$b->BlogId($b->GetBlogId(blogname=>superfoobar));
# Get recent posts
my ($ok,@p) = $b->getRecentPosts(numposts=>20);
if (! $ok) {
croak $b->LastError();
}
map { print "t $_->{postid}n"; } @p;
# Post from a file
my ($ok,@p) = $b->PostFromFile(file=>"/usr/blogger-test");
if (! $ok) {
croak $b->LastError();
}
# Deleting posts
map {
$b->deletePost(postid=>"$_") || croak $b->LastError();
} @p;
# Getting and setting templates
my $t = $b->getTemplate(type => main);
$b->setTemplate(type=>main,template=>$t) || croak $b->LastError();
# New post
my $txt = "hello world.";
my $id = $b->newPost(postbody=>$txt) || croak $b->LastError();
# Get post
my $post = $b->getPost($id) || croak $b->LastError();
print "Text for last post was $post->{content}n";
Blogger.pm provides an OOP-ish interface for accessing a weblog via the Blogger XML-RPC API.
Download (0.024MB)
Added: 2006-09-28 License: Perl Artistic License Price:
1123 downloads
Bashblogger 0.3.5
Bash Blogger is a small, bash-powered, weblog engine. more>>
Bash Blogger is a small, bash-powered, weblog engine. Bashblogger generates valid, semantic, XHTML 1.1 webpages styled with a single CSS for layout and appearance without relying on popular, server-side scripting languages (i.e. Perl, Python, PHP, ASP, SSI, etc.).
Why program in the shell instead of (Perl, Python, etc)?
You may not have Perl, PHP or any number of the other scripting languages available on your hosting provider. Its a fairly safe bet that if you have shell access to your account, you can use Bash Blogger.
Enhancements:
- When I change the name of an article and rebuild the site the name change only changes in the bash blogger menu. The index/article etc ... still list the original title. FIXED
- If you attempt to delete an article and fail to confirm with Y/n (just press enter) bblog exits instead of returning to previous menu. FIXED
<<lessWhy program in the shell instead of (Perl, Python, etc)?
You may not have Perl, PHP or any number of the other scripting languages available on your hosting provider. Its a fairly safe bet that if you have shell access to your account, you can use Bash Blogger.
Enhancements:
- When I change the name of an article and rebuild the site the name change only changes in the bash blogger menu. The index/article etc ... still list the original title. FIXED
- If you attempt to delete an article and fail to confirm with Y/n (just press enter) bblog exits instead of returning to previous menu. FIXED
Download (0.024MB)
Added: 2006-10-04 License: GPL (GNU General Public License) Price:
1115 downloads
Read Local Lyrics 1.1
Read Local Lyrics is a little Python script works as a lyrics plugin. more>>
Read Local Lyrics is a little Python script works as a lyrics plugin.
If to some audio file, a corresponding ".txt" file can be found in the same folder, this is taken as the lyrics of the song.
<<lessIf to some audio file, a corresponding ".txt" file can be found in the same folder, this is taken as the lyrics of the song.
Download (0.030MB)
Added: 2006-11-16 License: GPL (GNU General Public License) Price:
1072 downloads
Dappad notebook sidebar 1.0
Dappad notebook sidebar is an extension that lets you write and read notes in the Firefox sidebar. more>>
Dappad notebook sidebar is an extension that lets you write and read notes in the Firefox sidebar.
You have both public and private notes in one place. Your public notes can be shared with friends.
Notes are written in rich format, you can copy and paste content from web pages, Word documents and Excel spreadsheets.
Your notes are saved in folders, and can be tagged for quick browsing.
<<lessYou have both public and private notes in one place. Your public notes can be shared with friends.
Notes are written in rich format, you can copy and paste content from web pages, Word documents and Excel spreadsheets.
Your notes are saved in folders, and can be tagged for quick browsing.
Download (0.11MB)
Added: 2007-05-07 License: MPL (Mozilla Public License) Price:
900 downloads
Gnome-Blog 0.9.1
Gnome-blog project is a panel applet that can post to BloggerAPI compatible blogs. more>>
Gnome-blog project is a panel applet that can post to BloggerAPI compatible blogs.
* Clean interface doesnt get in the way of what youre writing
* WYSIWYG styled text support
* Entries can be written gradually over the course of a day, popping gnome blog open and closed as you have thoughts to jot down and then posting at the end of the day
* Operates as a panel object/applet or a standalone application
* Supports many different kinds of blogs
* New Spell checking
* New Drag and drop images into your blog entry (if your blog supports it)
Supported Blogs:
* Blogger.com / Blogspot.com
* Advogato.org
* Movable Type
* New WordPress
* New LiveJournal.com
* Pyblosxom
* Any other blog using bloggerAPI or MetaWeblog
<<less* Clean interface doesnt get in the way of what youre writing
* WYSIWYG styled text support
* Entries can be written gradually over the course of a day, popping gnome blog open and closed as you have thoughts to jot down and then posting at the end of the day
* Operates as a panel object/applet or a standalone application
* Supports many different kinds of blogs
* New Spell checking
* New Drag and drop images into your blog entry (if your blog supports it)
Supported Blogs:
* Blogger.com / Blogspot.com
* Advogato.org
* Movable Type
* New WordPress
* New LiveJournal.com
* Pyblosxom
* Any other blog using bloggerAPI or MetaWeblog
Download (0.19MB)
Added: 2006-06-22 License: GPL (GNU General Public License) Price:
1220 downloads
Feedn Read 0.6.0b
Feedn Read (FnR) is a free Java based open source newsfeed reader. more>>
Feedn Read (FnR) is a free Java based open source newsfeed reader. It is powered by the Sun ROME syndication framework and therefore supports all current formats (RSS 0.90, 0.91, 0.92, 0.93, 0.94, 1.00, 2.00, ATOM 0.30 and 1.00).
It disposes of an intuitive, fast and responsive user interface using eclipse technologies, i.e. JFace and SWT. Thus it combines the platform independent Java world on one hand with a fast native user interface on the other hand.
Main features:
- Multi threaded application environment
- Multi language support (german and english attended at the moment)
- Multi tab style reading
- Tree based favorite management
- Newsfeed retrieval and update
- Newsfeed aggregation
- Scheduling for automatic newsfeed retrieval
- Easy news filtering
- Easy favorite filtering
- Archive support (recognizes already read news)
- Newsfeed caching support
- RSS enclosure support
- Podcast support
- System tray support
- System tray notifications
- Internal web browser
- OPML import
- OPML export
- Customizable interface
<<lessIt disposes of an intuitive, fast and responsive user interface using eclipse technologies, i.e. JFace and SWT. Thus it combines the platform independent Java world on one hand with a fast native user interface on the other hand.
Main features:
- Multi threaded application environment
- Multi language support (german and english attended at the moment)
- Multi tab style reading
- Tree based favorite management
- Newsfeed retrieval and update
- Newsfeed aggregation
- Scheduling for automatic newsfeed retrieval
- Easy news filtering
- Easy favorite filtering
- Archive support (recognizes already read news)
- Newsfeed caching support
- RSS enclosure support
- Podcast support
- System tray support
- System tray notifications
- Internal web browser
- OPML import
- OPML export
- Customizable interface
Download (4.8MB)
Added: 2006-06-18 License: Common Public License Price:
1226 downloads
PyQLogger 1.3.3.0
PyQLogger is a friendly GUI Blogger client. more>>
PyQLogger project is a friendly GUI Blogger client. It was developed by Reflog with help from Mightor, using PyQT toolkit. Currently it works on most flavors of Linux.
Main features:
- Simple and easy GUI
- Easy setup wizard
- Posts fetching from the blog for later editing and re-publishing
- Async and responsive UI
- Posts saving feature (drafts)
- On-Screen notifications of events
- Post editor with syntax highlighting (with optional QScintilla support)
- Post preview (with optional KHTML Support)
- Multiple blog support
- Post export
- Update notification (for pyqlogger itself)
- Pluggable features, like SpellChecker and others
- Unicode support
- Multiple blog providers
- Kde integration (optional)
Enhancements:
- Support for multiple accounts with different blog providers
- Allow enabling/disabling plugins
- Progress bar when uploading a picture
- Complete options dialog
- Options for each plugin separatly
- Allow plugins to store settings in main config file
- KDE Integration
- Write plugin to auto substitute keywords with preconfigured values
- Unified error/warning/info reporting mechanism, not just for Blogger status messages
- Cross-blog posting
- Plugin for pasting source code
- Support for other protocols, not just Atom Api
- Add support for stylesheets in post preview
- Ping to Weblogs.Com
- Import posts
- Add reST plugin
<<lessMain features:
- Simple and easy GUI
- Easy setup wizard
- Posts fetching from the blog for later editing and re-publishing
- Async and responsive UI
- Posts saving feature (drafts)
- On-Screen notifications of events
- Post editor with syntax highlighting (with optional QScintilla support)
- Post preview (with optional KHTML Support)
- Multiple blog support
- Post export
- Update notification (for pyqlogger itself)
- Pluggable features, like SpellChecker and others
- Unicode support
- Multiple blog providers
- Kde integration (optional)
Enhancements:
- Support for multiple accounts with different blog providers
- Allow enabling/disabling plugins
- Progress bar when uploading a picture
- Complete options dialog
- Options for each plugin separatly
- Allow plugins to store settings in main config file
- KDE Integration
- Write plugin to auto substitute keywords with preconfigured values
- Unified error/warning/info reporting mechanism, not just for Blogger status messages
- Cross-blog posting
- Plugin for pasting source code
- Support for other protocols, not just Atom Api
- Add support for stylesheets in post preview
- Ping to Weblogs.Com
- Import posts
- Add reST plugin
Download (0.19MB)
Added: 2005-06-02 License: GPL (GNU General Public License) Price:
1604 downloads
Blogger Integration 1.3
Blogger Integration is a package that can be used to import a blog published in Blogger.com into another site. more>>
Blogger Integration is a package that can be used to import a blog published in Blogger.com into another site. The project uses the blog page files exported with Blogger FTP blog publish support.
The class can process one or more blogs by parsing the blog page files to extract the posts, comments, images, etc. The processed blog pages can be rendered and published in another site with a different template.
This package can also integrate imported blogs with a site published with osCommerce.
Enhancements:
- The "Add to Yahoo" and "Add to Google" buttons are now inserted into the blog.
<<lessThe class can process one or more blogs by parsing the blog page files to extract the posts, comments, images, etc. The processed blog pages can be rendered and published in another site with a different template.
This package can also integrate imported blogs with a site published with osCommerce.
Enhancements:
- The "Add to Yahoo" and "Add to Google" buttons are now inserted into the blog.
Download (0.082MB)
Added: 2007-03-27 License: GPL (GNU General Public License) Price:
941 downloads
NewsCloud Media Platform Jan07b
NewsCloud Media Platform project is a LAMP-based social network community site for news aggregation and citizen journalism. more>>
NewsCloud Media Platform project is a LAMP-based social network community site for news aggregation and citizen journalism. The system integrates Smarty for template customization.
The NewsCloud Media Platform allows bloggers, developers, communities and organizations to integrate news gathering and discussions between their own Web sites and the NewsCloud community. The NewsCloud Media Platform is open source and can also be used to launch independent news-based community Web sites.
The NewsCloud Wiki will help you get more involved in using the NewsCloud Media Platform.
Guides for Bloggers and Groups
NewsCloud makes it easy for bloggers to share their work with our community and improve the news gathering elements of your own site. If you are a blogger interested in using NewsCloud to enhance and promote your blog, youll want to read our Guide for Bloggers. Our Guide for Groups is coming soon.
Guide for Developers
Whether you are interested in using our NewsCloud Web Services API to enhance your own Web site or want to get involved in using or extending the code behind NewsCloud, youll want to learn more about the NewsCloud Media Platform. Please visit our Guide for Developers for more information.
We also have set up a Google Groups Developer Forum for discussions and peer support.
Guide to Templates
NewsCloud provides a powerful templating system for customizing your journal, your groups and soon your own news site. If you are interested in designing the look and feel of your NewsCloud pages to brand your organization, non-profit, blog or Web site, please visit our Guide to Templates
Enhancements:
- We made some slight changes to make installation easier.
- We have a complete Debian install script on our Wiki now.
<<lessThe NewsCloud Media Platform allows bloggers, developers, communities and organizations to integrate news gathering and discussions between their own Web sites and the NewsCloud community. The NewsCloud Media Platform is open source and can also be used to launch independent news-based community Web sites.
The NewsCloud Wiki will help you get more involved in using the NewsCloud Media Platform.
Guides for Bloggers and Groups
NewsCloud makes it easy for bloggers to share their work with our community and improve the news gathering elements of your own site. If you are a blogger interested in using NewsCloud to enhance and promote your blog, youll want to read our Guide for Bloggers. Our Guide for Groups is coming soon.
Guide for Developers
Whether you are interested in using our NewsCloud Web Services API to enhance your own Web site or want to get involved in using or extending the code behind NewsCloud, youll want to learn more about the NewsCloud Media Platform. Please visit our Guide for Developers for more information.
We also have set up a Google Groups Developer Forum for discussions and peer support.
Guide to Templates
NewsCloud provides a powerful templating system for customizing your journal, your groups and soon your own news site. If you are interested in designing the look and feel of your NewsCloud pages to brand your organization, non-profit, blog or Web site, please visit our Guide to Templates
Enhancements:
- We made some slight changes to make installation easier.
- We have a complete Debian install script on our Wiki now.
Download (3.5MB)
Added: 2007-06-06 License: GPL (GNU General Public License) Price:
872 downloads
Gaim-RSS-Reader 0.1
Gaim-RSS-Reader is a plugin for the popular Gaim multi-protocol chat client. more>>
Gaim-RSS-Reader is a plugin for the popular Gaim multi-protocol chat client that adds the ability to monitor and read RSS feeds.
To install follow these commands:
./configure --prefix /usr --with-gaim=PATH
make
make install
<<lessTo install follow these commands:
./configure --prefix /usr --with-gaim=PATH
make
make install
Download (0.52MB)
Added: 2006-06-26 License: GPL (GNU General Public License) Price:
1215 downloads
Rediff Business 1.0
Rediff Business widget allows you to view and read the latest bussiness news from this Indian news source. more>>
Get up to date news about India Business from Rediff Business Edition RSS Feed.
Rediff Business widget brings, right on your desktop, the latest news from the bussiness world taken from this Indian news source.
Stay up-to-date with the latest bussiness news.
<<lessRediff Business widget brings, right on your desktop, the latest news from the bussiness world taken from this Indian news source.
Stay up-to-date with the latest bussiness news.
Download (92.4KB)
Added: 2009-04-25 License: Freeware Price:
191 downloads
Rawstudio 0.6
Rawstudio is an open source raw-image converter written in GTK+. more>>
Rawstudio is an open source raw-image converter written in GTK+.
Rawstudio can read and convert RAW-images from many different cameras, including Nikon and Canon. It uses dcraw.
Main features:
- Reads all dcraw supported formats
- Internal 16bit rgb
- Various post-shot controls (white balance, saturation and exposure compensation among others)
- Realtime histogram
<<lessRawstudio can read and convert RAW-images from many different cameras, including Nikon and Canon. It uses dcraw.
Main features:
- Reads all dcraw supported formats
- Internal 16bit rgb
- Various post-shot controls (white balance, saturation and exposure compensation among others)
- Realtime histogram
Download (0.26MB)
Added: 2007-08-14 License: GPL (GNU General Public License) Price:
813 downloads
firescope 0.1
firescope allows you to read kernel logs and other memory over FireWire. more>>
firescope is a port of Ben Herrenschmidts firescope tool to i386/x86-64 Linux with many additional changes. firescope allows you to read kernel logs and other memory over FireWire.
Enhancements:
- The program was ported to i386/x86-64.
- A log reader for printk buffers was implemented - the original could just talk to xmon.
- Lots of other changes were made.
<<lessEnhancements:
- The program was ported to i386/x86-64.
- A log reader for printk buffers was implemented - the original could just talk to xmon.
- Lots of other changes were made.
Download (0.007MB)
Added: 2006-04-04 License: GPL (GNU General Public License) Price:
1301 downloads
more.groupware 0.7.4
Moregroupware is groupware that includes standard modules like calendar, news, contacts, and more. more>>
Moregroupware is groupware that includes standard modules like news, contacts, calendar and more. To make a long story short: moregroupware is a web-based groupware application. Some of the features that are worth being mentioned:
- Contact/address management
- Webmail
- full-featured Calendar
- ToDo management
- News
- Project management
- Some preferences for each module
- available in different languages
- Skins based on Cascading Style Sheets
Main features:
- simple setup wizard
- easy module management and upgrade
- advanced rights management
- integrated online help
- easily skinnable with CSS
- based on the Smarty template engine
- works on MySQL and PostgreSQL
- available in more languages than just english
Enhancements:
- This release finally summarizes the tons of bugfixes done over the past year (more than that), and as usual we have updated the bundled libraries to current versions.
- Please read the NEWS-0.7.4 file and the documentation for more information.
- more.groupware is a web-based groupware written in PHP. Including modules like webmail, notes, todo, contacts, project management, calendar and others.
<<less- Contact/address management
- Webmail
- full-featured Calendar
- ToDo management
- News
- Project management
- Some preferences for each module
- available in different languages
- Skins based on Cascading Style Sheets
Main features:
- simple setup wizard
- easy module management and upgrade
- advanced rights management
- integrated online help
- easily skinnable with CSS
- based on the Smarty template engine
- works on MySQL and PostgreSQL
- available in more languages than just english
Enhancements:
- This release finally summarizes the tons of bugfixes done over the past year (more than that), and as usual we have updated the bundled libraries to current versions.
- Please read the NEWS-0.7.4 file and the documentation for more information.
- more.groupware is a web-based groupware written in PHP. Including modules like webmail, notes, todo, contacts, project management, calendar and others.
Download (2.3MB)
Added: 2006-04-28 License: GPL (GNU General Public License) Price:
1280 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above read more blogger 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