Main > Free Download Search >

Free weight loss tips software for linux

weight loss tips

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 435
Weight Loss Recipe Book 3.1

Weight Loss Recipe Book 3.1


Weight Loss Recipe Book is a free, online, community-built recipe book. more>>
Weight Loss Recipe Book is a free, online, community-built recipe book. Weight Loss Recipe Book contains everything you need to allow your web site visitors to submit recipes and everything your administrator needs to administer the recipes.
When a visitor submits a recipe, the recipe is added to a database and awaits approval from the administrator before being added to the public site.
Main features:
- Community built, meaning you just have to approve entries and watch your web site expand!
- Captcha validation to prevent automated entries into the recipe book.
- Complete administrator system - add administrators, recipe categories, manage recipes and more!
- Best of all, Weight Loss Recipe Book is totally free!
<<less
Download (0.061MB)
Added: 2006-05-08 License: Freeware Price:
1267 downloads
ice fishing tips 1.0

ice fishing tips 1.0


ice fishing tips... ice fishing tips v1.0 release is New more>> <<less
Download (934KB)
Added: 2009-04-06 License: Freeware Price: Free
200 downloads
Life Tips 07

Life Tips 07


Its all about being You, but better! 10 tips about work, life, love, leadership. Applicable to people of all ages and stages of life including teenag... more>> <<less
Download (1KB)
Added: 2009-04-11 License: Freeware Price: Free
196 downloads
Windows tips and tricks 1.0

Windows tips and tricks 1.0


This is free collection of an authors advices. File format: chm.... more>> <<less
Download (41KB)
Added: 2009-04-02 License: Freeware Price: Free
259 downloads
Bio::NEXUS::WeightSet 0.67

Bio::NEXUS::WeightSet 0.67


Bio::NEXUS::WeightSet is a Perl module that represents column weights in alignment ( for each character). more>>
Bio::NEXUS::WeightSet is a Perl module that represents column weights in alignment ( for each character).

SYNOPSIS

new Bio::NEXUS::WeightSet($name, @weights, $iswt);

A module representing column weights in alignment (for each character)

METHODS

new

Title : new
Usage : $node = new Bio::NEXUS::WeightSet($name, @weights);
Function: Creates a new Bio::NEXUS::WeightSet object
Returns : Bio::NEXUS::WeightSet object
Args : none

set_weights

Title : set_weights
Usage : $weight->set_weights(@weights);
Function: stores it in the list weights
Returns : none
Args : list of weights

get_weights

Title : get_weights
Usage : @wts=@{$weightset->get_weights()};
Function: Returns the weights array
Returns : reference to array containing weights
Args : none

select_weights

Title : select_weights
Usage : $set->select_weights($columns);
Function: select a subset of characters
Returns : new self with subset of weights
Args : column numbers

is_wt

Title : is_wt
Usage : croak unless $weight->is_wt();
Function: Returns if object has weights (1 yes, 0 no)
Returns : weight existence (integer)
Args : none

set_name

Title : set_name
Usage : $weight->set_name($name);
Function: Sets the name of the weightset
Returns : none
Args : name (string)

get_name

Title : get_name
Usage : $name=$weight->get_name();
Function: Returns the name of the weightset
Returns : name (string)
Args : none

equals

Name : equals
Usage : $set->equals($another);
Function: compare if two WeightSet objects are equal
Returns : boolean
Args : an WeightSet object

<<less
Download (0.15MB)
Added: 2006-12-19 License: Perl Artistic License Price:
1039 downloads
bass fishing tips 1.0

bass fishing tips 1.0


bass fishing tips. most common bass fishing mistakes, free report!... more>> <<less
Download (7KB)
Added: 2009-04-18 License: Freeware Price: Free
191 downloads
largemouth bass fishing tips 1.1

largemouth bass fishing tips 1.1


largemouth bass fishing tips... more>> <<less
Download (2927KB)
Added: 2009-04-07 License: Freeware Price: Free
202 downloads
 
Other version of largemouth bass fishing tips
largemouth bass fishing tips 1.0largemouth bass fishing tips - largemouth bass fishing ... largemouth bass fishing
License:Freeware
Download (7KB)
204 downloads
Added: 2009-04-08
Kate OS 3.2

