handles for cabinets
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 2224
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
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
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
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
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
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
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
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
Web Service Engine for MySQL 0.4
Web Service Engine for MySQL is a storage engine for the MySQL database. more>>
Web Service Engine for MySQL is a storage engine for the MySQL database. The project takes basic SQL and translates this through the engine interface into HTTP request methods.
This gives you the ability to create, read, and delete pages on Web servers. Wikipedia becomes a table you can select on from your database.
Enhancements:
- Multiple attributes per table are now supported.
- The engine now handles tables with more than two columns by generating XML that is stored on the remote server.
- Tables with only two columns are stored as before, with the non-keyed attribute being directly provided to the remote provider.
<<lessThis gives you the ability to create, read, and delete pages on Web servers. Wikipedia becomes a table you can select on from your database.
Enhancements:
- Multiple attributes per table are now supported.
- The engine now handles tables with more than two columns by generating XML that is stored on the remote server.
- Tables with only two columns are stored as before, with the non-keyed attribute being directly provided to the remote provider.
Download (0.29MB)
Added: 2007-06-29 License: GPL (GNU General Public License) Price:
849 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
Lefromoma 0.3
Lefromoma is a simple mame frontend written in python focused on cabinets. more>>
Lefromoma is a simple mame frontend written in python focused on cabinets.
Features: fullscreen, snapshots, roms-, favorites-list (alphabetical) & ignore list, scaling of a game. All text in game names between () is stripped in the favorites list (revision/version numbers etc), it makes the list prettier. There are 3 wav-files included, a "start up" sound, a "start game" sound and a button sound.
The script creates 4 new directories in your rom directory: complete, favorites, ignore and scaling. They are filled with symlinks (this doesnt take up much space, dont worry). When you add a game to the favorites the symlink from the complete dir is moved to the favorites and visa versa.
If you move a game to the ignore directory (that is, the symlink will be moved there), you will have to remove it yourself again. (might change in the future). You can change the scaling of the game in the frontend. The scaling dir is used to write the default scaling for a game (gamerom_2 or gamerom_1)
Lefromoma is developed and tested on Fedora Core 5, other GNU/linux distro should work too (other distros not tested though).
<<lessFeatures: fullscreen, snapshots, roms-, favorites-list (alphabetical) & ignore list, scaling of a game. All text in game names between () is stripped in the favorites list (revision/version numbers etc), it makes the list prettier. There are 3 wav-files included, a "start up" sound, a "start game" sound and a button sound.
The script creates 4 new directories in your rom directory: complete, favorites, ignore and scaling. They are filled with symlinks (this doesnt take up much space, dont worry). When you add a game to the favorites the symlink from the complete dir is moved to the favorites and visa versa.
If you move a game to the ignore directory (that is, the symlink will be moved there), you will have to remove it yourself again. (might change in the future). You can change the scaling of the game in the frontend. The scaling dir is used to write the default scaling for a game (gamerom_2 or gamerom_1)
Lefromoma is developed and tested on Fedora Core 5, other GNU/linux distro should work too (other distros not tested though).
Download (0.51MB)
Added: 2006-10-18 License: Freely Distributable Price:
1101 downloads
TuxArcade 0.2
TuxArcade project is a multi-emulator frontend. more>>
TuxArcade project is a multi-emulator frontend.
Its designed for arcade cabinets, so it doesnt need a keyboard and a mouse, but is completely configurable via joystick. It includes theme support.
Main features:
- designed for arcade cabinet, so no need keyboard/mouse ...its completly configurable via joystick
- multi emulator front end
- game image preview
- preferred game list and game type/num of player
- theme support
- install/remove roms
- Sound effect and Background(wav/mp3)
Enhancements:
- setup menu was reorganized
- some buttons of the console are now bindable with preferred functions
- performance improved when build rom list.
- added reConfigure keys on setup
- added configure volume on setup
- added about on setup :P
- better themable support
- fix crash on game execution if its launced with fullscreen option
- fix save key at first execution
- fix remove roms didnt work
- removed all back tricks from code
- minor bugfix
<<lessIts designed for arcade cabinets, so it doesnt need a keyboard and a mouse, but is completely configurable via joystick. It includes theme support.
Main features:
- designed for arcade cabinet, so no need keyboard/mouse ...its completly configurable via joystick
- multi emulator front end
- game image preview
- preferred game list and game type/num of player
- theme support
- install/remove roms
- Sound effect and Background(wav/mp3)
Enhancements:
- setup menu was reorganized
- some buttons of the console are now bindable with preferred functions
- performance improved when build rom list.
- added reConfigure keys on setup
- added configure volume on setup
- added about on setup :P
- better themable support
- fix crash on game execution if its launced with fullscreen option
- fix save key at first execution
- fix remove roms didnt work
- removed all back tricks from code
- minor bugfix
Download (0.98MB)
Added: 2006-11-14 License: GPL (GNU General Public License) Price:
1074 downloads
WWW::Scraper::Brainpower 0.01
WWW::Scraper::Brainpower it Scrapes Brainpower.com. more>>
WWW::Scraper::Brainpower it Scrapes Brainpower.com.
SYNOPSIS
use WWW::Scraper;
use WWW::Scraper::Response::Job;
$search = new WWW::Scraper(Brainpower);
$search->setup_query($query, {options});
while ( my $response = $scraper->next_response() ) {
# $response is a WWW::Scraper::Response::Job.
}
Brainpower extends WWW::Scraper.
It handles making and interpreting Brainpower searches of http://www.Brainpower.com.
<<lessSYNOPSIS
use WWW::Scraper;
use WWW::Scraper::Response::Job;
$search = new WWW::Scraper(Brainpower);
$search->setup_query($query, {options});
while ( my $response = $scraper->next_response() ) {
# $response is a WWW::Scraper::Response::Job.
}
Brainpower extends WWW::Scraper.
It handles making and interpreting Brainpower searches of http://www.Brainpower.com.
Download (0.037MB)
Added: 2006-08-26 License: Perl Artistic License Price:
1154 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 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