Main > Free Download Search >

Free constipation relief software for linux

constipation relief

Sponsored Links
Sponsored Links
Sort by >> Relevance
rss
Secleted [ 0 ] software to compare
Results 1 - 15 of about 14
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
Tk::Optionmenu 804.027

Tk::Optionmenu 804.027


Tk::Optionmenu will let the user select one of some predefined options values. more>>
Tk::Optionmenu will let the user select one of some predefined options values.

SYNOPSIS

use Optionmenu;

$opt = $w->Optionmenu(
-options => REFERENCE_to_OPTIONLIST,
-command => CALLBACK,
-variable => SCALAR_REF,
);

$opt->addOptions( OPTIONLIST );

# OPTION LIST is
# a) $val1, $val2, $val3,...
# b) [ $lab1=>$val1], [$lab2=>val2], ... ]
# c) combination of a) and b), e.g.,
# val1, [$lab2=>val2], val3, val4, [...], ...

The Optionmenu widget allows the user chose between a given set of options.

If the user should be able to change the available option have a look at Tk::BrowseEntry.

OPTIONS

-options

(Re)sets the list of options presented.

-command

Defines the callback that is invokes when a new option is selected.

-variable

Reference to a scalar that contains the current value of the selected option.

-textvariable

Reference to a scalar that contains the text label of the current value of the selected option.

METHODS

addOptions

Adds OPTION_LIST to the already available options.

EXAMPLE

use Tk;
my $mw = MainWindow->new();

my ($var, $tvar);
my $opt = $mw->Optionmenu(
-options => [[jan=>1], [feb=>2], [mar=>3], [apr=>4]],
-command => sub { print "got: ", shift, "n" },
-variable => $var,
-textvariable => $tvar
)->pack;

$opt->addOptions([may=>5],[jun=>6],[jul=>7],[aug=>8]);

my $f = $mw->Frame(-relief=>groove, -borderwidth => 2)->pack;
$f->Label(-textvariable=>$tvar)->pack(-side => left);
$f->Label(-text => " -> ")->pack(-side => left);
$f->Label(-textvariable=>$var)->pack(-side => left);

$mw->Button(-text=>Exit, -command=>sub{$mw->destroy})->pack;

MainLoop;

<<less
Download (5.7MB)
Added: 2007-08-21 License: Perl Artistic License Price:
794 downloads
InJoy Firewall 3.0

InJoy Firewall 3.0


InJoy Firewall is a flexible firewall security solution for businesses of any size. more>>
InJoy Firewall is a flexible firewall security solution for businesses of any size. It offers preconfigured policy templates, including full customization options, IPSec VPN integration, gateway capabilities, intuitive management, access control, many documented deployment examples, and comprehensive documentation.

Without question, the Linux Operating System provides a proven and cost-effective platform, as well as a wealth of high-quality open source software. For business use, however, it often proves difficult to find supported linux firewall solutions that provide the required level of confidence, reliability and trust. With the InJoy Firewall™, businesses can benefit from Linux without having to give up the safety of a responsible vendor and a traditional business relationship.

Security as never before — the InJoy Firewall™ for Linux provides customers with next generation intrusion and anomaly detection. These technologies provides network administrators with the ultimate tools to keep track of network activity and eliminate Internet threats of any type.

As a busy and responsible network administrator, you will find great relief in the InJoy Firewall™. As the only Linux firewall, it is designed from the ground up to be self-contained, thus ensuring optimal performance and minimum impact from third-party problems. This means you dont have to worry about dependencies with Linux connectivity software, software libraries or kernel compilation.


Manage your remote Linux-based Firewall Server from your Windows-based desktop (or any other supported Operating Systems), using the intuitive InJoy firewall™ GUI. Linux users that prefer plain-text configuration can opt for that with the InJoy firewall™ as well.

The InJoy firewall™ works the same under all the supported operating systems, meaning you can deploy a complete and unified protection strategy throughout the business and effortlessly set up fully capable VPNs without having to worry about interoperability issues.

