handles for kitchen cabinets
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 2205
ATA over Ethernet driver 49
ATA over Ethernet driver allows the Linux kernel to use the ATA over Ethernet (AoE) network protocol. more>>
ATA over Ethernet driver allows the Linux kernel to use the ATA over Ethernet (AoE) network protocol.
Using AoE, a Linux system can use AoE block devices like EtherDrive (R) storage blades.
The block devices appear as local device nodes (e.g. /dev/etherd/e0.0).
Enhancements:
- The driver now handles payloads larger than 4KiB, receives large packets without extra in-memory copy, and handles I/O requests so that the user can choose between the Linux I/O schedulers.
<<lessUsing AoE, a Linux system can use AoE block devices like EtherDrive (R) storage blades.
The block devices appear as local device nodes (e.g. /dev/etherd/e0.0).
Enhancements:
- The driver now handles payloads larger than 4KiB, receives large packets without extra in-memory copy, and handles I/O requests so that the user can choose between the Linux I/O schedulers.
Download (0.066MB)
Added: 2007-07-20 License: GPL (GNU General Public License) Price:
831 downloads
mod_ziplook2 0.99 (for Apache 2.0.X)
mod_ziplook offers is a zip-file browsing module that can send files with gzip transfer-encoding. more>>
mod_ziplook offers is a zip-file browsing module that can send files with gzip transfer-encoding.
Main features:
- Whole directory structure of ZIP-file can be seen.
- Separate files can be seen easily (/xxxx.zip/dir/afile.html)
- In case of directories index.html is looked. (/y/x.zip/dir/ => /y/x.zip/dir/index.html)
- Handles If-Modified-Since and NotModified-status
- If your browser supports gzip content-encoding and documents in ZIP-archive are "Deflate"-compressed: module changes files to gzip format in fly. This makes things very fast (and server cpu & network capasity is saved)
Module uses miniunzip - unzip library and that uses zlib.
<<lessMain features:
- Whole directory structure of ZIP-file can be seen.
- Separate files can be seen easily (/xxxx.zip/dir/afile.html)
- In case of directories index.html is looked. (/y/x.zip/dir/ => /y/x.zip/dir/index.html)
- Handles If-Modified-Since and NotModified-status
- If your browser supports gzip content-encoding and documents in ZIP-archive are "Deflate"-compressed: module changes files to gzip format in fly. This makes things very fast (and server cpu & network capasity is saved)
Module uses miniunzip - unzip library and that uses zlib.
Download (0.009MB)
Added: 2006-04-04 License: The Apache License Price:
1302 downloads
mod_ziplook 2002.08.07 (for Apache 1.3)
mod_ziplook offers is a zip-file browsing module that can send files with gzip transfer-encoding. more>>
mod_ziplook offers is a zip-file browsing module that can send files with gzip transfer-encoding.
Main features:
- Whole directory structure of ZIP-file can be seen.
- Separate files can be seen easily (/xxxx.zip/dir/afile.html)
- In case of directories index.html is looked. (/y/x.zip/dir/ => /y/x.zip/dir/index.html)
- Handles If-Modified-Since and NotModified-status
- If your browser supports gzip content-encoding and documents in ZIP-archive are "Deflate"-compressed: module changes files to gzip format in fly. This makes things very fast (and server cpu & network capasity is saved)
Module uses miniunzip - unzip library and that uses zlib
Install and config:
- Module needs zlib in your computer
A. Open tar.gz - file.
B. find your apxs (apache module handling script)
C. Compile (with zlib)
apxs -c mod_ziplook.c -lz
D. Run installing script (as root is needed)
apxs -i -a mod_ziplook.so
E. Add handler to for zip-files in httpd.conf (look mod_mime.c section)
AddHandler ziplook zip
F. Restart your apache
G. Seek an zip-file and try with it.
http://your.host/directory/myzipfile.zip
http://your.host/directory/myzipfile.zip/a-file-in-zip-file.html
<<lessMain features:
- Whole directory structure of ZIP-file can be seen.
- Separate files can be seen easily (/xxxx.zip/dir/afile.html)
- In case of directories index.html is looked. (/y/x.zip/dir/ => /y/x.zip/dir/index.html)
- Handles If-Modified-Since and NotModified-status
- If your browser supports gzip content-encoding and documents in ZIP-archive are "Deflate"-compressed: module changes files to gzip format in fly. This makes things very fast (and server cpu & network capasity is saved)
Module uses miniunzip - unzip library and that uses zlib
Install and config:
- Module needs zlib in your computer
A. Open tar.gz - file.
B. find your apxs (apache module handling script)
C. Compile (with zlib)
apxs -c mod_ziplook.c -lz
D. Run installing script (as root is needed)
apxs -i -a mod_ziplook.so
E. Add handler to for zip-files in httpd.conf (look mod_mime.c section)
AddHandler ziplook zip
F. Restart your apache
G. Seek an zip-file and try with it.
http://your.host/directory/myzipfile.zip
http://your.host/directory/myzipfile.zip/a-file-in-zip-file.html
Download (0.097MB)
Added: 2006-04-04 License: The Apache License Price:
1298 downloads
DirHandle 5.8.8
DirHandle is a Perl module created to supply object methods for directory handles. more>>
DirHandle is a Perl module created to supply object methods for directory handles.
SYNOPSIS
use DirHandle;
$d = new DirHandle ".";
if (defined $d) {
while (defined($_ = $d->read)) { something($_); }
$d->rewind;
while (defined($_ = $d->read)) { something_else($_); }
undef $d;
}
The DirHandle method provide an alternative interface to the opendir(), closedir(), readdir(), and rewinddir() functions.
The only objective benefit to using DirHandle is that it avoids namespace pollution by creating globs to hold directory handles.
NOTES
On Mac OS (Classic), the path separator is :, not /, and the current directory is denoted as :, not .. You should be careful about specifying relative pathnames. While a full path always begins with a volume name, a relative pathname should always begin with a :. If specifying a volume name only, a trailing : is required.
<<lessSYNOPSIS
use DirHandle;
$d = new DirHandle ".";
if (defined $d) {
while (defined($_ = $d->read)) { something($_); }
$d->rewind;
while (defined($_ = $d->read)) { something_else($_); }
undef $d;
}
The DirHandle method provide an alternative interface to the opendir(), closedir(), readdir(), and rewinddir() functions.
The only objective benefit to using DirHandle is that it avoids namespace pollution by creating globs to hold directory handles.
NOTES
On Mac OS (Classic), the path separator is :, not /, and the current directory is denoted as :, not .. You should be careful about specifying relative pathnames. While a full path always begins with a volume name, a relative pathname should always begin with a :. If specifying a volume name only, a trailing : is required.
Download (12.2MB)
Added: 2007-05-15 License: Perl Artistic License Price:
895 downloads
HTTP::Handle 0.2
HTTP::Handle is a HTTP Class designed for streaming. more>>
HTTP::Handle is a HTTP Class designed for streaming.
SYNOPSIS
use HTTP::Handle;
my $http = HTTP::Handle->new( uri => "http://www.google.com/" );
$http->connect();
my $fd = $http->fd();
while () {
print "--> $_";
}
The HTTP::Handle module allows you to make HTTP requests and handle the data yourself. The general ideas is that you use this module to make a HTTP request and handle non-header data yourself. I needed such a feature for my mp3 player to listen to icecast streams.
HTTP::Handle->new()
Create a new HTTP::Handle object thingy.
Arguments possible:
url => "http://www.google.com/"
Sets the initial URL to connect to.
follow_redirects => [ 0 | 1 ]
Automatically follow HTTP redirects. This defaults to true (1). Set to 0 to disable this.
http_request => HASHREF
Any thing put in here will be sent as "key: value" in the http request string.
$http->connect()
Connect, send the http request, and process the response headers.
This function returns -1 on failure, undef otherwise. The reason for failure will be printed to STDERR.
$http->fd()
Get the file descriptor (socket) were using to connect.
$http->url( [ url_string ])
Get or set the URL. If a url string is passed, you will change the url that is requested. If no parameter is passed, a URI object will be returned containing the
$http->follow_redirects( [ 0 | 1 ] )
If a value is passed then you will set whether or not we will automatically follow HTTP 302 Redirects. If no value is passed, then we will return whatever the current option is.
Defaults to 1 (will follow redirects).
$http->http_request_string()
Returns a string containing the HTTP request and headers, this is used when
$http->connect() is called.
<<lessSYNOPSIS
use HTTP::Handle;
my $http = HTTP::Handle->new( uri => "http://www.google.com/" );
$http->connect();
my $fd = $http->fd();
while () {
print "--> $_";
}
The HTTP::Handle module allows you to make HTTP requests and handle the data yourself. The general ideas is that you use this module to make a HTTP request and handle non-header data yourself. I needed such a feature for my mp3 player to listen to icecast streams.
HTTP::Handle->new()
Create a new HTTP::Handle object thingy.
Arguments possible:
url => "http://www.google.com/"
Sets the initial URL to connect to.
follow_redirects => [ 0 | 1 ]
Automatically follow HTTP redirects. This defaults to true (1). Set to 0 to disable this.
http_request => HASHREF
Any thing put in here will be sent as "key: value" in the http request string.
$http->connect()
Connect, send the http request, and process the response headers.
This function returns -1 on failure, undef otherwise. The reason for failure will be printed to STDERR.
$http->fd()
Get the file descriptor (socket) were using to connect.
$http->url( [ url_string ])
Get or set the URL. If a url string is passed, you will change the url that is requested. If no parameter is passed, a URI object will be returned containing the
$http->follow_redirects( [ 0 | 1 ] )
If a value is passed then you will set whether or not we will automatically follow HTTP 302 Redirects. If no value is passed, then we will return whatever the current option is.
Defaults to 1 (will follow redirects).
$http->http_request_string()
Returns a string containing the HTTP request and headers, this is used when
$http->connect() is called.
Download (0.005MB)
Added: 2006-11-16 License: Perl Artistic License Price:
1072 downloads
Sensibe IRC Handler 0.1
Sensible IRC Handler aims to provide an interface for Gaim that handles irc:// links in Firefox Browser. more>>
Sensible IRC Handler aims to provide an interface for Gaim that handles irc:// links in Firefox Browser. This will provide the same xchat-gnome functionality to handle irc:// links, but for Gaim.
Recent changes in inclusion of packages for future Ubuntu release will not include xchat-gnome because of recursive duplication with Gaims IRC capabilities, so IRC will be entirely handled in Gaim.
This will use Gaim as an IRC client, but will not alter the main Gaim configurations, this would create a temporary configurations for the current sessions. A functionality to add the IRC channels defined in InternetRelayChat in Gaim buddy list, will be easy, but will not add them by default. Adding them for a user requires further discussions.
Enhancements:
- GTK+ version 2.2.x
<<lessRecent changes in inclusion of packages for future Ubuntu release will not include xchat-gnome because of recursive duplication with Gaims IRC capabilities, so IRC will be entirely handled in Gaim.
This will use Gaim as an IRC client, but will not alter the main Gaim configurations, this would create a temporary configurations for the current sessions. A functionality to add the IRC channels defined in InternetRelayChat in Gaim buddy list, will be easy, but will not add them by default. Adding them for a user requires further discussions.
Enhancements:
- GTK+ version 2.2.x
Download (0.20MB)
Added: 2006-06-01 License: GPL (GNU General Public License) Price:
1242 downloads
GXMame 0.35 beta2
GXMame is a Gtk frontend for XMame. more>>
GXMame is a frontend for XMame using the GTK library, the goal is to provide the same GUI than mame32. For the moment it will just have the same gui, the final goal is to be able to share config files with Mame32k (or any version of mame32 that write config files instead of saving data into windows registry) allowing dual booter to have the same environment (favorite, timeplayed, last game selected, gui preference...) under windows and Linux.
I wanted to learn GTK and have a decent frontend for xmame, gnomame didnt work on my computer and I didnt like other front end in Tk, so I decided to start this project, just after I discovered gRustibus, the very good front-end from Kjetil Thuen. I took this front end as a model for the creation of GXMame Im not sure that I could have go so far and so quickly without this model.
Main features:
- Detailed view
- Small icons view
- Indented view (shows clones games under the original one)
- Font color and size selectable
- Icons support, .ico files or a zipped archive from Mamu or Mame32QA
- Tools bar
- Folder(filter) panel
- Screenshot panel
- Display snapshots, Flyers, Marquees, Cabinets, Titles.
- Support of zipped pictures
- Display mameinfo and history
- Status bar
- Support of catver to sort games by version and categories
- Random game selection
- Quick check: only check if a romname.zip file exist in roms folder (also works with clones)
- Audit of all roms
- Window with the properties of all games
- Audit of a single game
- Popup menu to easily access to most used functions
- Preferences for games(global and specific)
- Joystick support (new 386 1.x.x linux driver only)
- Creation of gamelist from xmame
- Multiples executables support
- Scalable icons
- Additionnal options string
- Sortable columns (in any views)
- Sortable selectable columns order (in detail view)
- List view
- Large icons view
- and lot of others...
<<lessI wanted to learn GTK and have a decent frontend for xmame, gnomame didnt work on my computer and I didnt like other front end in Tk, so I decided to start this project, just after I discovered gRustibus, the very good front-end from Kjetil Thuen. I took this front end as a model for the creation of GXMame Im not sure that I could have go so far and so quickly without this model.
Main features:
- Detailed view
- Small icons view
- Indented view (shows clones games under the original one)
- Font color and size selectable
- Icons support, .ico files or a zipped archive from Mamu or Mame32QA
- Tools bar
- Folder(filter) panel
- Screenshot panel
- Display snapshots, Flyers, Marquees, Cabinets, Titles.
- Support of zipped pictures
- Display mameinfo and history
- Status bar
- Support of catver to sort games by version and categories
- Random game selection
- Quick check: only check if a romname.zip file exist in roms folder (also works with clones)
- Audit of all roms
- Window with the properties of all games
- Audit of a single game
- Popup menu to easily access to most used functions
- Preferences for games(global and specific)
- Joystick support (new 386 1.x.x linux driver only)
- Creation of gamelist from xmame
- Multiples executables support
- Scalable icons
- Additionnal options string
- Sortable columns (in any views)
- Sortable selectable columns order (in detail view)
- List view
- Large icons view
- and lot of others...
Download (0.27MB)
Added: 2005-07-21 License: GPL (GNU General Public License) Price:
1573 downloads
WWW::Search::Scraper::Brainpower 2.27
WWW::Search::Scraper::Brainpower it Scrapes Brainpower.com. more>>
WWW::Search::Scraper::Brainpower it Scrapes Brainpower.com.
SYNOPSIS
use WWW::Search::Scraper;
use WWW::Search::Scraper::Response::Job;
$search = new WWW::Search::Scraper(Brainpower);
$search->setup_query($query, {options});
while ( my $response = $scraper->next_response() ) {
# $response is a WWW::Search::Scraper::Response::Job.
}
Brainpower extends WWW::Search::Scraper.
It handles making and interpreting Brainpower searches of http://www.Brainpower.com.
<<lessSYNOPSIS
use WWW::Search::Scraper;
use WWW::Search::Scraper::Response::Job;
$search = new WWW::Search::Scraper(Brainpower);
$search->setup_query($query, {options});
while ( my $response = $scraper->next_response() ) {
# $response is a WWW::Search::Scraper::Response::Job.
}
Brainpower extends WWW::Search::Scraper.
It handles making and interpreting Brainpower searches of http://www.Brainpower.com.
Download (0.13MB)
Added: 2006-08-26 License: Perl Artistic License Price:
1154 downloads
Email::Handle 0.01
Email::Handle is a Objective Email Handler. more>>
Email::Handle is a Objective Email Handler.
SYNOPSIS
use Email::Handle;
my $email = Email::Handle->new(root@example.com);
print $email->is_valid ? yes : no;
print $email->obfuscate;
print $email->anonymize;
print $email;
$email->send(From => foo@example.com);
This module is also convenient for using on the DB application with Template and Class::DBI / DBIx::Class.
# setup the table that has column of email with this module
my $loader = Class::DBI::Loader->new(
...
namespace => MyApp
);
$loader->find_class(user)->has_a(email => Email::Handle);
# then output records with TT2
my $tmpl = Template->new;
$tmpl->process(
sample.tt,
{ users => $loader->find_class(user)->retrieve_all }
);
# You can write the template with some methods of this module like this
[% WHILE (user IN users) %]
[% user.email.obfuscate IF user.email.is_valid %]
[% END %]
<<lessSYNOPSIS
use Email::Handle;
my $email = Email::Handle->new(root@example.com);
print $email->is_valid ? yes : no;
print $email->obfuscate;
print $email->anonymize;
print $email;
$email->send(From => foo@example.com);
This module is also convenient for using on the DB application with Template and Class::DBI / DBIx::Class.
# setup the table that has column of email with this module
my $loader = Class::DBI::Loader->new(
...
namespace => MyApp
);
$loader->find_class(user)->has_a(email => Email::Handle);
# then output records with TT2
my $tmpl = Template->new;
$tmpl->process(
sample.tt,
{ users => $loader->find_class(user)->retrieve_all }
);
# You can write the template with some methods of this module like this
[% WHILE (user IN users) %]
[% user.email.obfuscate IF user.email.is_valid %]
[% END %]
Download (0.005MB)
Added: 2007-08-03 License: Perl Artistic License Price:
813 downloads

