Main > Free Download Search >

Free send me an angel software for linux

send me an angel

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 7533
KDM Theme Manager 1.1.3

KDM Theme Manager 1.1.3


KDM Theme manager is just what it says a theme Manager for KDM. more>>
KDM Theme manager is just what it says a theme Manager for KDM.
This control module allows you to easily add, remove and select any KDM theme you want.
Enhancements:
- Added Indonesian/Manaysian translation to the .desktop (thanks kucrut!)
- Finally applied a patch sent to me back when 1.1 was released, which fixes an issue when the kdmrc file could not be found. To the one who sent me this patch Sorry it took me so long, patch got lost in all my files and didnt apply cleanly due to the massive changes in 1.0.1 -> 1.1
- Added French, Italian and Japanese translations to the .desktop (thanks Lorenzo La Spada!)
- Fixed a typo which caused an error message to be printed when it shouldnt have.
- Updated documentation.
<<less
Download (0.67MB)
Added: 2007-04-27 License: GPL (GNU General Public License) Price:
910 downloads
Feed Me Links 1.0

Feed Me Links 1.0


Feed Me Links is a Web application for managing and sharing links. more>>
Feed Me Links is a Web application for managing and sharing links.

Feed Me Links provides many interesting features such as tagging, comments, RSS feeds, tag clouds, friend lists, a REST API for exporting, a browser sidebar, and Firefox and IE favorites import.

<<less
Download (0.15MB)
Added: 2005-11-22 License: MIT/X Consortium License Price:
1432 downloads
Mail::SendEasy 1.2

Mail::SendEasy 1.2


Mail::SendEasy can send plain/html e-mails through SMTP servers (platform independent). more>>
Mail::SendEasy can send plain/html e-mails through SMTP servers (platform independent). Supports SMTP authentication and attachments.

This modules will send in a easy way e-mails, and doesnt have dependencies. Soo, you dont need to install libnet.
It supports SMTP authentication and attachments.

USAGE:

OO

use Mail::SendEasy ;

my $mail = new Mail::SendEasy(
smtp => localhost ,
user => foo ,
pass => 123 ,
) ;

my $status = $mail->send(
from => sender@foo.com ,
from_title => Foo Name ,
reply => re@foo.com ,
error => error@foo.com ,
to => recp@domain.foo ,
cc => recpcopy@domain.foo ,
subject => "MAIL Test" ,
msg => "The Plain Msg..." ,
html => "The HTML Msg..." ,
msgid => "0101" ,
) ;

if (!$status) { print $mail->error ;}

STRUCTURED

use Mail::SendEasy ;

my $status = Mail::SendEasy::send(
smtp => localhost ,
user => foo ,
pass => 123 ,
from => sender@foo.com ,
from_title => Foo Name ,
reply => re@foo.com ,
error => error@foo.com ,
to => recp@domain.foo ,
cc => recpcopy@domain.foo ,
subject => "MAIL Test" ,
msg => "The Plain Msg..." ,
html => "The HTML Msg..." ,
msgid => "0101" ,
) ;

if (!$status) { Mail::SendEasy::error ;}

<<less
Download (0.011MB)
Added: 2007-08-02 License: Perl Artistic License Price:
816 downloads
Super Slide Me 1.0

Super Slide Me 1.0


Super Slide Me is an application to create image galleries. more>>
Super Slide Me is an application to create image galleries.

By a user-friendly interface, you can resize and rotate images and make slideshow presentations, eventually with sound in background.

<<less
Download (0.27MB)
Added: 2005-12-26 License: GPL (GNU General Public License) Price:
1401 downloads
Eat Me for Linux 1.0

Eat Me for Linux 1.0


Eat Me is a free, cute and funny set that contains 10 icons more>> Yay! Its halloween again and David has been kind enough to create an awesome set of spooky (er... funny and cute really) folder characters for us to use this year!<<less
Download (373KB)
Added: 2009-04-19 License: Freeware Price:
187 downloads
Send with Kopete 0.11

Send with Kopete 0.11