The InJoy firewall™ installs in minutes and can be prepared for distributed, company-wide deployment, using the same simple installation scripts everywhere.
<<less
Download (2.8MB)
Added: 2006-07-12 License: Freeware Price:
1201 downloads
TableMatrix 1.22

TableMatrix 1.22


TableMatrix is a Perl module that can create and manipulate tables. more>>
TableMatrix is a Perl module that can create and manipulate tables.
Synopsis
$table = $parent->TableMatrix(?options?);
STANDARD OPTIONS
-anchor
-background
-cursor
-exportselection
-font
-foreground
-highlightbackground
-highlightcolor
-highlightthickness
-insertbackground
-insertborderwidth
-insertofftime
-insertontime
-insertwidth
-invertselected
-relief
-takefocus
-xscrollcommand
-yscrollcommand
Main features:
- multi-line cells
- support for embedded windows (one per cell)
- row & column spanning
- variable width columns / height rows (interactively resizable)
- row and column titles
- multiple data sources ((perl hash|| perl callback) &| internal caching)
- supports standard Tk reliefs, fonts, colors, etc.
- x/y scrollbar support
- tag styles per row, column or cell to change visual appearance
- in-cell editing - returns value back to data source
- support for disabled (read-only) tables or cells (via tags)
- multiple selection modes, with "active" cell
- multiple drawing modes to get optimal performance for larger tables
- optional flashes when things update
- cell validation support
- Works everywhere Tk does (including Windows and Mac!)
<<less
Download (0.31MB)
Added: 2006-06-12 License: Perl Artistic License Price:
1229 downloads
Tk::SplitFrame 0.03

Tk::SplitFrame 0.03


Tk::SplitFrame is a geometry manager for scaling two subwidgets. more>>
Tk::SplitFrame is a geometry manager for scaling two subwidgets.

SYNOPSIS

use Tk;

use Tk::SplitFrame;

my $MainWindow = MainWindow->new();

my $SplitFrame = $MainWindow->SplitFrame
(
-orientation => vertical,
-trimcolor => #c7c7c7,
-background => white,
-sliderposition => 60,
-borderwidth => 2,
-sliderwidth => 7,
-relief => sunken,
-height => 100,
-width => 100,
-padbefore => 0,
-padafter => 0
);

# Values shown above are defaults.

my $LeftLabel = $SplitFrame->Label (-text => Left);

my $RightLabel = $SplitFrame->Label (-text => Right);

$SplitFrame->pack (-expand => true, -fill => both);

$SplitFrame->configure (-sliderposition => 22);

Tk::MainLoop;

A SplitFrame is a geometry manager for the two subwidgets instantiated against it. It has a sliding divider between them which, when moved, resizes them so that they each remain in contact with it.

The divider can be arranged vertically or horizontally at create time. The children our arranged in the order that they are instantiated, from left to right or from top to bottom. After instantiation, the order is fixed. The children should NOT be packed or placed, the split frame is responsible for this.

The split frame will adjust itself initially to the preferred size of the children.
It is a basic frame itself and can be packed or placed wherever needed in other frames or toplevel windows.

<<less
Download (0.050MB)
Added: 2007-06-14 License: Perl Artistic License Price:
862 downloads
Bomberman for Java 2.4

Bomberman for Java 2.4


