Main > Free Download Search >

Free natural home remedy software for linux

natural home remedy

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1049
Gentoox Home 5.0

Gentoox Home 5.0


Gentoox is an adaptation of the popular Linux distribution called Gentoo. more>>
Gentoox Linux is an adaptation of the popular source based Linux distribution called Gentoo. Gentoox Home retains all the features of the original (portage, sysvinit etc...) but has a patch system created from the ground up, by myself, which is specifically designed for Gentoox.

"Magic" (as I have labelled it) allows users to install new software, upgrade their kernel and fix bugs. To learn more about magic, run "magic usage" once you have installed Gentoox.

Gentoox runs along side games - you get 3 choices during installation: E, F and Native. Both E and F create a loopback filesystem meaning that none of your drives are formatted during installation (except for cache partitions). If you choose "Native", then your F: partition is formatted to ReiserFS (making it inaccessible to Xbox applications).

Gentoox can be loaded via a .xbe file, or from a Cromwell based BIOS (which can be flashed to your modchip during installation). When using E or F installations, you are totally risk free - if you dont like Gentoox, simply delete all the files it installs (about 7 in total) and its gone.

There are three versions of Gentoox: Pro Edition, Home Edition and Media Center Edition. All three are 100% free and opensource, the difference between Home and Pro is that the Home Edition has many software packages preinstalled and preconfigured for instant usablity straight out of the box where as Pro doesnt even have a graphical user interface let alone any "useful" applications.

Pro is a bare minimum installation for booting the system, the entire customisation of the OS is left in the users hands with Pro. Media Center edition is more of a "Plugin" than a separate distribution. It allows you to have a Media Center along with Gentoox Home or Pro.
<<less
Download (792.45MB)
Added: 2006-07-04 License: GPL (GNU General Public License) Price:
1224 downloads
Asterisk@Home 2.8

Asterisk@Home 2.8


The Asterisk@Home project enables the home user to quickly set up a VOIP Asterisk PBX. more>>
The Asterisk@Home Linux Distribution project enables the home user to quickly set up a VOIP Asterisk PBX. A web GUI makes configuration and operation easy. We also provide an xPL (home automation) interface for easy interaction with other devices in the home.
Main features:
- Asterisk 1.0.9
- Flash Operator Panel 0.21
- Festival Speech Engine version 1.95
- weather agi scripts
- wakeup calls
- Integrated WebMeetMe GUI
- AMP-1.10.008
- CentOS 3.5
- SugarCRM with Cisco XML Services interface + Click to Dial
- Music On Hold (mpg123)
- Fax support (spanDSP)
- xPL support
- Digium card auto-config
AMP (Asterisk Management Portal)
- AMP is a web GUI that allows the configuration of Asterisk without the need for editing config files. If you use AMP be careful not to make manual changes to the config files that will affect AMP?s operation.
Flash Operator Panel
- Flash Operator Panel is a real-time web interface to Asterisk. You can see what all of your extensions, trunks, and conferences are doing. We have extension 200 set up for testing. This is a live extension and will work as soon as a phone is registered to ext 200. The rest of the buttons are dummy objects for examples.
- The op_buttons.conf file has all of the configs for each button in Flash Operator Panel you can edit this using the Config Edit button on the maint menu. You must reboot the Asterisk or restart the panel service after you make changes. The normal config files for Flash Operator Panel end in .cfg we changed them to .conf so they would match the other Asterisk files.
Cisco XML Services
- Asterisk@Home has a Cisco XML Services that can be used to look up contacts in a database. Click on Web Address Book from the Asterisk@Home main menu. (user: admin password: password) and enter all of your contacts and their phone numbers.
Music On Hold (mpg123)
- Asterisk@Home has now uses mpg123 for music on hold. Put a call on hold and they hear music not dead air!
Fax support (SpanDSP)
- SpanDSP allows Asterisk to receive faxes. You can set this up in AMP.
<<less
Download (526MB)
Added: 2006-04-14 License: GPL (GNU General Public License) Price:
1311 downloads
Natural Language Toolkit 0.8

Natural Language Toolkit 0.8