Send with Kopete is a servicemenu for sending files with Kopete application. more>>
Send with Kopete is a servicemenu for sending files with Kopete application. It shows a dialog containing all contacts in Kopete which are able to receive files and after selecting one of them, the file is sent to that contact.
Ive tested it only with jabber protocol (the only one I can use for sending files). Servicemenu was tested with KDE 3.5.4 and Kopete 0.12.2.
Although the script used by this servicemenu is very simple, Im sure there are some bugs, so feedback is very welcome.
Installation:
After decompressing the archive, you should put the swk.sh script somwhere in your PATH directory and eventually change its owner and acces permissions to be executable. The other file, send_with_kopete.desktop, should be placed in your servicemenus directory (in my case it is ~/.kde/share/apps/konqueror/servicemenus).
Enhancements:
- Fixed bug in script, which caused wrong handling of files containing spaces
<<less
Download (MB)
Added: 2006-10-06 License: GPL (GNU General Public License) Price:
1116 downloads
SMS::Send::DE::MeinBMW 0.02

SMS::Send::DE::MeinBMW 0.02


SMS::Send::DE::MeinBMW is an SMS::Send driver for the www.meinbmw.de website. more>>
SMS::Send::DE::MeinBMW is an SMS::Send driver for the www.meinbmw.de website.

SYNOPSIS

use SMS::Send;
# Get the sender and login
my $sender = SMS::Send->new(DE::MeinBMW,
_login => xx@yyy.de, # your email address
_password => mypasswd, # your reqistered password from www.meinbmw.de
);

# Send a message to ourself
my $sent = $sender->send_sms(
text => Messages have a limit of 160 chars,
to => +49 4 444 444,
);

# Did it send?
if ( $sent ) {
print "Sent test messagen";
} else {
print "Test message failedn";
}

SMS::Send::DE::MeinBMW is an regional SMS::Send driver for Germany that delivers messages via the http://www.meinbmw.de.

You must register to use this FREE service for all BMW drivers.
guesses, what I drive for a car.

<<less
Download (0.005MB)
Added: 2007-01-17 License: Perl Artistic License Price:
1011 downloads
Shed Skin 0.0.23

Shed Skin 0.0.23


Shed Skin is an experimental Python-to-C++ compiler. more>>
Shed Skin is an experimental Python-to-C++ compiler. Shed Skin accepts pure Python programs, and generates optimized C++ code. This means that, in combination with a C++ compiler, it allows for translation of Python programs into highly efficient machine language. For a set of 16 non-trivial test programs, measurements show a typical speedup of 2-40 over Psyco, about 12 on average, and 2-220 over CPython, about 45 on average (see Section 5 of my Masters Thesis on the right). Shed Skin also outputs annotated source code.
The high performance and elegant approach of Shed Skin (it is only 6000 lines!) come at a cost. First, it currently only accepts programs that are statically typed. This simply means that variables can only ever have a single type. So e.g. a = 1; a = 1 is not allowed. Of course, a single type can be abstract or generic (as in C++), so that e.g. a = A(); a = B(), where A and B have a common base class, is allowed.
Second, Python programs cannot currently freely use the Python standard library. However, some common imports are supported (see *_.py), and many others can be easily added. The problem is a practical one, since in theory it is possible to create bindings for most library modules. A simple work-around can be to only compile critical parts of a Python program, and communicate with it through e.g. files and standard in- and output. This way, the main program can use the full Python dynamics and standard library, and the whole program is written in pure Python.
Shed Skin is still alpha software, and there are some other minor, mostly temporary, limitations. Please read the Limitations section carefully, before trying to compile a program. The only thing I ask in return for making the software available under the GPL, is that you send me an email when you encounter a problem, that is not listed among these limitations. This is the fastest way to getting your program supported, since I typically do not fix problems I do not know about. Please also let me know if you would like me to implement certain library calls.
Enhancements:
- Support for __iadd__, __imul__, and such was added (but not for __ipow__ and __imod__).
- The set implementation was optimized.
- A string formatting problem was fixed (%% did not always work).
- Some bugs were fixed in generating extension modules.
- A particular inheritance problem was fixed.
<<less
Download (0.16MB)
Added: 2007-06-29 License: GPL (GNU General Public License) Price:
850 downloads
SMS::Send::TW::PChome 0.01

SMS::Send::TW::PChome 0.01


SMS::Send::TW::PChome is a SMS::Send driver for sms.pchome.com.tw. more>>
SMS::Send::TW::PChome is a SMS::Send driver for sms.pchome.com.tw.

SYNOPSIS

use SMS::Send::TW::PChome;

my $sender = SMS::Send->new(TW::PChome,
_username => UserName,
_password => Password,
_authcode => AuthCode,
);

my $sent = $sender->send_sms(
text => My very urgent message,
to => 0912345678,
);

<<less
Download (0.003MB)
Added: 2007-03-26 License: Perl Artistic License Price:
946 downloads
Galaxy Angels - Ranpha 0.2