Bomberman for Java is an original 2D 5 player on one computer (2 keyboard, 1 mouse, and 2 joystick players) Bomberman game. more>>
Bomberman for Java is an original 2D "5 player on one computer" (2 keyboard, 1 mouse, and 2 joystick players) Bomberman game.
Features include a level editor, dynamic key configuration, bomb kicker, bomb stopper, remote bombs, bomb stripper, revenge bombs, portals, rolling floor, flame mirrors, farting items, 10 diseases, adjustable items and disease probabilities, player names, an advanced scoring scheme, adjustable lifetime durations, etc.
Main features:
- fast: your player runs incredible fast
- slow: your player walks very slow
- reverse controls: you go right when you press left, ...
- invisibility: you are invisible, though not invinsible
- auto bomb putting: you put your bombs automatically
- immediate bomb explosion: your bombs explode within a second
- fart: like the item
- autoblock putting: you leave a trail of rocks behind yourself
- invisible bombs: your bombs are invisible, can be very handy
- bomb constipation: you cant lay bombs
- level editor, random level chooser, specific level chooser
- small and medium levels
- adjustable
- screen size, sound on or off, player names
- bonus lifetime, bomb explode time, amount of bonusses, remote lifetime
- fire lifetime, nr of blocks, block reappearance speed
- adjustable bonus and disease probabilities
- full dynamic control setup
- joystick support for two players
- mouse support for one player
- two players on one keyboard: four is possible, but your keyboard will not be able to handle all the pressed buttons.
- keeping track of the wins of every player, resetable via the options menu
- when a player dies, some items are created around his position.
- different background colors
- removed background music and sound effects, added other sound effects
- bomb stop item
- portals
- bomb stripper
- mirrors: reflects fire
<<less
Download (1.8MB)
Added: 2006-11-24 License: Other/Proprietary License with Source Price:
1097 downloads
IIPImage 0.9.7 (Server)

IIPImage 0.9.7 (Server)


IIPImage is an Open Source light-weight client-server system for the remote viewing of very high-resolution images. more>>
IIPImage is an Open Source light-weight client-server system for the remote viewing of very high-resolution images. The project is designed to be bandwidth and memory efficient and usable even over a slow internet connection. The system is fast because the client only needs to download the portion of the whole image that is visible on the screen of the user at their current viewing resolution.
The client requests a view of an image and the server only needs to send back the image tiles necessary for that particular view. This makes it possible to view, navigate and zoom around very large images that would be impossible to download and manipulate on the local machine. It also makes the system very scalable as the image tile downloads will take the same regardless of the size of the source image. In addition, to reduce the bandwidth necessary even further, the tiles sent back are dynamically JPEG compressed with a level of compression that can be optimized for the available bandwidth by the client. In this way it is possible to view extremely large gigapixel images in real-time over the internet.
In order for the system to be as efficient as possible, the images are stored in the multi-resolution TIFF tiled pyramidal format. This allows the server to extract regions of the full image at different resolutions very quickly with little processing overhead. Image of several gigapixels in size can be stored on a central server and viewed by many different users without the need to download large amounts of data.
The system was originally devised by the National Gallery in London and the University of Southampton for the Viseum (1996) and Acohir (1999) EU projects.
The aim of these projects was to create a system for viewing very high resolution colorimetric museum images over the internet. In the case of Acohir, to extend the system to handle 3D object sequences. A published paper describing this work is available online. The current versions of the software, though, have been completely rewritten since then. This kind of system, though, is also applicable to other areas such as geographical informations systems or medical imaging.
Main features:
- Fast lightweight Fast CGI server module that can be embedded in most web servers (Apache, Lighttpd, MyServer etc)
- Several clients available - java applet, javascript etc
- Instant dynamic generation of JPEG overviews or details at any resolution
- Allows easy viewing of extremely large images (gigapixel size) with no significant memory requirements
- Standard TIFF-based image format that can be read by many image processing tools (Photoshop, GIMP, VIPS etc)
- 16 bits per channel image handling
- Greyscale, sRGB and CIE L*a*b* colour spaces
- Panoramic 3D object image sequences
- Secure image distribution: only JPEG-compressed views of the image are sent to the client. The full-resolution image does not need to be accessible
- Example uses: high resolution museum images, geographical information systems, medical imaging etc.
Enhancements:
- The major new feature is a hillshading function for image relief maps.
- In addition, major stability and performance enhancements have been made to the tile cache.
- There has also been a major code cleanup and refactoring to make the core fully modular.
<<less
Download (0.68MB)
Added: 2006-12-19 License: GPL (GNU General Public License) Price:
1041 downloads
netcomics 0.14.1

