weight loss pills
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 346
Diet Tracker 1.5
Diet Tracker is a set of Perl codes to help you keep track of your diet progress. more>>
Diet Tracker is a set of Perl codes to help you keep track of your diet progress. Diet Tracker uses a MySQl database to store and display your weight variations and calorie intake as you progress in your diet.
This software was inspired by Jeremy Zawodnys Excel spreadsheet that does almost the same thing. I wanted a web version that was simple and meant for single user and not finding any, wrote one.
Main features:
- Web based
- Track calorie intake per day
- Graphs to track weight and intake history
- Moving average calculation to even out jitters
- Automatic BMI calculation
- Clean interface
<<lessThis software was inspired by Jeremy Zawodnys Excel spreadsheet that does almost the same thing. I wanted a web version that was simple and meant for single user and not finding any, wrote one.
Main features:
- Web based
- Track calorie intake per day
- Graphs to track weight and intake history
- Moving average calculation to even out jitters
- Automatic BMI calculation
- Clean interface
Download (0.14MB)
Added: 2007-07-23 License: GPL (GNU General Public License) Price:
826 downloads
KoffeePhoto 1.1 Beta
KoffeePhoto is a free software that allows you to manage your personal photo library. more>>
KoffeePhoto is a free software that allows you to manage your personal photo library. You can manage your photo albums with KoffeePhoto, and share them with your friends or family very easily. Your albums will be saved on the KoffeePhoto network, which will let you access them anytime and anywhere.
KoffeePhoto allows you to pick your photos on your hard disk or on your camera, and to organize them in albums. Thanks to several ways of sorting your photos, by date, topic, place, person, or any combination of these categories, you will always have an easy way to find all your photos again.
KoffeePhoto saves your whole photo library on its peer-to-peer KoffeePhoto network. This is carried out in a completely seamless way. Your photos are encrypted to ensure confidentiality, and are saved without any loss in quality (no format reduction, no data compression), and no storage expiration date. You can access your photo library from several computers if you wish. In case of any data loss, you can recover your whole photo library very easily!
<<lessKoffeePhoto allows you to pick your photos on your hard disk or on your camera, and to organize them in albums. Thanks to several ways of sorting your photos, by date, topic, place, person, or any combination of these categories, you will always have an easy way to find all your photos again.
KoffeePhoto saves your whole photo library on its peer-to-peer KoffeePhoto network. This is carried out in a completely seamless way. Your photos are encrypted to ensure confidentiality, and are saved without any loss in quality (no format reduction, no data compression), and no storage expiration date. You can access your photo library from several computers if you wish. In case of any data loss, you can recover your whole photo library very easily!
Download (0.003MB)
Added: 2006-10-20 License: Freeware Price:
1174 downloads
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!
<<lessWhen 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!
Download (0.061MB)
Added: 2006-05-08 License: Freeware Price:
1267 downloads
xmlenc 0.52
xmlenc provides a light-weight XML output library for Java. more>>
xmlenc provides a light-weight XML output library for Java.
It fills the gap between a light-weight parser like SAX, and a heavy-weight XML output library, like JDOM.
<<lessIt fills the gap between a light-weight parser like SAX, and a heavy-weight XML output library, like JDOM.
Download (0.10MB)
Added: 2007-02-23 License: BSD License Price:
974 downloads
OvBB 0.16a
OvBB is a light-weight and fast message board system that mimics vBulletin. more>>
OvBB project is a light-weight and fast message board system that mimics vBulletin 2.x.x in both look and behavior, while incorporating new features and functionality.
<<less Download (0.24MB)
Added: 2007-04-08 License: MIT/X Consortium License Price:
930 downloads
acidlaunch 0.5
acidlaunch is a light weight GTK based launch bar. more>>
acidlaunch is a light weight GTK based launch bar.
It is designed to be small and light, with a simple XML based configuration format. Its also designed to work well with blackbox.
<<lessIt is designed to be small and light, with a simple XML based configuration format. Its also designed to work well with blackbox.
Download (0.059MB)
Added: 2006-09-26 License: GPL (GNU General Public License) Price:
1123 downloads
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);
<<lessSYNOPSIS
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);
Download (0.011MB)
Added: 2007-08-07 License: Perl Artistic License Price:
812 downloads
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
<<lessSYNOPSIS
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
Download (0.15MB)
Added: 2006-12-19 License: Perl Artistic License Price:
1039 downloads
Dates 0.4.1
Dates project is a small, light-weight calendar that shares data with GNOME Evolution. more>>
Dates project is a small, light-weight calendar that shares data with GNOME Evolution.
Dates is a small, light-weight calendar that shares data with GNOME Evolution. Dates features an innovative, unified, zooming view and is designed for use on hand-held devices, such as the Nokia 770 or the Sharp Zaurus series of PDAs.
<<lessDates is a small, light-weight calendar that shares data with GNOME Evolution. Dates features an innovative, unified, zooming view and is designed for use on hand-held devices, such as the Nokia 770 or the Sharp Zaurus series of PDAs.
Download (0.43MB)
Added: 2007-04-14 License: GPL (GNU General Public License) Price:
924 downloads
The Anti-Diet Pill 2.1
Anti-Diet Pill is a tool you can add to your Web site that your dieting visitors will appreciate. more>>
Anti-Diet Pill project is a tool you can add to your Web site that your dieting visitors will appreciate.
The Anti-Diet Pill displays a randomly generated, daily-oriented, practical health tip to your visitors whenever they visit.
The program is easy to install and visually appealing. The program is XML based, so adding more tips is easy.
Main features:
- The Anti-Diet Pill is easy to install, just unzip, upload and youre done!
- XML-based database of tips for easy expansion
- Visually attractive and appealing
- The Anti-Diet Pill is easy to adapt to the look and feel of your health-related web site
<<lessThe Anti-Diet Pill displays a randomly generated, daily-oriented, practical health tip to your visitors whenever they visit.
The program is easy to install and visually appealing. The program is XML based, so adding more tips is easy.
Main features:
- The Anti-Diet Pill is easy to install, just unzip, upload and youre done!
- XML-based database of tips for easy expansion
- Visually attractive and appealing
- The Anti-Diet Pill is easy to adapt to the look and feel of your health-related web site
Download (0.031MB)
Added: 2006-05-05 License: GPL (GNU General Public License) Price:
1268 downloads
Help Hannahs Horse 0.2.d
Help Hannahs Horse is a fun and fast pacman / fastfood type game in SDL. more>>
Help Hannahs Horse is a fun and fast pacman / fastfood type game in SDL.
Help Hannahs Horse is a simple combi-clone of pacman and the Dizzy game Fastfood. The aim is to guide Hannah around the maze collecting the carrots (which move!) and the pills.
Collect a powerpill (blue and red) to enable Hannah to eat the ghosts for a short while.
Some mazes have gates that only Hannah or only the Ghosts can pass. Some need Hannah to collect the red key to open them.
Help Hannahs Horse project is licensed under the GPL (VERSION 2)
<<lessHelp Hannahs Horse is a simple combi-clone of pacman and the Dizzy game Fastfood. The aim is to guide Hannah around the maze collecting the carrots (which move!) and the pills.
Collect a powerpill (blue and red) to enable Hannah to eat the ghosts for a short while.
Some mazes have gates that only Hannah or only the Ghosts can pass. Some need Hannah to collect the red key to open them.
Help Hannahs Horse project is licensed under the GPL (VERSION 2)
Download (3.5MB)
Added: 2007-02-11 License: GPL (GNU General Public License) Price:
591 downloads
Yaws 1.68
Yaws is a HTTP high perfomance 1.1 webserver particularly well suited for dynamic-content webapplications. more>>
Yaws project is a HTTP high perfomance 1.1 webserver particularly well suited for dynamic-content webapplications.
Two separate modes of operations are supported:
- Standalone mode where Yaws runs as a regular webserver daemon. This is the default mode.
- Embedded mode where Yaws runs as an embedded webserver in another erlang application.
Yaws is entirely written in Erlang furthermore it is a multithreaded webserver where one Erlang light weight process is used to handle each client.
The main advantages of yaws compared to other Web technologies are performance and elegance. The performance comes from the underlying Erlang system and its ability to handle concurrent processes in an efficent way.
Its elegance comes from Erlang as well. Web applications dont have to be written in ugly adhoc languages.
<<lessTwo separate modes of operations are supported:
- Standalone mode where Yaws runs as a regular webserver daemon. This is the default mode.
- Embedded mode where Yaws runs as an embedded webserver in another erlang application.
Yaws is entirely written in Erlang furthermore it is a multithreaded webserver where one Erlang light weight process is used to handle each client.
The main advantages of yaws compared to other Web technologies are performance and elegance. The performance comes from the underlying Erlang system and its ability to handle concurrent processes in an efficent way.
Its elegance comes from Erlang as well. Web applications dont have to be written in ugly adhoc languages.
Download (0.79MB)
Added: 2007-02-08 License: BSD License Price:
988 downloads
ZXID 0.19
ZXID aims at full stack implementation of all federated identity management and identity web services protocols. more>>
ZXID aims at full stack implementation of all federated identity management and identity web services protocols. Initial goal is supporting SP role, followed by IdP and ID-WSF WSC roles.
ZXID is light weight, has small foot print, and is implemented in C.
ZXID is suitable for both high perrformance and embedded applications. Scripting languages are supported using SWIG, including Perl and PHP. The "full stack" nature of ZXID means its self contained and has minimal external library dependencies, the main one being OpenSSL.
Targeted Federated Identity Standards:
SAML 2.0
SAML 1.1
Liberty ID-FF 1.2
WS-Federation 1.0 Basic Profile
Targeted ID Web Services Standards:
Liberty ID-WSF 1.1
Liberty ID-WSF 2.0
<<lessZXID is light weight, has small foot print, and is implemented in C.
ZXID is suitable for both high perrformance and embedded applications. Scripting languages are supported using SWIG, including Perl and PHP. The "full stack" nature of ZXID means its self contained and has minimal external library dependencies, the main one being OpenSSL.
Targeted Federated Identity Standards:
SAML 2.0
SAML 1.1
Liberty ID-FF 1.2
WS-Federation 1.0 Basic Profile
Targeted ID Web Services Standards:
Liberty ID-WSF 1.1
Liberty ID-WSF 2.0
Download (2.6MB)
Added: 2007-08-13 License: The Apache License 2.0 Price:
803 downloads
EntityForge 0.2.2
EntityForge is a 3D graphical media display, animation, and manipulation tool. more>>
EntityForge is a 3D graphical media display, animation, and manipulation tool. EntityForgeEntityForge allows artists and animators to try out their work.
Its intended for several uses:
- WYSIWYG (What You See Is What You Get) display of character models and animations in a game engine environment.
- Conversion of character models and animations to and from various formats and packaging styles, with emphasis on Cal3D.
- Limited model post-editing. (Material swaps, animation weighting, etc.)
- Object composition for packaging and distribution by artists and world developers.
What actually works:
- Load Cal3d model and animation sets and render in realtime, fully textured and in wireframe.
- Animation tryout, including blending weight adjustments for multiple simultaneous animations.
- Toggle rendering of individual meshes.
- Arbitrarily change material assignments for individual meshes.
Enhancements:
- The code was updated for the latest versions of cal3d, gtkglextmm, and sigc++.
<<lessIts intended for several uses:
- WYSIWYG (What You See Is What You Get) display of character models and animations in a game engine environment.
- Conversion of character models and animations to and from various formats and packaging styles, with emphasis on Cal3D.
- Limited model post-editing. (Material swaps, animation weighting, etc.)
- Object composition for packaging and distribution by artists and world developers.
What actually works:
- Load Cal3d model and animation sets and render in realtime, fully textured and in wireframe.
- Animation tryout, including blending weight adjustments for multiple simultaneous animations.
- Toggle rendering of individual meshes.
- Arbitrarily change material assignments for individual meshes.
Enhancements:
- The code was updated for the latest versions of cal3d, gtkglextmm, and sigc++.
Download (0.18MB)
Added: 2006-05-22 License: GPL (GNU General Public License) Price:
1251 downloads
Libelf 0.8.9
Libelf lets you read, modify or create ELF files in an architecture-independent way. more>>
Libelf lets you read, modify or create ELF files in an architecture-independent way. Libelf takes care of size and endian issues. For example, you can process a file for SPARC processors on an Intel-based system.
This library is a clean-room rewrite of the System V Release 4 library, and is supposed to be source code compatible with it. It was meant primarily for porting SVR4 applications to other operating systems, but can also be used as the basis for new applications (and as a light-weight alternative to libbfd).
Enhancements:
- The data translator can now handle versioning sections with inconsistent data (as found on Solaris).
- Windows DLLs should work now as well.
<<lessThis library is a clean-room rewrite of the System V Release 4 library, and is supposed to be source code compatible with it. It was meant primarily for porting SVR4 applications to other operating systems, but can also be used as the basis for new applications (and as a light-weight alternative to libbfd).
Enhancements:
- The data translator can now handle versioning sections with inconsistent data (as found on Solaris).
- Windows DLLs should work now as well.
Download (0.14MB)
Added: 2006-08-22 License: GPL (GNU General Public License) Price:
1163 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 weight loss pills 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