how to lose love handles
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 2027
Love Invaders 1.0k
Love Invaders project is a fun chunky retro game. more>>
Love Invaders project is a fun chunky retro game.
Love Invaders is a free retro game in which you may re-enact the famous "battle of 78" in space with your alien friends. It is simple to play, in classic style.
Love Invaders supports systems with correctly-configured OpenGL.
<<lessLove Invaders is a free retro game in which you may re-enact the famous "battle of 78" in space with your alien friends. It is simple to play, in classic style.
Love Invaders supports systems with correctly-configured OpenGL.
Download (1.3MB)
Added: 2006-11-13 License: Freeware Price:
1076 downloads
Sensibe IRC Handler 0.1
Sensible IRC Handler aims to provide an interface for Gaim that handles irc:// links in Firefox Browser. more>>
Sensible IRC Handler aims to provide an interface for Gaim that handles irc:// links in Firefox Browser. This will provide the same xchat-gnome functionality to handle irc:// links, but for Gaim.
Recent changes in inclusion of packages for future Ubuntu release will not include xchat-gnome because of recursive duplication with Gaims IRC capabilities, so IRC will be entirely handled in Gaim.
This will use Gaim as an IRC client, but will not alter the main Gaim configurations, this would create a temporary configurations for the current sessions. A functionality to add the IRC channels defined in InternetRelayChat in Gaim buddy list, will be easy, but will not add them by default. Adding them for a user requires further discussions.
Enhancements:
- GTK+ version 2.2.x
<<lessRecent changes in inclusion of packages for future Ubuntu release will not include xchat-gnome because of recursive duplication with Gaims IRC capabilities, so IRC will be entirely handled in Gaim.
This will use Gaim as an IRC client, but will not alter the main Gaim configurations, this would create a temporary configurations for the current sessions. A functionality to add the IRC channels defined in InternetRelayChat in Gaim buddy list, will be easy, but will not add them by default. Adding them for a user requires further discussions.
Enhancements:
- GTK+ version 2.2.x
Download (0.20MB)
Added: 2006-06-01 License: GPL (GNU General Public License) Price:
1242 downloads
HTTP::Handle 0.2
HTTP::Handle is a HTTP Class designed for streaming. more>>
HTTP::Handle is a HTTP Class designed for streaming.
SYNOPSIS
use HTTP::Handle;
my $http = HTTP::Handle->new( uri => "http://www.google.com/" );
$http->connect();
my $fd = $http->fd();
while () {
print "--> $_";
}
The HTTP::Handle module allows you to make HTTP requests and handle the data yourself. The general ideas is that you use this module to make a HTTP request and handle non-header data yourself. I needed such a feature for my mp3 player to listen to icecast streams.
HTTP::Handle->new()
Create a new HTTP::Handle object thingy.
Arguments possible:
url => "http://www.google.com/"
Sets the initial URL to connect to.
follow_redirects => [ 0 | 1 ]
Automatically follow HTTP redirects. This defaults to true (1). Set to 0 to disable this.
http_request => HASHREF
Any thing put in here will be sent as "key: value" in the http request string.
$http->connect()
Connect, send the http request, and process the response headers.
This function returns -1 on failure, undef otherwise. The reason for failure will be printed to STDERR.
$http->fd()
Get the file descriptor (socket) were using to connect.
$http->url( [ url_string ])
Get or set the URL. If a url string is passed, you will change the url that is requested. If no parameter is passed, a URI object will be returned containing the
$http->follow_redirects( [ 0 | 1 ] )
If a value is passed then you will set whether or not we will automatically follow HTTP 302 Redirects. If no value is passed, then we will return whatever the current option is.
Defaults to 1 (will follow redirects).
$http->http_request_string()
Returns a string containing the HTTP request and headers, this is used when
$http->connect() is called.
<<lessSYNOPSIS
use HTTP::Handle;
my $http = HTTP::Handle->new( uri => "http://www.google.com/" );
$http->connect();
my $fd = $http->fd();
while () {
print "--> $_";
}
The HTTP::Handle module allows you to make HTTP requests and handle the data yourself. The general ideas is that you use this module to make a HTTP request and handle non-header data yourself. I needed such a feature for my mp3 player to listen to icecast streams.
HTTP::Handle->new()
Create a new HTTP::Handle object thingy.
Arguments possible:
url => "http://www.google.com/"
Sets the initial URL to connect to.
follow_redirects => [ 0 | 1 ]
Automatically follow HTTP redirects. This defaults to true (1). Set to 0 to disable this.
http_request => HASHREF
Any thing put in here will be sent as "key: value" in the http request string.
$http->connect()
Connect, send the http request, and process the response headers.
This function returns -1 on failure, undef otherwise. The reason for failure will be printed to STDERR.
$http->fd()
Get the file descriptor (socket) were using to connect.
$http->url( [ url_string ])
Get or set the URL. If a url string is passed, you will change the url that is requested. If no parameter is passed, a URI object will be returned containing the
$http->follow_redirects( [ 0 | 1 ] )
If a value is passed then you will set whether or not we will automatically follow HTTP 302 Redirects. If no value is passed, then we will return whatever the current option is.
Defaults to 1 (will follow redirects).
$http->http_request_string()
Returns a string containing the HTTP request and headers, this is used when
$http->connect() is called.
Download (0.005MB)
Added: 2006-11-16 License: Perl Artistic License Price:
1072 downloads
Email::Handle 0.01
Email::Handle is a Objective Email Handler. more>>
Email::Handle is a Objective Email Handler.
SYNOPSIS
use Email::Handle;
my $email = Email::Handle->new(root@example.com);
print $email->is_valid ? yes : no;
print $email->obfuscate;
print $email->anonymize;
print $email;
$email->send(From => foo@example.com);
This module is also convenient for using on the DB application with Template and Class::DBI / DBIx::Class.
# setup the table that has column of email with this module
my $loader = Class::DBI::Loader->new(
...
namespace => MyApp
);
$loader->find_class(user)->has_a(email => Email::Handle);
# then output records with TT2
my $tmpl = Template->new;
$tmpl->process(
sample.tt,
{ users => $loader->find_class(user)->retrieve_all }
);
# You can write the template with some methods of this module like this
[% WHILE (user IN users) %]
[% user.email.obfuscate IF user.email.is_valid %]
[% END %]
<<lessSYNOPSIS
use Email::Handle;
my $email = Email::Handle->new(root@example.com);
print $email->is_valid ? yes : no;
print $email->obfuscate;
print $email->anonymize;
print $email;
$email->send(From => foo@example.com);
This module is also convenient for using on the DB application with Template and Class::DBI / DBIx::Class.
# setup the table that has column of email with this module
my $loader = Class::DBI::Loader->new(
...
namespace => MyApp
);
$loader->find_class(user)->has_a(email => Email::Handle);
# then output records with TT2
my $tmpl = Template->new;
$tmpl->process(
sample.tt,
{ users => $loader->find_class(user)->retrieve_all }
);
# You can write the template with some methods of this module like this
[% WHILE (user IN users) %]
[% user.email.obfuscate IF user.email.is_valid %]
[% END %]
Download (0.005MB)
Added: 2007-08-03 License: Perl Artistic License Price:
813 downloads
I Love Autumn Icons for Linux -
An icon collection designed to beautify your computer screen. more>> License:Free for personal non-commercial use, Includes a link back to author site
Comment:16 Cute Love Autumn Icons<<less
Download (252KB)
Added: 2009-04-14 License: Freeware Price: Free
192 downloads
DirHandle 5.8.8
DirHandle is a Perl module created to supply object methods for directory handles. more>>
DirHandle is a Perl module created to supply object methods for directory handles.
SYNOPSIS
use DirHandle;
$d = new DirHandle ".";
if (defined $d) {
while (defined($_ = $d->read)) { something($_); }
$d->rewind;
while (defined($_ = $d->read)) { something_else($_); }
undef $d;
}
The DirHandle method provide an alternative interface to the opendir(), closedir(), readdir(), and rewinddir() functions.
The only objective benefit to using DirHandle is that it avoids namespace pollution by creating globs to hold directory handles.
NOTES
On Mac OS (Classic), the path separator is :, not /, and the current directory is denoted as :, not .. You should be careful about specifying relative pathnames. While a full path always begins with a volume name, a relative pathname should always begin with a :. If specifying a volume name only, a trailing : is required.
<<lessSYNOPSIS
use DirHandle;
$d = new DirHandle ".";
if (defined $d) {
while (defined($_ = $d->read)) { something($_); }
$d->rewind;
while (defined($_ = $d->read)) { something_else($_); }
undef $d;
}
The DirHandle method provide an alternative interface to the opendir(), closedir(), readdir(), and rewinddir() functions.
The only objective benefit to using DirHandle is that it avoids namespace pollution by creating globs to hold directory handles.
NOTES
On Mac OS (Classic), the path separator is :, not /, and the current directory is denoted as :, not .. You should be careful about specifying relative pathnames. While a full path always begins with a volume name, a relative pathname should always begin with a :. If specifying a volume name only, a trailing : is required.
Download (12.2MB)
Added: 2007-05-15 License: Perl Artistic License Price:
895 downloads
Friend & Love 1.1.6.1
Friend & Love is a dating system script. more>>
Friend & Love project is a dating system script. Its features include profiles, adult profiles, sending of kisses, notes, emails, and winks, viewing of tracks, a display of whos online and whos new, and profile searches.
What the script will do for you
- Checks server requirement.
- Checks all files, directories are original, current version and present on your sever after upload.
- Checks if any file or directory has been corrupted during the upload.
- Checks files and directories permission.
- Setup database.
- Setup the simple configuration file for you.
What the script will not do
- Not help you to upgrade from previous version (Ubolratana1.1.5SP). This one supports only fresh install. We recommend you to not use this script for live website during beta version.
- Not help you for full configuration. You have to download config.php to change some variables by yourself.
Enhancements:
- This release removes the md5 hash check and enhances the installer.
- It includes newsletter registration.
- Some unused images have been removed.
- Minor bugs in several files have been fixed.
<<lessWhat the script will do for you
- Checks server requirement.
- Checks all files, directories are original, current version and present on your sever after upload.
- Checks if any file or directory has been corrupted during the upload.
- Checks files and directories permission.
- Setup database.
- Setup the simple configuration file for you.
What the script will not do
- Not help you to upgrade from previous version (Ubolratana1.1.5SP). This one supports only fresh install. We recommend you to not use this script for live website during beta version.
- Not help you for full configuration. You have to download config.php to change some variables by yourself.
Enhancements:
- This release removes the md5 hash check and enhances the installer.
- It includes newsletter registration.
- Some unused images have been removed.
- Minor bugs in several files have been fixed.
Download (0.36MB)
Added: 2006-11-17 License: GPL (GNU General Public License) Price:
1074 downloads
SiteInvoice Account Manager 2.0.1
SiteInvoice helps you manage your customer invoices in a simple and efficient manner. more>>
SiteInvoice project helps you manage your customer invoices in a simple and efficient manner.
Customers receive personalized email notices with invoices attached as PDFs, with reminders sent at 30, 45, and 60 days.
Handles multiple currencies and taxes. Never lose track of money you or your company are owed again.
<<lessCustomers receive personalized email notices with invoices attached as PDFs, with reminders sent at 30, 45, and 60 days.
Handles multiple currencies and taxes. Never lose track of money you or your company are owed again.
Download (0.33MB)
Added: 2006-06-07 License: GPL (GNU General Public License) Price:
1238 downloads
Old Tech 0.2
System Monitor Theme that started out as a High-Tech one, then devolved into this low-tech broken typewriter version. more>>
System Monitor Theme that started out as a High-Tech one, then devolved into this low-tech broken typewriter version.
I love the chaotic nature of it.
This is my 1st theme, please critique!
<<lessI love the chaotic nature of it.
This is my 1st theme, please critique!
Download (0.12MB)
Added: 2006-07-05 License: GPL (GNU General Public License) Price:
1206 downloads
ATA over Ethernet driver 49
ATA over Ethernet driver allows the Linux kernel to use the ATA over Ethernet (AoE) network protocol. more>>
ATA over Ethernet driver allows the Linux kernel to use the ATA over Ethernet (AoE) network protocol.
Using AoE, a Linux system can use AoE block devices like EtherDrive (R) storage blades.
The block devices appear as local device nodes (e.g. /dev/etherd/e0.0).
Enhancements:
- The driver now handles payloads larger than 4KiB, receives large packets without extra in-memory copy, and handles I/O requests so that the user can choose between the Linux I/O schedulers.
<<lessUsing AoE, a Linux system can use AoE block devices like EtherDrive (R) storage blades.
The block devices appear as local device nodes (e.g. /dev/etherd/e0.0).
Enhancements:
- The driver now handles payloads larger than 4KiB, receives large packets without extra in-memory copy, and handles I/O requests so that the user can choose between the Linux I/O schedulers.
Download (0.066MB)
Added: 2007-07-20 License: GPL (GNU General Public License) Price:
831 downloads
ShiftyGames Hangman 0.9.2
ShiftyGames Hangman project consists of a classic Hangman game. more>>
ShiftyGames Hangman project consists of a classic Hangman game.
ShiftyGames Hangman is a game that challenges your spelling skills in an Old Western style setting.
You must guess the letters of an unknown word, and if you guess incorrectly seven times, you lose.
<<lessShiftyGames Hangman is a game that challenges your spelling skills in an Old Western style setting.
You must guess the letters of an unknown word, and if you guess incorrectly seven times, you lose.
Download (0.99MB)
Added: 2006-12-27 License: GPL (GNU General Public License) Price:
1031 downloads
libslaktool 0.1.1
libslaktool provides library functions for advanced Slackware package management, including descriptions and version info. more>>
libslaktool provides library functions for advanced Slackware package management, including descriptions and version info.
Slaktool is a project to improve the Slackware package manager with all the features of the more advanced package managers while retaining the classic .tgz format. It does this by way of a generic library that links into the various GUI (or textmode) package managers.
The library handles all the package operations transparently, and does not base around any GUI or text console.
<<lessSlaktool is a project to improve the Slackware package manager with all the features of the more advanced package managers while retaining the classic .tgz format. It does this by way of a generic library that links into the various GUI (or textmode) package managers.
The library handles all the package operations transparently, and does not base around any GUI or text console.
Download (0.015MB)
Added: 2006-06-05 License: LGPL (GNU Lesser General Public License) Price:
1236 downloads
Twisted Mail 0.3.0
Twisted Mail provides client and server implementations of SMTP, POP3, and IMAP4. more>>
Twisted Mail project provides client and server implementations of SMTP, POP3, and IMAP4.
These differentiate themselves from the Python standard library implementations both by presenting a much higher-level, easy-to-use interface and in their server components, which allow the implementation of custom servers for each protocol without dealing with protocol-level issues.
Twisted Mail includes a simple demonstration email server which accepts messages over SMTP, stores them in a Maildir arrangement, and can serve them to clients over POP3.
Enhancements:
- The IMAP4 client now properly quotes usernames and passwords when necessary.
- It also handles unsolicited FLAGS responses.
- The IMAP4 server can now parse multiple literals in a single command and to FETCH requests with multiple BODY parts.
- A bug where Deferreds returned from IMAP4 client methods would not receive connection lost notification has been fixed.
- Startup time on OS X has been improved.
- The SMTP server has been sped up.
- The POP3 mailbox API has been expanded to allow Deferreds to be returned in some cases.
<<lessThese differentiate themselves from the Python standard library implementations both by presenting a much higher-level, easy-to-use interface and in their server components, which allow the implementation of custom servers for each protocol without dealing with protocol-level issues.
Twisted Mail includes a simple demonstration email server which accepts messages over SMTP, stores them in a Maildir arrangement, and can serve them to clients over POP3.
Enhancements:
- The IMAP4 client now properly quotes usernames and passwords when necessary.
- It also handles unsolicited FLAGS responses.
- The IMAP4 server can now parse multiple literals in a single command and to FETCH requests with multiple BODY parts.
- A bug where Deferreds returned from IMAP4 client methods would not receive connection lost notification has been fixed.
- Startup time on OS X has been improved.
- The SMTP server has been sped up.
- The POP3 mailbox API has been expanded to allow Deferreds to be returned in some cases.
Download (0.10MB)
Added: 2006-05-28 License: MIT/X Consortium License Price:
1245 downloads
Net::DAAP::Server::AAC 0.01
Net::DAAP::Server::AAC is a DAAP server that handles MP3 and AAC. more>>
Net::DAAP::Server::AAC is a DAAP server that handles MP3 and AAC.
SYNOPSIS
use POE;
use Net::DAAP::Server::AAC;
# same as Net::DAAP::Server
my $server = Net::DAAP::Server::AAC->new(
path => "/home/miyagawa/music",
port => 9999,
name => "My Music",
);
$poe_kernel->run;
Net::DAAP::Server::AAC is a Net::DAAP::Servers subclass that handles MP4/AAC files as well, in addition to the MP3 music files.
<<lessSYNOPSIS
use POE;
use Net::DAAP::Server::AAC;
# same as Net::DAAP::Server
my $server = Net::DAAP::Server::AAC->new(
path => "/home/miyagawa/music",
port => 9999,
name => "My Music",
);
$poe_kernel->run;
Net::DAAP::Server::AAC is a Net::DAAP::Servers subclass that handles MP4/AAC files as well, in addition to the MP3 music files.
Download (0.003MB)
Added: 2006-11-09 License: Perl Artistic License Price:
1080 downloads
TimeMon 4.0
TimeMon gives a graphical representation of where the CPU cycles are going. more>>
TimeMon gives a graphical representation of where the CPU cycles are going. TimeMon is coarse, but better than nothing.
The best feature is that it runs in an icon on your dock, so that you never lose it.
Originally by Scott Hess, this app has been ported to both GNUstep and Mac OS X.
<<lessThe best feature is that it runs in an icon on your dock, so that you never lose it.
Originally by Scott Hess, this app has been ported to both GNUstep and Mac OS X.
Download (0.26MB)
Added: 2006-02-21 License: Freely Distributable Price:
1340 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 how to lose love handles 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