Berkeley CSUA MOTD:Entry 39376
Berkeley CSUA MOTD
 
WIKI | FAQ | Tech FAQ
http://csua.com/feed/
2025/04/04 [General] UID:1000 Activity:popular
4/4     

2005/8/31 [Computer/SW/Languages/Perl] UID:39376 Activity:nil
8/31    Looking for an XML parser for Perl, preferably one that
        doesn't require installation (something already built in).
        If it's not already built in, I prefer something that doesn't
        require C compilation, and that I can just stick the *.pm
        to use. I'm looking for portability, not performance. Thanks.
        \_ What's wrong with using CPAN?
           \_ Sometimes it's nice to be able to just give someone
              a self-contained tar-ball and say "here, run this"
              without expecting them to debug the various CPAN error
              messages that might crop up. I've always found CPAN to
              be a slight PITA.
              \_ Huh? CPAN simply automates the compile for you. It's not
                 like you can simply tell someone to tar xzf foobar.tgz
                 without doing a perl Makefile.pl and then doing a make
                 on it for the majority of modules. Given that you aren't
                 guarenteed where the site modules for perl reside on
                 any given distribution, your safest bet in terms of
                 portability is to utilize make. In the majority of cases,
                 it usually just simply dumps the pm files in the correct
                 place. If you have problems with CPAN, then you most
                 likely will have problems with installation of perl modules
                 anyway. The only way you can really ensure no make, no
                 brain portability is if you have the same setup on all
                 your distribution machines and then do a straight tar off
                 of it. If you're that paranoid about it, you can simply
                 wrap CPAN into a script...
           \_ By searching for XML Parser on CPAN I got like over 1000
              results. I never know whech CPAN modules are the best to
              use and end up wasting time experimenting them. Let me give
              you an example. Someone put up XML::Parser. The name is good
              but the format they use is completely fucked up (hard to use).
              Someone else put up XML::Parser::EasyTree, which is much
              easier to use. By the time I figured out which one has the
              least bugs or problematic or easiest to use, I've already
              wasted 2-3 hours.
        \_ I've been using XML::Simple... I'm only doing basic stuff.
           \_ Interesting! Unlike shitty XML::Parser, according to
              XML::Simple the following two cases are actually equivalent!
                case 1:  <tag1 field=value>HELLO</tag1>
                case 2:  <tag1><field>value</field>HELLO</tag1>
              Do you ever run into problems? I think this is perfectly
              acceptable for my cases and actually makes my life a lot easier.
              THANK YOU MOTD, YOU ARE GREAT.
              \_ Four problems w/ XML::Simple:
                 1) if you're trying to _output_ XML to conform to a specific
                    schema/DTD, it's very hard
                 2) unless you turn off some of the behavior that makes it
                    easy to use, a different file of the same schema can
                    produce a different data structure in perl; not always what
                    you want
                 3) at least when I used it, it caused mod_perl to die horribly
                 4) It reads the whole file into memory.  If you have a huge
                    file you should use something like XML::Twig
                 --dbushong
2025/04/04 [General] UID:1000 Activity:popular
4/4     

You may also be interested in these entries...
2008/3/4-7 [Computer/Networking, Computer/SW/Languages/Perl] UID:49324 Activity:moderate
3/4     Does anybody have some code or know of a program that will take a
        network/mask and return the list of address in that CIDR block?
        e.g. "iplist 10.10.10.0/24" and return 10.10.10.0 ... 10.10.10.255
        [I have a way to do this, but it involves distributing a large
        amount of code, which is kind of a hassle. Looking for something
        lightweight and either standard or easdy to rpm/port/yum install.]
	...
2007/9/10 [Computer/SW/Languages/Perl] UID:47986 Activity:low
9/10    Hi.  I'm running a package based linux distro.  Should
        I install perl CPAN modules through the provided packages,
        or through sudo cpan> install modulename etc ?
        Opinions?
        \_ Depends on the package system you're using, you may have to
           deal with both.  I had an experience where I installed via
	...