Galaxy Angels - Ranpha 0.2


Galaxy Angels - Ranpha is a system monitoring SuperKaramba theme. more>>
Galaxy Angels - Ranpha is a system monitoring SuperKaramba theme.

The anime character in this theme is called ranpha from galaxy angels.

I was actually ask by someone to create a galaxy angels desktop monitor for windows. But like all other things i ported it to linux using karamba.

Comments welcome, the next karamba theme i will create might not be anime.

<<less
Download (0.070MB)
Added: 2006-06-28 License: GPL (GNU General Public License) Price:
1223 downloads
FeedBite Feed Me 0.1

FeedBite Feed Me 0.1


FeedBite Feed Me is a Firefox extension that adds Feed Me to the right-click and Tools menu. more>>
FeedBite Feed Me is a Firefox extension that adds Feed Me to the right-click and Tools menu. Use this option to easily add the current page to your FeedBite news blog (custom rss feed).

<<less
Download (0.010MB)
Added: 2007-06-06 License: MPL (Mozilla Public License) Price:
871 downloads
Dedalo 1.0

Dedalo 1.0


Dedalo allows the automatic drawing of the topology of a Cisco network utilizing CDP and SNMP. more>>
Dedalo allows the automatic drawing of the topology of a Cisco network utilizing CDP and SNMP.

Dedalo was created as a project for the course "Complements of network management" held by Dr. Luca Deri.

Inside the tarball is a pdf which contains the instructions for the compilation and its use (unfortunately its in italian, if you have problems compiling or using it send me an email).

During testing I noticed that it doesnt work on Catalyst 6500s, the topology isnt drawn well due of some inconsistencies on the port names announced via CDP.

I would like to receive feedback on Dedalos usefulness and functioning.
<<less
Download (0.098MB)
Added: 2006-01-24 License: GPL (GNU General Public License) Price:
1369 downloads
hdd monitor 1.3.2

hdd monitor 1.3.2


hdd monitor displays your hard disk drives and removable devices dynamically. more>>
hdd monitor displays your hard disk drives and removable devices dynamically. Need python-qt3 and python-imaging in order to work.

Here i come again !!

Sorry for all this mess with 1.3.* , as always i forgot things, and didnt do enough testing...

I am recruiting beta-testers !! Please send me a mail if you are interested.

Although this is still WIP (Work In Progress) for me, i release it. (I promised myself i wont make you wait too long, as i hate to wait for a new version of a program)

Now with the skins you can all get rid of the "hdd meter" text.

---- Some rules about the skins ----

The skin must be of 4 files, named as follow :
* top.png : the top of the theme
* bottom.png : need an explanation ?
* hdd.png : the background image of each and every device
* vumeter.png : the bar image itself

The images can be any size, the only thing you have to do is create a skin.conf (there is an example in the package) with the x and y positions of the bar on the hdd.png.

----- Next version info -----

For the next release i will focus on the configuration window, because it causes me problems to get the whole theme in a .skz file.

I will also be working on cool new features requested by a friend of mine, hdd monitor will rock soon !!

graphics based on the telemonitor by Shanachie (http://www.kde-look.org/content/show.php?content=35983)

Ask for any feature you want, ill try and do it if i got enough time.

<<less
Download (0.011MB)
Added: 2006-06-21 License: GPL (GNU General Public License) Price:
1287 downloads
gtk-send-pr 0.4.8

gtk-send-pr 0.4.8


gtk-send-pr is a problem report tool, designed to send reports to a GNATS database server using libesmtp to deliver mail. more>>
gtk-send-pr is a problem report tool, designed to send reports to a GNATS database server using libesmtp to deliver mail.

The program has a user friendly interface and lets you use any SMTP server, including support for AUTH and TLS, to send the report, removing the need for a local configured sendmail. gtk-send-pr is part of both the FreeBSD ports and NetBSDs pkgsrc.

<<less
Download (0.073MB)
Added: 2006-12-08 License: BSD License Price:
1050 downloads
Send To Thunderbird like sendToTb 1.1

Send To Thunderbird like sendToTb 1.1


Send To Thunderbird like sendToTb you can quick send images to Thunderbird or just resize it trought Service Menu. more>>
Send To Thunderbird like sendToTb you can quickly send images to Thunderbird or just resize it through Service Menu.


Just select images (.jpg only), right click -> Actions -> Send to Thunderbird.

<<less
Download (0.12MB)
Added: 2006-10-17 License: GPL (GNU General Public License) Price:
1112 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5