netcomics 0.14.1


netcomics project is a Perl script that downloads todays comics from the Web. more>>
netcomics project is a Perl script that downloads todays comics from the Web.

Netcomics is a program that downloads todays comic strips from the Web, and places them in a local directory where they can be retrieved for display. Because each website that carries comic strips chooses how old of strips to show, the comic strips downloaded will actually be from different dates, but theyll always be the latest.

Although not always kept up to date, there are a lot of comics supported. Use the link for supported comics to get a list of the comics supported as of the last software release.

Written in perl, netcomics is very platform independant. perlTK & perlGTK are used for the implementation of graphical user interfaces. All of netcomics is written using modules, so you can write your own scripts using it if youd like.

Netcomics was created for the purpose of having a little relief from the weary mind of someone busy at work, so another script called display_comics is also provided as an example way to periodically show the retrieved comic strips throughout the workday.

Also, when run on a Monday, you can run netcomics to download Saturdays and Sundays comic strips as well.

<<less
Download (0.14MB)
Added: 2006-11-07 License: GPL (GNU General Public License) Price:
1084 downloads
Sahana Disaster Management System LiveCD 1.2

Sahana Disaster Management System LiveCD 1.2


Sahana project is an integrated set of pluggable, web-based disaster management. more>>
Sahana project is an integrated set of pluggable, web-based disaster management applications that provide solutions to large-scale humanitarian problems in the aftermath of a disaster.
Main features:
- Missing Person Registry - Helping to reduce trauma by effectively finding missing persons
- Organization Registry - Coordinating and balancing the distribution of relief organizations in the affected areas and connecting relief groups allowing them to operate as one
- Request Management System - Registering and Tracking all incoming requests for support and relief upto fullfilment and helping donors connect to relief requirements
- Camp Registry - Tracking the location and numbers of victims in the various camps and temporary shelters setup all around the affected area.
<<less
Download (683.8MB)
Added: 2006-01-12 License: LGPL (GNU Lesser General Public License) Price:
1387 downloads
Tk::Canvas 804.027

Tk::Canvas 804.027


Tk::Canvas Perl module can create and manipulate Canvas widgets. more>>
Tk::Canvas Perl module can create and manipulate Canvas widgets.

SYNOPSIS

$canvas = $parent->Canvas(?options?);

STANDARD OPTIONS

-background -highlightthickness -insertwidth -state -borderwidth -insertbackground -relief -tile -cursor -insertborderwidth -selectbackground -takefocus -highlightbackground -insertofftime -selectborderwidth -xscrollcommand -highlightcolor -insertontime -selectforeground -yscrollcommand

WIDGET-SPECIFIC OPTIONS

Name: closeEnough
Class: CloseEnough
Switch: -closeenough

Specifies a floating-point value indicating how close the mouse cursor must be to an item before it is considered to be ``inside the item. Defaults to 1.0.

Name: confine
Class: Confine
Switch: -confine

Specifies a boolean value that indicates whether or not it should be allowable to set the canvass view outside the region defined by the scrollRegion argument. Defaults to true, which means that the view will be constrained within the scroll region.

Name: height
Class: Height
Switch: -height

Specifies a desired window height that the canvas widget should request from its geometry manager. The value may be specified in any of the forms described in the "COORDINATES" section below.

Name: scrollRegion
Class: ScrollRegion
Switch: -scrollregion

Specifies a list with four coordinates describing the left, top, right, and bottom coordinates of a rectangular region. This region is used for scrolling purposes and is considered to be the boundary of the information in the canvas. Each of the coordinates may be specified in any of the forms given in the "COORDINATES" section below.

Name: state
Class: State
Switch: -state

Modifies the default state of the canvas where state may be set to one of: normal, disabled, or hidden. Individual canvas objects all have their own state option, which overrides the default state. Many options can take separate specifications such that the appearance of the item can be different in different situations. The options that start with "active" control the appearence when the mouse pointer is over it, while the option starting with "disabled" controls the appearence when the state is disabled.