2007/8/7-13 [Computer/SW/Languages/Perl, Computer/SW/Unix] UID:47555 Activity:nil
8/7     I'm trying to figure out whether it's possible for get wget to
        authenticate to a web page protected by a login form ('post'
        method to send username/pass, and cookies.)  Cookies don't seem
        to be the problem, with --save-cookies and --keep-session-cookies
        but getting the username/password submitted isn't doing it.  On
        this particular page, getting to a link, let's say 'example.aspx',
	...
2006/6/29-7/3 [Computer/SW/Languages/Perl] UID:43527 Activity:nil
6/29    Visual Programming in Perl:
        http://search.cpan.org/dist/Acme-EyeDrops/lib/Acme/EyeDrops.pm
	...
2005/9/2-3 [Computer/SW/Languages/Perl] UID:39466 Activity:nil
9/2     Hey motd I used to have perl w/DBI 1.42 & DBD 2.9003. After
        upgrading Perl, DBI 1.48, & DBD 3.0002_1 I'm seeing something
        really weird. The following used to work:
        $dbh=$DBI->prepare("INSERT INTO data VALUES(\?)");
        for ($i=0; $i<10; $i++) {
          if (!$dbh->execute($i)) {
	...
2004/4/10-12 [Computer/SW/Languages/Perl] UID:13128 Activity:nil
4/10    In perl, how do I get time precise to the milisecond? The CPAN module
        requires recompilation and root access to install it, I'm looking for
        something more portable. Thanks!
        \_ If you need to know the time, there's no portable way to do it
           without modules.  However, if you just want a sub-second delay,
           you can do it with select -- for example, select "", "", "", 0.1;
	...
2004/4/12 [Computer/SW/Languages/Perl] UID:13154 Activity:nil
4/12    What's a good perl module (cpan) that strips off all the html
        tags and javascript crap? And perhaps be smart enough to strip
        off menus and ads? Thanks.
        \_ lynx -dump <pagename>
        \_ s/<[^>]*>//g
	...
2004/3/29-30 [Computer/SW/OS/FreeBSD, Computer/SW/OS/OsX] UID:12920 Activity:high
3/29    I'm installing binaries for both OsX and Linux and I'd like all the
        users to have /usr/bin/<files> to be accessible. I thought about
        /usr/bin/<files> for generic stuff (like scripts) and
        /usr/bin/<platform>/<files> for platform specific things.
        What is the correct approach to this?
        \_ there are obviously several ways to do this, and "correct" is mostly
	...
2004/3/30 [Computer/SW/OS/FreeBSD, Computer/SW/OS/OsX] UID:29888 Activity:high
3/29      I'm installing binaries for both OsX and Linux and I'd like all the
          users to have /usr/bin/<files> to be accessible. I thought about
          /usr/bin/<files> for generic stuff (like scripts) and
          /usr/bin/<platform>/<files> for platform specific things.
          What is the correct approach to this?
        \_ there are obviously several ways to do this, and "correct" is mostly
	...
2003/8/29-2004/2/14 [Computer/SW/Languages/Perl, Computer/SW/Unix] UID:12252 Activity:nil
2/13    Does perl have a "diff" facility? I have something that requires a
        lot of diff but file I/O using unix diff would be too slow. Thanks.
        \_ Text::Diff?  Really.  You could search cpan for this sort of thing.
	...
2003/9/9 [Computer/SW/Languages/Perl] UID:10121 Activity:high
9/8     Any recommendations for a text-based Yahoo instant messanger app
        for linux that logs.
        \_ Yahoo::Messenger
           \_ what do you mean, there isn't a CPAN module by that name.
              \_ Sorry, Net::YahooMessenger, but really, you could have
                 tried searching.
	...
2003/7/23-24 [Computer/SW/Languages/Perl] UID:29108 Activity:high
7/22    Please rate the following languages by their usefulness for
        large programming projects and give your reasons:
        perl, python, ruby, tcl, urdu
        \_ Bangla >> Urdu
        \_ ocaml! -- ilyas
        \_ Don't use tcl.  tk was a cool idea but tcl is just cumbersome to
	...