SeaMonkey for Linux 1.1.4
SeaMonkey for Linux is an all-in-one Internet Application Suite more>> SeaMonkey is an all-in-one Internet Application Suite
The SeaMonkey project is a community effort to deliver production-quality releases of code derived from the application formerly known as Mozilla Application Suite.
Whereas the main focus of the Mozilla Foundation is on Mozilla Firefox and Mozilla Thunderbird, our group of dedicated volunteers works to ensure that you can have everything but the kitchen sinks and have it stable enough for corporate use.
SeaMonkey - Web-browser, IRC chat client, advanced e-mail and newsgroup client and HTML editing made simple - all your Internet needs in one application brought to you by Mozilla.<<less
Download (13.98MB)
Added: 2009-04-15 License: Freeware Price: Free
191 downloads
Hamster Font Manager 1.02
Hamster Font Manager is an easy GUI to manage fonts for X11/GS/TeX. more>>
HFM is a font manager for Unix systems. With it you can control the avaliability of fonts in all of the supported applications from a central place. Currently included are modules to support:
* X-Window
* Ghostscript
* TeX
A PostScript module handles PS Fonts. Other fonts remain untouched by this program.
HFM is distributed under the GPL (GNU Public License).
<<less* X-Window
* Ghostscript
* TeX
A PostScript module handles PS Fonts. Other fonts remain untouched by this program.
HFM is distributed under the GPL (GNU Public License).
Download (0.23MB)
Added: 2005-04-21 License: GPL (GNU General Public License) Price:
1647 downloads
WWW::Scraper::NorthernLight 3.05
WWW::Scraper::NorthernLight it Scrapes NorthernLight.com. more>>
WWW::Scraper::NorthernLight it Scrapes NorthernLight.com.
SYNOPSIS
require WWW::Scraper;
$search = new WWW::Scraper(NorthernLight);
This class is an NorthernLight specialization of WWW::Search. It handles making and interpreting NorthernLight searches http://www.NorthernLight.com.
This class exports no public interface; all interaction should be done through WWW::Search objects.
<<lessSYNOPSIS
require WWW::Scraper;
$search = new WWW::Scraper(NorthernLight);
This class is an NorthernLight specialization of WWW::Search. It handles making and interpreting NorthernLight searches http://www.NorthernLight.com.
This class exports no public interface; all interaction should be done through WWW::Search objects.
Download (0.10MB)
Added: 2006-08-26 License: Perl Artistic License Price:
1154 downloads
radclass r72
radclass is a PHP4 class that handles the administration of multiple IC-Radius servers. more>>
radclass is a PHP4 class that handles the administration of multiple IC-Radius servers.
radclass can add, delete, and update users and groups on foreign radius hosts, and it can modify their check items. radclass was designed in the PHP4 OO model to be a portable solution.
<<lessradclass can add, delete, and update users and groups on foreign radius hosts, and it can modify their check items. radclass was designed in the PHP4 OO model to be a portable solution.
Download (0.044MB)
Added: 2005-11-17 License: GPL (GNU General Public License) Price:
1436 downloads
Liquid for Maya 1.5.2
LiquidMaya is a Maya plugin, Renderman-compliant. more>>
LiquidMaya is a Maya plugin, Renderman-compliant that handles full Renderman output support with a focus on speed, efficiency, and extensibility.
Its features include procedural rib generation, full network rendering support, segmented rib files, a shader assignment interface, and much more.
Along with the ability to write full C++ plug-ins, it is incredibly easy to script Liquid with Mel. Liquid was used for the visual effects of the "Lord of the Rings" movie.
Main features:
- Shader management is integrated with the HyperShade
- Vastly improved shadow generation and management
- Render Layers are directly supported
- Rendering may be previewed in Mayas RenderView panel
- The number of supported renderer has increased
<<lessIts features include procedural rib generation, full network rendering support, segmented rib files, a shader assignment interface, and much more.
Along with the ability to write full C++ plug-ins, it is incredibly easy to script Liquid with Mel. Liquid was used for the visual effects of the "Lord of the Rings" movie.
Main features:
- Shader management is integrated with the HyperShade
- Vastly improved shadow generation and management
- Render Layers are directly supported
- Rendering may be previewed in Mayas RenderView panel
- The number of supported renderer has increased
Download (2.2MB)
Added: 2006-09-01 License: GPL (GNU General Public License) Price:
1152 downloads
sqlDESKTOP 3.00
sqlDESKTOP is a computerized manual filing system arranged just like an ordinary office with pictures of real cabinets. more>>
sqlDESKTOP is a computerized manual filing system arranged just like an ordinary office with pictures of real cabinets and real folders. You can arrange by project, by department or whatever makes sense to you.
sqlDESKTOP doesnt tell you how to organize, it lets you do things your own way. Documents are easy to find because you dont have to remember the exact name of the document or where you put it. Instead, you can visually locate what you are looking for in a familiar office environment and click on it.
Main features:
- Marketing report (Microsoft Word file)
- sales forecast (star office file)
- Resellers agreements (data shared with his salesmen team)
- Photos of company plant (Album photo)
- Order records (database query)
- E-commerce site (Internet Web page)
- Press release (Email sent to journalists)
- Customers feedback forum (Internet Newsgroup)
Enhancements:
- MySQL release 5, SqlServer 2005 (the free version of SqlServer), DB2, Oracle, and Derby - Cloudscape are supported.
- A server component was added for small networks without a DBA: sqlDESKTOPserver.
- The Derby - Cloudscape database is embedded with sqlDESKTOPserver.
- A back up feature was added for the single user version.
- Support for digital photos was improved.
- You can save a photo with bulk talk or in comics format into a JPEG file.
- You can mail a photo with bulk talk or in comics format directly to traditional email client application.
<<lesssqlDESKTOP doesnt tell you how to organize, it lets you do things your own way. Documents are easy to find because you dont have to remember the exact name of the document or where you put it. Instead, you can visually locate what you are looking for in a familiar office environment and click on it.
Main features:
- Marketing report (Microsoft Word file)
- sales forecast (star office file)
- Resellers agreements (data shared with his salesmen team)
- Photos of company plant (Album photo)
- Order records (database query)
- E-commerce site (Internet Web page)
- Press release (Email sent to journalists)
- Customers feedback forum (Internet Newsgroup)
Enhancements:
- MySQL release 5, SqlServer 2005 (the free version of SqlServer), DB2, Oracle, and Derby - Cloudscape are supported.
- A server component was added for small networks without a DBA: sqlDESKTOPserver.
- The Derby - Cloudscape database is embedded with sqlDESKTOPserver.
- A back up feature was added for the single user version.
- Support for digital photos was improved.
- You can save a photo with bulk talk or in comics format into a JPEG file.
- You can mail a photo with bulk talk or in comics format directly to traditional email client application.
Download (51.8MB)
Added: 2006-11-23 License: Freeware Price:
1068 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 handles for kitchen cabinets 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