Learn More About This
Directory
This directory sponsored by SIQL, a Spider Makers company...
1. Audio CD/DVD Dumper--Audio CD/DVD Ripper software,You can dump CD tracks into wav, mp3, wma files in very high speed with it.
- www.ailansoft.com
- Audio CD/DVD Dumper Version: 2. ...
- Powerful functions:CD Dumper lists all CD driver your system installed, CD type and all tracks. ...
- Flexible setting:CD Dumper is able to automatically detect the dump formats, audio or media encode format your system supports, and then set the application's parameters for the best possible. ...
- File information edit support:CD Dumper offers a file information edit dialog, You can edit the saving file information, such as title, author with it. ...
- Audio CD/DVD Dumper v2. 0 (short as CD Dumper) is the CD/DVD ripper. ... CD Dumper is able to automatically detect the dump formats, audio or media encode format your system supports, and then set the application's parameters for the best possible performance. ...
2. Data-Dumper-Simple reviews -
- cpanratings.perl.org
- Data-Dumper-Simple reviews.
- RSS | Add a review of Data-Dumper-Simple .
- Data-Dumper-Simple (0. ...
- This should be bundled with Data::Dumper. ...
3. Index of /yeast/cluster/database/Data-Dumper-2.09
- genecensus.org
- Index of /yeast/cluster/database/Data-Dumper-2. ...
- Name Last modified Size Description Parent Directory 21-Jan-2000 04:05 - Changes 09-Jul-1998 02:36 4k Dumper. html 17-Jul-1998 01:12 19k Dumper. pm 09-Jul-1998 02:44 28k Dumper. ... NOXSUB 17-Jul-1998 00:52 28k Dumper. ... PL 17-Jul-1998 01:00 1k README 17-Jul-1998 01:09 4k Todo 09-Jul-1998 02:27 1k t/ 17-Jul-1998 01:16 - This is the README file for Data::Dumper, the Perl data-structure printing/stringification module. ... ---NOTE----NOTE----NOTE----NOTE----NOTE----NOTE----NOTE----NOTE---NOTE--- | | | Data-Dumper comes standard with perl from version 5. ... * want to store some data structures to disk, in either a compact or perl readable format (Dumper outputs pure perl, so you don't have to invent your own portable data format, or parse it; simply "do FILE" or read the data back in with perl and eval() it). ... Dumper can be efficient if you are on a system supported by MakeMaker and xsubpp, the perl extension building tools. In this case, Dumper will build a XSUB extension that will be much faster than its perl counterpart (in my tests, about 4 to 5 times). ... If your platform has a C compiler AND is supported by xsubpp: gzip -c -d Data-Dumper-2. ... gz | tar xvf - cd Data-Dumper-2.
4. perlpod.com -- 5.005_04 ext/Data/Dumper/Dumper
- www.perlpod.com
- 005_04 ext/Data/Dumper/Dumper.
- Data::Dumper - stringified perl data structures, suitable for both printing and eval .
- use Data::Dumper; # simple procedural interface print Dumper($foo, $bar); # extended usage with names print Data::Dumper->Dump( $foo, $bar , qw(foo *ary) ); # configuration variables { local $Data::Dump::Purity = 1; eval Data::Dumper->Dump( $foo, $bar , qw(foo *ary) ); } # OO usage $d = Data::Dumper->new( $foo, $bar , qw(foo *ary) );. ...
- See $Data::Dumper::Varname and $Data::Dumper::Terse below. ...
- Returns a newly created Data::Dumper object. ...
- The prefix specified by $Data::Dumper::Varname will be used with a numeric suffix if the name for a value is undefined. ...
- Data::Dumper will catalog all references encountered while dumping the values. ...
- $OBJ->Dumpxs or PACKAGE->Dumpxs(ARRAYREF , ARRAYREF ) This method is available if you were able to compile and install the XSUB extension to Data::Dumper. ...
- Dumper(LIST) Returns the stringified form of the values in the list, subject to the configuration options below. ... DumperX(LIST) Identical to the Dumper() function above, but this calls the XSUB implementation. Only available if you were able to compile and install the XSUB extensions in Data::Dumper. ...
- $Data::Dumper::Indent or $OBJ->Indent( NEWVAL ) Controls the style of indentation. ... $Data::Dumper::Purity or $OBJ->Purity( NEWVAL ) Controls the degree to which the output can be evaled to recreate the supplied reference structures. ... $Data::Dumper::Pad or $OBJ->Pad( NEWVAL ) Specifies the string that will be prefixed to every line of the output. ... $Data::Dumper::Varname or $OBJ->Varname( NEWVAL ) Contains the prefix to use for tagging variable names in the output. ... $Data::Dumper::Useqq or $OBJ->Useqq( NEWVAL ) When set, enables the use of double quotes for representing string values. ... $Data::Dumper::Terse or $OBJ->Terse( NEWVAL ) When set, Data::Dumper will emit single, non-self-referential values as atoms/terms rather than statements. ... $Data::Dumper::Freezer or $OBJ->Freezer( NEWVAL ) Can be set to a method name, or to an empty string to disable the feature. Data::Dumper will invoke that method via the object before attempting to stringify it. ... $Data::Dumper::Toaster or $OBJ->Toaster( NEWVAL ) Can be set to a method name, or to an empty string to disable the feature. Data::Dumper will emit a method call for any objects that are to be dumped using the syntax bless(DATA, CLASS)-METHOD()>. ... $Data::Dumper::Deepcopy or $OBJ->Deepcopy( NEWVAL ) Can be set to a boolean value to enable deep copies of structures.
5. perlpod.com -- 5.005_03 ext/Data/Dumper/Dumper
- www.perlpod.com
- 005_03 ext/Data/Dumper/Dumper.
- Data::Dumper - stringified perl data structures, suitable for both printing and eval .
- use Data::Dumper; # simple procedural interface print Dumper($foo, $bar); # extended usage with names print Data::Dumper->Dump( $foo, $bar , qw(foo *ary) ); # configuration variables { local $Data::Dump::Purity = 1; eval Data::Dumper->Dump( $foo, $bar , qw(foo *ary) ); } # OO usage $d = Data::Dumper->new( $foo, $bar , qw(foo *ary) );. ...
- See $Data::Dumper::Varname and $Data::Dumper::Terse below. ...
- Returns a newly created Data::Dumper object. ...
- The prefix specified by $Data::Dumper::Varname will be used with a numeric suffix if the name for a value is undefined. ...
- Data::Dumper will catalog all references encountered while dumping the values. ...
- $OBJ->Dumpxs or PACKAGE->Dumpxs(ARRAYREF , ARRAYREF ) This method is available if you were able to compile and install the XSUB extension to Data::Dumper. ...
- Dumper(LIST) Returns the stringified form of the values in the list, subject to the configuration options below. ... DumperX(LIST) Identical to the Dumper() function above, but this calls the XSUB implementation. Only available if you were able to compile and install the XSUB extensions in Data::Dumper. ...
- $Data::Dumper::Indent or $OBJ->Indent( NEWVAL ) Controls the style of indentation. ... $Data::Dumper::Purity or $OBJ->Purity( NEWVAL ) Controls the degree to which the output can be evaled to recreate the supplied reference structures. ... $Data::Dumper::Pad or $OBJ->Pad( NEWVAL ) Specifies the string that will be prefixed to every line of the output. ... $Data::Dumper::Varname or $OBJ->Varname( NEWVAL ) Contains the prefix to use for tagging variable names in the output. ... $Data::Dumper::Useqq or $OBJ->Useqq( NEWVAL ) When set, enables the use of double quotes for representing string values. ... $Data::Dumper::Terse or $OBJ->Terse( NEWVAL ) When set, Data::Dumper will emit single, non-self-referential values as atoms/terms rather than statements. ... $Data::Dumper::Freezer or $OBJ->Freezer( NEWVAL ) Can be set to a method name, or to an empty string to disable the feature. Data::Dumper will invoke that method via the object before attempting to stringify it. ... $Data::Dumper::Toaster or $OBJ->Toaster( NEWVAL ) Can be set to a method name, or to an empty string to disable the feature. Data::Dumper will emit a method call for any objects that are to be dumped using the syntax bless(DATA, CLASS)-METHOD()>. ... $Data::Dumper::Deepcopy or $OBJ->Deepcopy( NEWVAL ) Can be set to a boolean value to enable deep copies of structures.
6. Dumper Object Reference
- oss.coresecurity.com
- Dumper Object Reference.
- Dumper Object Reference.
7. search.cpan.org: The CPAN Search Site
- search.cpan.org
- Data::Dumper stringified perl data structures, suitable for both printing and eval perl-5. ...
- Data::Dumper stringified perl data structures, suitable for both printing and eval Data-Dumper-2. ...
8. Jason Merrill - Re: PATCH Yet another tree dumper
- gcc.gnu.org
- Re: PATCH Yet another tree dumper.
- Subject: Re: PATCH Yet another tree dumper .
- Why? The example Devang gave looks just as messy as the current dumper, and doesn't have the <> brackets to mark boundaries. ...
- Re: PATCH Yet another tree dumper .
- Re: PATCH Yet another tree dumper .
- Re: PATCH Yet another tree dumper .
- Re: PATCH Yet another tree dumper .
- Re: PATCH Yet another tree dumper .
9. Nail-A-Dumper Web cam
- www.nailadumper.com
- We are currently in the process of moving the Nail a Dumper web camera to a new location. ...
- Overview / Report Illegal Dumping / Nail-a-Dumper WebCam / Most Wanted / Clean-ups.
10. Zope-CVS CVS: Products/FSDump - CHANGES.txt:1.11 Dumper.py:1.12
- mail.zope.org
- 11 Dumper. ...
- txt Dumper. ... 1 (2004/12/09) * Repackaged to nest the actual products directory inside a version- === Products/FSDump/Dumper. ... 12 === --- Products/FSDump/Dumper. ... 11 Wed Nov 24 19:19:59 2004 +++ Products/FSDump/Dumper. ...
11. HISTORY - public release history for Data::Dumper
- www.perl.com
- HISTORY - public release history for Data::Dumper .
- Implement $Data::Dumper::Bless, suggested by Mark Daku <daku@nortel. ...
- no> to make Dumper() work with overloaded strings in recent perls, and his new testsuite. ...
- Dumper does more aggressive cataloging of SCALARs encountered within ARRAY/HASH structures. ...
- Calling the Indent() method on a dumper object now correctly resets the internal separator (reported by Curt Tilmes <curt@ltpmail. ...
- Dumper. ...
- The fix: Data::Dumper::Purity, when set, always triggers quotes around hash keys. ...
12. Journal of demerphq (2831)
- use.perl.org
- Dumper distress 2 Comments | #5012 .
- Every time I think my new Dumper is finished I discover some new bug. And often the bug aint mine, but rather a perl bug or a Data::Dumper bug.
- Its not possible to correctly dump a perl data structure with just one pass (which is what Data::Dumper tries to do). ...
- Data::Dumper .
- Dumper difficulties. ...
- I'm currently working a new dumper module in my spare time. In the process I've found a few minor bugs in both Data::Dump and Data::Dumper.
- print dump( $x,$y ); And a bug in dumper can be seen from use Data::Dumper;.
- $Data::Dumper::Purity=1;.
- print Dumper($x);.
- $$$VAR1='Bar'; Im looking forward to releasing my new dumper in the next few days. It wont have either of these problems and represents a new approach to dumper modules. ...
Other related topics:
Do you have a great site about Dumper? Is
your Dumper site listed here?
Would you like a prefered placement of your site in this directory?
It's easy! First place, the HTML from the box below on your page that
you would like listed in this directory.
Then use our link submission request with
your name, your contact information, and the URL of your site that has
a link to this directory. After we
verify your link to us, we'll make sure your site stays in our directory,
and we'll give it prefered placement here also.
Here is how to make a simple text link to us. Just copy the code in this
box to your website:
We can also develop a custom Guide To The Internet for your site. Please
request your own
custom Guide To The Internet.
This custom Guide To The Internet produced by
Siql. Visit us today, and find out how to get your own
custom guide to the Internet, and how to get your site
listed in our guides.
Copyright 1995-2005 by Siql. All
Rights Reserved.