easily digestible foods
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 2006
Daily Diabetes Diet Counter 1.6
Daily Diabetes Diet Counter allows your web site visitors to count their calorie, starch, vegetable... more>>
Daily Diabetes Diet Counter project is a nice little Javascript tool that allows your web site visitors to count their calorie, starch, vegetable, fruit, milk, meat and fat intake throughout the day.
Since it runs on the visitors computer, they can use it off-line as well. The Daily Diabetes Diet Counter allows the visitor to choose their regular calorie intake level, and then determines the maximum number of food types they should have during the day, according to the the National Diabetes Information Clearinghouse.
Main features:
- Daily Diabetes Diet Counter is easy to install. Just unzip, upload and youre done!
- The Daily Diabetes Diet Counter is Javascript-based, so the visitor only needs to visit the page once and then can keep the page open throughout the day.
- Generates an ongoing list of foods and totals for all the different food types for easy printing later on.
- Best of all, Daily Diabetes Diet Counter is totally free!
<<lessSince it runs on the visitors computer, they can use it off-line as well. The Daily Diabetes Diet Counter allows the visitor to choose their regular calorie intake level, and then determines the maximum number of food types they should have during the day, according to the the National Diabetes Information Clearinghouse.
Main features:
- Daily Diabetes Diet Counter is easy to install. Just unzip, upload and youre done!
- The Daily Diabetes Diet Counter is Javascript-based, so the visitor only needs to visit the page once and then can keep the page open throughout the day.
- Generates an ongoing list of foods and totals for all the different food types for easy printing later on.
- Best of all, Daily Diabetes Diet Counter is totally free!
Download (0.031MB)
Added: 2006-05-09 License: Freeware Price:
720 downloads
AigaionPaste 0.3
AigaionPaste provides an open source bibliography management system. more>>
AigaionPaste provides an open source bibliography management system.
Aigaion is an open source bibliography management system with excellent bibtex im- and export facilities.
This plugin allows you to easily copy BIBTEX or RIS into your Aigaion biblography database.
<<lessAigaion is an open source bibliography management system with excellent bibtex im- and export facilities.
This plugin allows you to easily copy BIBTEX or RIS into your Aigaion biblography database.
Download (0.024MB)
Added: 2007-04-05 License: MPL (Mozilla Public License) Price:
935 downloads
QEMU Server Tools 0.2a
QEMU Server Tools is a set of simple command-line scripts for managing multiple QEMU VMs easily without requiring a GUI. more>>
QEMU Server Tools is a set of simple command-line scripts for managing multiple QEMU VMs easily without requiring a graphical frontend.
QEMU Server Tools organizes VMs into directories and mimics the usage of command line tools from VMware Server.
<<lessQEMU Server Tools organizes VMs into directories and mimics the usage of command line tools from VMware Server.
Download (0.012MB)
Added: 2006-10-05 License: GPL (GNU General Public License) Price:
1120 downloads
EasyChem 0.5
EasyChem is a software to draw chemical molecules easily and with high quality. more>>
EasyChem is a program designed to draw chemical molecules, written under Linux and using Gtk+ 2.
Main features:
- Drawing very easily ornaments (non-bonding electron pairs, ...)
- EPS exporting with LaTeX fonts (Computer Modern)
<<lessMain features:
- Drawing very easily ornaments (non-bonding electron pairs, ...)
- EPS exporting with LaTeX fonts (Computer Modern)
Download (0.24MB)
Added: 2005-04-01 License: GPL (GNU General Public License) Price:
1669 downloads
phpGuestbook 0.0.2
phpGuestbook provides a PHP3 application that allows you to easily include a guestbook into your Web site. more>>
phpGuestbook provides a PHP3 application that allows you to easily include a guestbook into your Web site.
Main features:
- fields setup configuration
- field-required setup configuration
- guestbook administration tools for admin
- visible/invisible mode for message
<<lessMain features:
- fields setup configuration
- field-required setup configuration
- guestbook administration tools for admin
- visible/invisible mode for message
Download (0.022MB)
Added: 2007-03-15 License: GPL (GNU General Public License) Price:
956 downloads
mainfo.org - Easy Page Edit 1.0
Easily change the content of a web page inside your browser. A firefox extensions that allows you to edit page content and locally save changes.... more>> <<less
Download (3KB)
Added: 2009-04-20 License: Freeware Price: Free
187 downloads
Privoxy Toggler 0.1
Privoxy Toggler enables you to toggle Privoxy more easily. more>>
Privoxy Toggler enables you to toggle Privoxy more easily.
Privoxy toggler. Changes to Privoxy version 3.0.3 made toggling Privoxy directly from a bookmarklet impossible.
This extension works around this security feature and makes it less intrusive to toggle Privoxy.
<<lessPrivoxy toggler. Changes to Privoxy version 3.0.3 made toggling Privoxy directly from a bookmarklet impossible.
This extension works around this security feature and makes it less intrusive to toggle Privoxy.
Download (0.014MB)
Added: 2007-03-30 License: MPL (Mozilla Public License) Price:
942 downloads
AI::FuzzyInference 0.05
AI::FuzzyInference is a Perl module to implement a Fuzzy Inference System. more>>
AI::FuzzyInference is a Perl module to implement a Fuzzy Inference System.
SYNOPSYS
use AI::FuzzyInference;
my $s = new AI::FuzzyInference;
$s->inVar(service, 0, 10,
poor => [0, 0,
2, 1,
4, 0],
good => [2, 0,
4, 1,
6, 0],
excellent => [4, 0,
6, 1,
8, 0],
amazing => [6, 0,
8, 1,
10, 0],
);
$s->inVar(food, 0, 10,
poor => [0, 0,
2, 1,
4, 0],
good => [2, 0,
4, 1,
6, 0],
excellent => [4, 0,
6, 1,
8, 0],
amazing => [6, 0,
8, 1,
10, 0],
);
$s->outVar(tip, 5, 30,
poor => [5, 0,
10, 1,
15, 0],
good => [10, 0,
15, 1,
20, 0],
excellent => [15, 0,
20, 1,
25, 0],
amazing => [20, 0,
25, 1,
30, 0],
);
$s->addRule(
service=poor & food=poor => tip=poor,
service=good & food=poor => tip=poor,
service=excellent & food=poor => tip=good,
service=amazing & food=poor => tip=good,
service=poor & food=good => tip=poor,
service=good & food=good => tip=good,
service=excellent & food=good => tip=good,
service=amazing & food=good => tip=excellent,
service=poor & food=excellent => tip=good,
service=good & food=excellent => tip=excellent,
service=excellent & food=excellent => tip=excellent,
service=amazing & food=excellent => tip=amazing,
service=poor & food=amazing => tip=good,
service=good & food=amazing => tip=excellent,
service=excellent & food=amazing => tip=amazing,
service=amazing & food=amazing => tip=amazing,
);
$s->compute(service => 2,
food => 7);
<<lessSYNOPSYS
use AI::FuzzyInference;
my $s = new AI::FuzzyInference;
$s->inVar(service, 0, 10,
poor => [0, 0,
2, 1,
4, 0],
good => [2, 0,
4, 1,
6, 0],
excellent => [4, 0,
6, 1,
8, 0],
amazing => [6, 0,
8, 1,
10, 0],
);
$s->inVar(food, 0, 10,
poor => [0, 0,
2, 1,
4, 0],
good => [2, 0,
4, 1,
6, 0],
excellent => [4, 0,
6, 1,
8, 0],
amazing => [6, 0,
8, 1,
10, 0],
);
$s->outVar(tip, 5, 30,
poor => [5, 0,
10, 1,
15, 0],
good => [10, 0,
15, 1,
20, 0],
excellent => [15, 0,
20, 1,
25, 0],
amazing => [20, 0,
25, 1,
30, 0],
);
$s->addRule(
service=poor & food=poor => tip=poor,
service=good & food=poor => tip=poor,
service=excellent & food=poor => tip=good,
service=amazing & food=poor => tip=good,
service=poor & food=good => tip=poor,
service=good & food=good => tip=good,
service=excellent & food=good => tip=good,
service=amazing & food=good => tip=excellent,
service=poor & food=excellent => tip=good,
service=good & food=excellent => tip=excellent,
service=excellent & food=excellent => tip=excellent,
service=amazing & food=excellent => tip=amazing,
service=poor & food=amazing => tip=good,
service=good & food=amazing => tip=excellent,
service=excellent & food=amazing => tip=amazing,
service=amazing & food=amazing => tip=amazing,
);
$s->compute(service => 2,
food => 7);
Download (0.010MB)
Added: 2007-07-14 License: Perl Artistic License Price:
832 downloads
Coffee Break Icons for Linux -
For all those coffee lovers out there, a free Coffee Icon collection. more>> Description:
10 freeware icons inspired in some delicious coffee foods.
Content:
Apple, Breads, Cheese, Coffee cups, Coffee pot, Cookies, Toast<<less
Download (483KB)
Added: 2009-04-24 License: Freeware Price: Free
182 downloads
DateChooser 1.2.5
DateChooser is a Java class that allows a programmer to present the user with an input dialog for easily choosing a date. more>>
DateChooser is a Java class that allows a programmer to present the user with an input dialog for easily choosing a date and feeding it to the program.
<<less Download (0.026MB)
Added: 2007-03-23 License: GPL (GNU General Public License) Price:
946 downloads
FileBrowser-NG 0.4
FileBrowser-NG is a Web application that helps you easily navigate and see files that are stored on a Web server. more>>
FileBrowser-NG project is a Web application that helps you easily navigate and see files that are stored on a Web server.
<<less Download (0.87MB)
Added: 2007-06-14 License: GPL (GNU General Public License) Price:
865 downloads
segatex 3.10
segatex is a program even if not knowing much about SELinux commands, can easily set SELinux commands by GUI. more>>
segatex is a program even if not knowing much about SELinux commands, can easily set SELinux commands by GUI. Written in C++.
Requires boost library.
<<lessRequires boost library.
Download (0.041MB)
Added: 2007-08-14 License: GPL (GNU General Public License) Price:
801 downloads
Usplash Switcher 0.0.0svn20070519
Usplash Switcher is a small utility that allows you to easily switch your usplash (boot theme). more>>
Usplash Switcher is a small utility that allows you to easily switch your usplash (boot theme).
It is useful only if you have installed multiple usplash-artwork packages.
<<lessIt is useful only if you have installed multiple usplash-artwork packages.
Download (0.009MB)
Added: 2007-05-21 License: GPL (GNU General Public License) Price:
913 downloads
getfox.pl 1.0
getfox.pl is a script i hacked together to automate the fetching of certain comics strips. more>>
getfox.pl is a Perl script i hacked together to automate the fetching of certain comics strips.
Its quite easily modified to fit other sources than foxtrot.com.
<<lessIts quite easily modified to fit other sources than foxtrot.com.
Download (0.003MB)
Added: 2006-08-31 License: GPL (GNU General Public License) Price:
1149 downloads
ngrease 0.2.0
ngrease project is a simple metalanguage for defining new concepts easily on any level. more>>
ngrease project is a simple metalanguage for defining new concepts easily on any level.
It can define analysis, requirements, design and implementation (in any programming language), and transformations to produce lower level concepts (working software) from higher level concepts.
<<lessIt can define analysis, requirements, design and implementation (in any programming language), and transformations to produce lower level concepts (working software) from higher level concepts.
Download (MB)
Added: 2007-06-13 License: LGPL (GNU Lesser General Public License) Price:
863 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 easily digestible foods 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