Kate OS 3.2


Kate OS is an independently developed light-weight Linux distribution. Some of its concepts were derived from Slackware Linux. more>>
Kate OS is an independently developed light-weight Linux distribution. Some of its concepts were derived from Slackware Linux.
Enhancements:
- Kate OS 3.2 is the third edition of the III series. It brings, as usual, many fixes, updates, and novelties the community has been waiting for. It includes a new graphical package management tool, KatePKG, which allows for easy and intuitive installation, removal, and updating of packages. KatePKG can handle any number of repositories, including user-created ones on the local drive. KatePKG was written in PHP using the PHP-GTK2 library. Kate OS 3.2 uses glibc library 2.5 which ensures binary compatibility with future editions. It also includes the Xfce environment version 4.4RC2, GNOME 2.16.2, KDE 3.5.5, OpenOffice.org 2.0.4, Firefox 2.0, and many other current applications.
<<less
Download (697MB)
Added: 2006-12-22 License: GPL (GNU General Public License) Price:
1063 downloads
Graph::Weighted 0.1301

Graph::Weighted 0.1301


Graph::Weighted is an abstract, weighted graph implementation. more>>
Graph::Weighted is an abstract, weighted graph implementation.

SYNOPSIS

use Graph::Weighted;

$g = Graph::Weighted->new(
data => [
[ 0, 1, 2, 0, 0 ], # A vertex with two edges.
[ 1, 0, 3, 0, 0 ], # "
[ 2, 3, 0, 0, 0 ], # "
[ 0, 0, 1, 0, 0 ], # A vertex with one edge.
[ 0, 0, 0, 0, 0 ] # A vertex with no edges.
]
);

$g = Graph::Weighted->new(
data => {
weight => {
a => { b => 1, c => 2 }, # A vertex with two edges.
b => { a => 1, c => 3 }, # "
c => { a => 2, b => 3 }, # "
d => { c => 1 }, # A vertex with one edge.
e => {} # A vertex with no edges.
}
foo => [
[ 1, 2, 3 ],
[ 4, 5, 6 ],
[ 7, 8, 9 ]
],
}
);

$g = Graph::Weighted->new(
data => $Math_Matrix_object,
retrieve_as => ARRAY,
);

$data = $g->weight_data;

$w = $g->graph_weight;

$w = $g->vertex_weight($v1);
$w = $g->vertex_weight($v1, $w + 1);

$w = $g->edge_weight($v1, $v2);
$w = $g->edge_weight($v1, $v2, $w + 1);

$vertices = $g->heaviest_vertices;
$vertices = $g->lightest_vertices;

$w = $g->max_weight; # Weight of the largest vertices.
$w = $g->min_weight; # Weight of the smallest vertices.

# Call the weight methods of the inherited Graph module.
$x = $g->MST_Kruskal;
$x = $g->APSP_Floyd_Warshall;
$x = $g->MST_Prim($p);

<<less
Download (0.011MB)
Added: 2007-08-07 License: Perl Artistic License Price:
812 downloads
Health Tip Buddy 1.3

Health Tip Buddy 1.3


Health Tip Buddy is an easy-to-install Web site tool that allows your visitors to sign up for email health tips. more>>
Health Tip Buddy Email System is a nice tool you can add to your web site that will allow your visitors to sign up for an automatic health-tip email list.
Its easy to change the look and feel of the e-mails to match your web site, and the system allows for e-mail restrictions so that you dont make your hosting provider unhappy.
Main features:
- Installation is easy, just upload the script and run the install file to automatically install your database tables and set up your configuration.
- Set the time between mailings. Want a weekly e-mailing? Daily? No problem you set the length.
- Easily set how many e-mails can be sent in a day or hour to avoid getting on your hosting providers bad side. The e-mails are stored and those that cant be sent right away will be sent later.
- Add custom health tips of your own!
- Visitor sign-up script includes a Captcha device to avoid automated signups by spammers.
<<less
Download (0.057MB)
Added: 2006-05-05 License: Freeware Price:
1268 downloads
PDL::Tips 2.4.3

PDL::Tips 2.4.3


PDL::Tips is a Perl module with small tidbits of useful arcana. more>>
PDL::Tips is a Perl module with small tidbits of useful arcana. Programming tidbits and such.