Natural Language Toolkit is a suite of Python libraries and programs for symbolic and statistical natural language processing. more>>
Natural Language Toolkit is a suite of Python libraries and programs for symbolic and statistical natural language processing. NLTK includes graphical demonstrations and sample data.
It is accompanied by extensive documentation, including tutorials that explain the underlying concepts behind the language processing tasks supported by the toolkit.
Documentation:
A substantial amount of documentation about how to use NLTK is available from the nltk home page:
< http://nltk.sourceforge.net >
In particular, the NLTK home page contains three types of documentation:
- Tutorials teach students how to use the toolkit, in the context of performing specific tasks. They are appropriate for anyone who wishes to learn how to use the toolkit.
< http://nltk.sourceforge.net/tutorial/ >
- The toolkits reference documentation describes every module, interface, class, method, function, and variable in the toolkit. This documentation should be useful to both users and developers.
< http://nltk.sourceforge.net/ref/nltk.html >
- A number of technical reports are available. These reports explain and justify the toolkits design and implementation. They are used by the developers of the toolkit to guide and document the toolkits construction. Students can consult these reports if they would like further information about how the toolkit is designed and why it is designed that way.
< http://nltk.sourceforge.net/tech/ >
Enhancements:
Code (major):
- changed package name to nltk
- import all top-level modules into nltk, reducing need for import statements
- reorganization of sub-package structures to simplify imports
- new featstruct module, unifying old featurelite and featurestructure modules
- FreqDist now inherits from dict, fd.count(sample) becomes fd[sample]
- FreqDist initializer permits: fd = FreqDist(len(token) for token in text)
- made numpy optional
Code (minor):
- changed GrammarFile initializer to accept filename
- consistent tree display format
- fixed loading process for WordNet and TIMIT that prevented code installation if data not installed
- taken more care with unicode types
- incorporated pcfg code into cfg module
- moved cfg, tree, featstruct to top level
- new filebroker module to make handling of example grammar files more transparent
- more corpus readers (webtext, abc)
- added cfg.covers() to check that a grammar covers a sentence
- simple text-based wordnet browser
- known bug: parse/featurechart.py uses incorrect apply() function
Corpora:
- csv data file to document NLTK corpora
Contrib:
- added Glue semantics code (contrib.glue, by Dan Garrette)
- Punkt sentence segmenter port (contrib.punkt, by Willy)
- added LPath interpreter (contrib.lpath, by Haejoong Lee)
- extensive work on classifiers (contrib.classifier*, Sumukh Ghodke)
Tutorials:
- polishing on parts I, II
- more illustrations, data plots, summaries, exercises
- continuing to make prose more accessible to non-linguistic audience
- new default import that all chapters presume: from nltk.book import *
Distributions:
- updated to latest version of numpy
- removed WordNet installation instructions as WordNet is now included in corpus distribution
- added pylab (matplotlib)
Enhancements:
Code:
- changed nltk.__init__ imports to explicitly import names from top-level modules
- changed corpus.util to use the rb flag for opening files, to fix problems reading corpora under MSWindows
- updated stale examples in engineering.txt
- extended feature stucture interface to permit chained features, e.g. fs[F,G]
- further misc improvements to test code plus some bugfixes
Tutorials:
- rewritten opening section of tagging chapter
- reorganized some exercises
<<less
Download (MB)
Added: 2007-07-03 License: GPL (GNU General Public License) Price:
850 downloads
Natural Docs Feb 10, 2007

Natural Docs Feb 10, 2007


Natural Docs is an extensible, multi-language, source code documentation generator written in Perl. more>>
Natural Docs is an extensible, multi-language, source code documentation generator written in Perl.
Its syntax is transparent so the source comments read just as easily as the generated documentation. Natural Docs also focuses on automation and high-quality HTML output.
Keep in mind that if you use the development releases:
- It wont necessarily be as stable as a full release.
- There is no documentation for the new features beyond this page. Documenting Your Code and the Help folder wont be updated until a full release.
- Every new feature may not be complete. Make sure you read the notes on this page fully before using them.
- Only the default CSS style is valid. Since there will be a lot of changes Im letting Small and Roman fall out of date and will recreate them before the full release.
- Likewise, if you made an elaborate custom CSS style its probably broken, and will break again in future development releases.
Enhancements:
- Image support is now completed, so you can specify relative and absolute image directories on the command line instead of links always being relative to the source file.
- ActionScript 3 support is also finished, with better support for custom namespaces.
<<less
Download (0.30MB)
Added: 2007-02-11 License: GPL (GNU General Public License) Price:
985 downloads
Work-At-Home 1.0

