NOTE: use Perl; is on undef hiatus. You can read content, but you can't post it. More info will be forthcoming forthcomingly.
All the Perl that's Practical to Extract and Report
Stories, comments, journals, and other submissions on use Perl; are Copyright 1998-2006, their respective owners.
typo in url (Score:2)
Re:typo in url (Score:1)
One of these days someone is going to make it simple to link to search.cpan.org. Just wish that day would hurry up.
Re:typo in url (Score:1)
You haven’t fixed all of them yet…
YAML::Syck? (Score:1)
Re:YAML::Syck? (Score:1)
I'm terribly impressed with YAML::Syck, but I look at the entirity of the YAML spec and there's an enormous amount of, well, STUFF.
Does it handle all of the spec?
Re:YAML::Syck? (Score:1)
Re:YAML::Syck? (Score:1)
I note for example that the documentation explicitly says it doesn't handle circular references. It there anything else like that?
Re:YAML::Syck? (Score:1)
Re:YAML::Syck? (Score:1)
Familiar sentiments… (Score:1)
You read my CPANRatings review, didn’t you?
Re:Familiar sentiments… (Score:1)
Module::Build (Score:1)
compared to XML? (Score:1)
Re:compared to XML? (Score:1)
YAML’s syntax is very lightweight, but extremely complex. If you only use the simple constructs, it ends up looking very clean and human-readable, but there are a lot of complex (ie. hard to explain to non-techies) constructs, and they all rely on funny (read: obfuscatory) punctuation.
XML has rather heavyweight syntax, but there are far fewer constructs than YAML has. It’s not really designed for rigidly and heavily structured things like data structures; it lends itself much better to
Re:compared to XML? (Score:1)
Binary file formats are machine-readable, but NOT geek-readable or human-readable.
This makes them small and compact, but very hard for developers to handle and work with, because it requires you be highly intimate to do anything at all.
XML is machine-readable AND geek-readable, but not human-readable. The format is designed for machines, but are done in a human-enough way t
First Impressions (Score:1)
When I go to yaml.org I see no rationale for why it was invented. Is it better than XML? A substitute?
I only see an example
http://www.yaml.org/start.html [yaml.org]
Which depending on taste is better or worse than XML. I think it is worse because of & | * >
Re:First Impressions (Score:1)
One thing I do like YAML for is doing a Data::Phrasebook type config. I used to have my SQL queries in an XML file but you have to change the > and
Other than that...I would use XML.