Name: width
Class: width
Switch: -width

Specifies a desired window width that the canvas widget should request from its geometry manager. The value may be specified in any of the forms described in the "COORDINATES" section below.

Name: xScrollIncrement
Class: ScrollIncrement
Switch: -xscrollincrement

Specifies an increment for horizontal scrolling, in any of the usual forms permitted for screen distances. If the value of this option is greater than zero, the horizontal view in the window will be constrained so that the canvas x coordinate at the left edge of the window is always an even multiple of xScrollIncrement; furthermore, the units for scrolling (e.g., the change in view when the left and right arrows of a scrollbar are selected) will also be xScrollIncrement. If the value of this option is less than or equal to zero, then horizontal scrolling is unconstrained.

Name: yScrollIncrement
Class: ScrollIncrement
Switch: -yscrollincrement

Specifies an increment for vertical scrolling, in any of the usual forms permitted for screen distances. If the value of this option is greater than zero, the vertical view in the window will be constrained so that the canvas y coordinate at the top edge of the window is always an even multiple of yScrollIncrement; furthermore, the units for scrolling (e.g., the change in view when the top and bottom arrows of a scrollbar are selected) will also be yScrollIncrement. If the value of this option is less than or equal to zero, then vertical scrolling is unconstrained.

<<less
Download (5.7MB)
Added: 2007-07-30 License: Perl Artistic License Price:
818 downloads
Kubuntu KDM Gears 0.4

Kubuntu KDM Gears 0.4