Work-At-Home 1.0


The Ultimate Safe Money Guide -Free Online Money Guide Make Your Online Money The Safe Way And Generate a Daily Income Stream. The best thing I came ... more>> <<less
Download (2117KB)
Added: 2009-04-19 License: Freeware Price: Free
189 downloads
Constipation Relief 1

Constipation Relief 1


Constipation relief on demand. Poopdoc is a natural home remedy for constipation; a treatment and cure for chronic constipation symptoms. Oxygenated c... more>> <<less
Download (41KB)
Added: 2009-04-11 License: Freeware Price: Free
197 downloads
My Knoppix - Digital Home Edition 20060818

My Knoppix - Digital Home Edition 20060818


My Knoppix - Digital Home Edition is aimed to be a smart and centerised OS that can implement at home. more>>
My Knoppix - Digital Home Edition is aimed to be a smart and centerised OS that can implement at home. Imaging you have a Plasma TV or big LCD screen that connect to a server and you can record and play DVD from the server and surf internet with big screen.

Video sharing using NX technology is also possible where you can play and watch different movies using different pc or pda at home. This CD also comes with videolan program where you can broadcast video or music throughout the network.

With the help of the NX technology, you can have a diskless PC that direct connect to the server and share application and files. Therefore server can play the movie on plasma tv while you can write document with openoffice using diskless pc that connect to the server.
<<less
Download (700MB)
Added: 2006-10-03 License: GPL (GNU General Public License) Price:
1118 downloads
Home for Sure 0.1

Home for Sure 0.1


Home for Sure is an extension which will ask if you would like to close all open tabs and open your homepage. more>>
Home for Sure is an extension which will ask if you would like to close all open tabs and open your homepage.

When you click Home, Home for Sure will ask if you would like to close all open tabs and open your homepage(s) or if youd like to open your homepage(s) normally.

This isnt for everybody, but weve gotten a few requests, so we thought it might be useful. Try it out and see if you like it.

<<less
Download (0.016MB)
Added: 2007-04-19 License: MPL (Mozilla Public License) Price:
918 downloads
Myrinix Digital Home Edition 2007-04 v3

Myrinix Digital Home Edition 2007-04 v3


Myrinix - Digital Home Edition is meant to be a smart and centralized OS that can be implemented in a home environment. more>>
Myrinix - Digital Home Edition is meant to be a smart and centralized OS that can be implemented in a home environment.
Myrinix Digital Home Edition can be connected to a TV or other large screen to record and play DVD movies and surf the Internet. It also implements video sharing with the NX technology, and includes the videolan program for broadcasting video or music throughout the network.
Diskless client computers can connect with the server as it performs other tasks. Myrinix - Digital Home Edition is a bootable CD derived from Kanotix.
Enhancements:
- This release fixed a DBUS hang at startup on some computers and detection of USB drives as home at startup.
- An easy USB portable drive installer was added along with a locale changer for quick and easy language changes.
<<less
Download (460MB)
Added: 2007-04-27 License: GPL (GNU General Public License) Price:
915 downloads
GNOME Translate 0.99

GNOME Translate 0.99


GNOME Translate is a natural language translator. more>>
GNOME Translate is a GNOME interface to libtranslate. It can translate a text or web page between several natural languages, and it can automatically detect the source language as you type.

GNOME Translate is free software, released under the terms of the GNU General Public License.

<<less
Download (0.29MB)
Added: 2005-07-29 License: GPL (GNU General Public License) Price:
1550 downloads
Aero AIO: Folding@Home 0.1

Aero AIO: Folding@Home 0.1


Aero AIO: Folding@Home is a plugin for Aero AIO to monitor your Folding@Home client. more>>
Aero AIO: Folding@Home is a plugin for Aero AIO to monitor your Folding@Home client. It comes with a simple configuration dialog to set the update interval and client path.

It was inspired by navyrains folding-karamba theme.