SYNOPSIS
use PDL;

# Whatever happens here.

This page documents useful idioms, helpful hints and tips for using Perl Data Language v2.0.

Help

Use help help within perldl or the pdldoc program from the command line for access to the PerlDL documentation. HTML versions of the pages should also be present, in the HtmlDocs/PDL directory of the PDL distribution. To find this directory, try the following

perldl> foreach ( map{"$_/PDL/HtmlDocs"}@INC ) { p "$_n" if -d $_ }

Indexing idioms

The following code normalizes a bunch of vectors in $a. This works regardless of the dimensionality of $a.

$a /= $a->sumover->dummy(0);

What is actually happening?

If you want to see what the code is actually doing, try the command

PDL::Core::set_debugging(1);

somewhere. This spews out a huge amount of debug info for PDL into STDOUT. It is planned to eventually make this redirectable and the messages selectable more accurately.

Many of the messages come from Basic/Core/pdlapi.c and you can look at the source to see what is going on.

If you have any extra time to work on these mechanisms, infrom the pdl-porters mailing list.

<<less
Download (2.1MB)
Added: 2007-07-07 License: Perl Artistic License Price:
839 downloads
Exercise Tip Email Buddy 1.3

Exercise Tip Email Buddy 1.3


Exercise Tip Buddy is an easy-to-install Web site tool that allows your visitors to sign up for an exercise tip mailing list. more>>
Do you have a health-related web site and need to start generating a good list of e-mail list subscribers for an upcoming newsletter?
Exercise Tip Buddy is an easy-to-install Web site tool that allows your visitors to sign up for an exercise tip mailing list. It works out-of the-box, so you can start building your subscriber list before you put together a full-blown newletter.
Exercise Tip Email Buddy comes with 26 exercise tips built in, so you already have a unique mailing twice a month for a full year!
Main features:
- Installation is easy, just upload the script and run the install file to automatically install your database tables and set up your configuration.
- Set the time between mailings. Want a weekly e-mailing? Daily? No problem you set the length.
- Easily set how many e-mails can be sent in a day or hour to avoid getting on your hosting providers bad side. The e-mails are stored and those that cant be sent right away will be sent later.
- Add custom exercise tips of your own!
- Visitor sign-up script includes a Captcha device to avoid automated signups by spammers.
<<less
Download (0.057MB)
Added: 2006-05-11 License: Freeware Price:
1261 downloads
Content Area Focus 0.1

Content Area Focus 0.1


Content Area Focus is an extension used to solve the content area focus loss. more>>
Content Area Focus is an extension used to solve the content area focus loss.

Target audience: those who are mostly using the keyboard to navigate around and switch between tabs; frequently they encounter situations in which the content area doesnt have focus.

Method: just giving focus to the content area for any "regular" keystrokes made when the main-window is in focus.

<<less
Download (0.001MB)
Added: 2007-04-03 License: MPL (Mozilla Public License) Price:
937 downloads
Chaos Visualization 0.9

Chaos Visualization 0.9


Chaos Visualization is a program for quickly calculating the amount of predictability in a very simple system. more>>
Chaos Visualization is a program for quickly calculating the amount of predictability in a very simple system: a spring with one side connected to the origin and the other to a weight under gravity.

This amount is chaos is visualized in TIFF images, which can be put in a sequence to show the evolution of chaotic behaviour in this system.

<<less
Download (0.022MB)
Added: 2006-10-30 License: GPL (GNU General Public License) Price:
1095 downloads
bitmask 1.5

bitmask 1.5


bitmask project is a light-weight and fast 2D collision detection library. more>>
bitmask project is a light-weight and fast 2D collision detection library.
The bitmask library provides pixel-perfect collision detection for use in games and other applications. Functions are provided for building bitmasks and testing them for intersection.
The routines can optionally provide a point of intersection and the number of overlapping pixels. The library aims for high performance and portability; it is written in ANSI C and is completely independent of the underlying graphics implementation.
Enhancements:
- Bugfix for bitmask_draw.
- Better testcases.
- Small performance improvements.
<<less
Download (0.016MB)
Added: 2006-11-18 License: LGPL (GNU Lesser General Public License) Price:
1074 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5