Kubuntu KDM Gears is a Kubuntu version of Gears KDM theme based on the Ubuntu Gears KDM theme. more>>
Kubuntu KDM Gears is a Kubuntu version of Gears KDM theme (credits to mandrivian and ChristianNickel), based on the following Ubuntu Gears KDM theme : http://www.kde-look.org/content/show.php?content=32589
Original version features a flat Kubuntu logo.
2 versions featuring a logo with some kind of relief effect are available (logo from http://kubuntu.free.fr).
Version with official kubuntu edgy logo is available.
Finally, a Kubuntu Tux version is also proposed.
That should be it for now, unless i find some other kool Kubuntu logos. You may suggest new pictures, and your comments/suggestions are welcome.
In order to get nice, homogeneous KDE theme, you can download ChristianNickels original artwork as well :
- Splash screen : http://www.kde-look.org/content/show.php?content=30999
- Wallpaper : http://www.kde-look.org/content/show.php?content=30970
Enhancements:
- kubuntu-tagged Tux added
<<less
Download (MB)
Added: 2007-03-08 License: GPL (GNU General Public License) Price:
969 downloads
Sahana Disaster Management System 0.5.2 Alpha

Sahana Disaster Management System 0.5.2 Alpha


Sahana is an integrated set of pluggable, web based disaster management applications. more>>
Sahana project is an integrated set of pluggable, web-based disaster management applications that provide solutions to large-scale humanitarian problems in the aftermath of a disaster.
Main features:
- Missing Person Registry - Helping to reduce trauma by effectively finding missing persons
- Organization Registry - Coordinating and balancing the distribution of relief organizations in the affected areas and connecting relief groups allowing them to operate as one
- Request Management System - Registering and Tracking all incoming requests for support and relief upto fullfilment and helping donors connect to relief requirements
- Camp Registry - Tracking the location and numbers of victims in the various camps and temporary shelters setup all around the affected area
<<less
Download (2.9MB)
Added: 2007-04-25 License: LGPL (GNU Lesser General Public License) Price:
913 downloads
Radar Tools 0.18

Radar Tools 0.18


Radar Tools is an advanced SAR remote sensing image processing software. more>>
Radar Tools in short RAT is a small collection of tools for processing SAR (synthetic aperture radar) remote sensing data, packed together in a nice graphical user interface.
Our motivation to start the development of RAT is that modern remote sensing software like Erdas Image or ENVI include only some basic SAR functionality. Advanced algorithms have to be implemented by oneself.
So we descided to start the development of RAT. RAT should bring modern SAR algorithms to a wider user-base by simplifying in particular the data handling and processing of complex SAR data.
RAT is planned as an ongoing community effort, i.e. there will be no final version with a certain functionality. It is our idea to include more and more SAR tools in future and to make them freely available to the scientific community.
We of course also hope for external contributions. Because of this, the programming interface of RAT is kept quite simple and adding own functions is quite easy. Function templates are included in the distribution and a step-by-step description of how to program a RAT module will appear soon in the documentation.
Main features:
General features
- Cross-platform (Unix, Windows, Linux & Mac OSX)
- Free software, no commercial software license needed (when using the IDL-VM version)
- Availability of the complete source code
- Modular design, easy to extend by own functions
- Small memory footprint even when processing large images (vertical tiling)
- No limitation on the image size
- Keep track of data representation changes during image processing
- Optimised preview on screen while calculations are done in full resolution
- Native import routines for E-SAR (DLR) and ENVISAT-IMS (ESA) data
- Export possibility to generic graphic formats (png, jpg & tiff)
- Undo function for the last processing step
Generic image manipulation
- Resize, presumming & cut region
- Zooming of an area of interest
- Mirror vertical and horizontal
- Binary transforms
Single channel SAR
- SAR speckle filtering (Boxcar, Median, Gauss, Kuan, Frost, MAP Lee, refined Lee, Lee-Sigma)
- Edge detection (RoA, MSP-RoA, Sobel, Roberts)
- Co-occurance texture features, variation coefficient
- Point and distributed target analysis
- Generic slant-to-ground range projection
SAR polarimetry
- Polarimetric point target analysis
- Polarimetric speckle filtering (Boxcar, Lee, refined Lee)
- Polarimetric CFSAR edge detection
- Calculation of interchannel ratios, correlation & phase differences
- Formation of covariance and coherency matrix, span calculation
- Polarimetric basis transforms (linear -> circular ....)
- Decompositions (Pauli, Freman-Durdan, Moriyama, Entropy/Alpha, Eigenvalue, Sphere-Diplane-Helix....)
- Polarimetric classification (Entropy/Alpha/Anisotropy, Wishart, No. of scatterers, physical, Lee category preserving...)
- Polarimetric calibration: imbalance, symmetrisation & crosstalk (Quegan method)
SAR interferometry
- Image pair coregistration (coarse, subpixel & spatially varying)
- Interferogram formation
- Flat-earth removal
- Phase-unwrapping (least-squares only)
- Phase noise filter (Boxcar, Goldstein & GLSME)
- Coherence estimation (Boxcar, Gauss, Region Growing)
- Shaded relief calculation
Polarimetric SAR interferometry
- Formation of POLINSAR covariance and coherency matrices
- Coherence estimation & optimisation
- Extraction of optimised ESPRIT phases
- POLINSAR speckle filtering (Boxcar, Gauss & Lee)
- Coherence analysis in the complex unitary plane
<<less
Download (2.5MB)
Added: 2007-04-02 License: Freeware Price:
952 downloads
Fracplanet 0.3.2

Fracplanet 0.3.2


Fracplanet is an interactive application to generate and view random fractal planets. more>>
Fracplanet is an interactive tool for creating random fractal planets and terrain areas with oceans, rivers, lakes and icecaps.
The results can be saved in POV-Ray format. The code is licensed under the GPL. Fracplanet project uses Qt and OpenGL.
Enhancements:
- The main addition in this release is the ability to export the terrain as a texture map, with or without relief shading.
- A DEM (Digital Elevation Model, or height field) and normal map are also written.
- For planets, the textures are a cylindrically projected latitude/longitude map (this is directly usable as a spheremap in POV-Ray).
- The illumination direction is now controllable from the GUI, and swirly spiral weather systems can be added into the clouds.
<<less
Download (0.067MB)
Added: 2006-07-17 License: GPL (GNU General Public License) Price:
1195 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 1
  • 1