Folding@Home is a distributed computing project to understand protein folding, misfolding and related diseases (http://folding.stanford.edu).

<<less
Download (0.011MB)
Added: 2006-06-27 License: GPL (GNU General Public License) Price:
1214 downloads
Tomboy Reminder Plugin 0.9

Tomboy Reminder Plugin 0.9


Tomboy Reminder Plugin allows tomboy to show a note at a specified date in the note. more>>
Tomboy Reminder Plugin allows tomboy to show a note at a specified date in the note.

Tomboy will scan all the notes when started and display the notes to be reminded for a given date and time.

Tomboy will also re-scan the note when you close the note window, so if you want to update the reminder, simply edit the note.

The date and time entry is very intuitive (natural langage), see the website for more info.

You can setup a note for birthdays or todos or things like that, very convenient if you ask !

<<less
Download (0.055MB)
Added: 2006-03-12 License: The Apache License Price:
1326 downloads
mod_auth_remedy 2.0.0

mod_auth_remedy 2.0.0


mod_auth_remedy is an Apache module for HTTP Basic authentication/authorization in the Remedy Action Request System (ARS). more>>
mod_auth_remedy is an Apache module for HTTP Basic authentication/authorization in the Remedy Action Request System (ARS).

Users of the Remedy Action Request System are organized in groups as in UNIX. Each user may belong to several groups. Users log into server using passwords. ARS stores information in so-called schemas, an analogue of tables in a relational database. Schemas have records.

There is a schema named User storing user information such as Login Name and Password, one record for each user. This schema corresponds to /etc/passwd on UNIX. Another schema named Group stores information about groups - it is for ARS what /etc/group is for UNIX.

On HTTP request to a constrained URL, the browser supplies Apache with username and password typed in the Basic authentication box. The module opens connection to the Remedy server RemedyServer as user RemedyBindName with password RemedyBindPass, and seeks the User schema for record with Login Name equal to the browser-supplied username.

Only if the record exists and contains password that matches the browser-supplied password, the module tells Apache to let the user in. If RemedyBindName directive is < None >, the module attempts to log onto Remedy staighfoward with browser-supplied username/password and if this login succeeds, it lets to access the URL.

The User schema record contains list of groups the user belongs to. This list is compared to the content of the standard Require group directive in the authorization phase.

Directives

The module supports the following run-time configuration directives:

RemedyAuthoritative (On|Off)
whether other modules will attempt authentication (Off) or not (On)
RemedyServer
Remedy Action Request System server machine name
RemedyBindName
Remedy user login under which Apache can connect to the Remedy server. This Remedy user should have read permissions on the Password field in the User schema. When set to , Apache will use the login supplied by browser, i. e. login typed in in the auth box.
RemedyBindPass
password of the Remedy user. Set to when the previous is set to
RemedyAPILog (On|Off)
enables intensive logging of module operations.
<<less
Download (0.013MB)
Added: 2006-05-24 License: The Apache License 2.0 Price:
1249 downloads
Home Insurance Inventory Wizard 2.3

Home Insurance Inventory Wizard 2.3


Home Insurance Inventory Wizard is an free little program you can upload to your web site to add some extra functionality. more>>
Home Insurance Inventory Wizard is an free little program you can upload to your web site to add some extra functionality.
Home Insurance Inventory Wizard makes taking a home inventory for home insurance purposes extremely simple. And installing it is super easy, too. Best of all, its free!
Main features:
- Javascript and PHP-based for maximum compatibility
- The home inventory list expands as new rooms and items are added indefinitely. Can be useful for small apartments or large houses.
- Inventories can be saved by the user and downloaded, no databases needed!
- Home inventory lists can be uploaded by a user later so that they can make adjustments and add new items
- An HTML output option allows the user to create and then print a nicely formatted HTML version of their home inventory. Also includes option to add images of items.
- No adware, spyware or viruses
- The Home Insurance Inventory Wizard is absolutely FREE!
<<less
Download (0.011MB)
Added: 2006-01-16 License: Freeware Price:
1379 downloads
Home Media Librarian 0.1B_RC2

Home Media Librarian 0.1B_RC2


Home Media Librarian provides an application to catalog records, CDs, DVDs, etc. more>>
Home Media Librarian provides an application to catalog records, CDs, DVDs, etc.

HML is a pure Java client(GUI) application to catalog records, cds, dvds, etc.
HML requires a JDBC compliant database and driver.

The application is for the average person whom has a record, cd, dvd, tape, etc. music collection and wants to catalog this collection.

It has been tested with JDK 1.3 and 1.4 on Macintosh OSX, Linux, and Windows 2000 using MySQL and Connector J.

The distribution includes the software,documentation, and source code.

<<less
Download (1.7MB)
Added: 2007-02-08 License: Open Software License Price:
990 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5