From davidnicol at gmail.com Wed Feb 7 12:46:28 2007 From: davidnicol at gmail.com (David Nicol) Date: Wed, 7 Feb 2007 14:46:28 -0600 Subject: [Kc] Fwd: UG News--February is Web Design and Development Month at O'Reilly In-Reply-To: References: Message-ID: <934f64a20702071246u52c62d77r5633881111d62c22@mail.gmail.com> ---------- Forwarded message ---------- From: Marsee Henon Date: Feb 7, 2007 1:56 PM Subject: UG News--February is Web Design and Development Month at O'Reilly To: kcpm-moderate at davidnicol.com Hi, Can you share the following with your members if you think they might be interested? It's Web Design and Development Month here at O'Reilly and we just put together a special resource page dedicated to web development essentials including books, PDF Short Cuts, articles, and author events: http://www.oreilly.com/go/webdev Don't forget your members can receive 35% off any of these titles when they use discount code DSUG on our site. There's also free ground shipping in the US on orders over $29.95. Happy FebWeb, Marsee ================================================================ O'Reilly 1005 Gravenstein Highway North Sebastopol, CA 95472 http://ug.oreilly.com/ http://ug.oreilly.com/creativemedia/ ================================================================ -- Q: How do I decode unix seconds-since-the-epoch timestamps? A: xterm -T TIMESTAMP_TRANSLATOR -e perl -ple'$_= ~~localtime$_' & From ggoebel at goebel.ws Wed Feb 7 19:53:12 2007 From: ggoebel at goebel.ws (Garrett Goebel) Date: Wed, 7 Feb 2007 21:53:12 -0600 Subject: [Kc] Fwd: February is Web Design and Development Month at O'Reilly References: Message-ID: > From: "Marsee Henon" > Date: February 7, 2007 1:56:09 PM CST > > It's Web Design and Development Month here at O'Reilly and we just put > together a special resource page dedicated to web development > essentials > including books, PDF Short Cuts, articles, and author events: > http://www.oreilly.com/go/webdev > > > Don't forget your members can receive 35% off any of these titles when > they use discount code DSUG on our site. There's also free ground > shipping in the US on orders over $29.95. > > Happy FebWeb, > > Marsee > > ================================================================ > O'Reilly > 1005 Gravenstein Highway North > Sebastopol, CA 95472 > http://ug.oreilly.com/ http://ug.oreilly.com/creativemedia/ > ================================================================ From djgoku at gmail.com Tue Feb 13 21:14:13 2007 From: djgoku at gmail.com (djgoku at gmail.com) Date: Tue, 13 Feb 2007 23:14:13 -0600 Subject: [Kc] February 2007 -- Meeting Message-ID: Anyone make the meeting tonight? I went to the January meeting, but Michael Morgan and I were the only ones that showed. From djgoku at gmail.com Sat Feb 17 23:19:16 2007 From: djgoku at gmail.com (djgoku at gmail.com) Date: Sun, 18 Feb 2007 01:19:16 -0600 Subject: [Kc] par2_checker.pl Message-ID: <0ED74C1B-B254-4D04-BCC2-26BE48D955E7@gmail.com> I have created a program to help automate par2 checking of files. As long as par2cmdline 0.4 and par2 is in your path you should be able to run this with out issues on a *nix box. http://tektronic.org/projects/par2_checker/par2_checker.pls From davidnicol at gmail.com Wed Feb 28 21:49:15 2007 From: davidnicol at gmail.com (David Nicol) Date: Wed, 28 Feb 2007 23:49:15 -0600 Subject: [Kc] should i submit this (or at least the lack of a warning) as a bug? Message-ID: <934f64a20702282149n490644c7v5263b483bc9e5f53@mail.gmail.com> The situation is, that the C construct does its thing inside a BEGIN block. There is an implied scope around a perl expression that starts "use ..." and that can confuse things when you try to declare a lexical in the arguments to C. This has bitten me more than once, and thre is no "lexical within implied scope may disappear" warning when it happens, at least in 5.8.6. David at PAPERCLIP ~/perlhacking/scopebug $ perl -wle 'use lib "."; use SetToFour my $x; print $x' Name "main::x" used only once: possible typo at -e line 1. Use of uninitialized value in print at -e line 1. David at PAPERCLIP ~/perlhacking/scopebug $ perl -wle 'use lib ".";my $x; use SetToFour $x; print $x' 4 David at PAPERCLIP ~/perlhacking/scopebug $ cat SetToFour.pm package SetToFour; sub import { $_[1] = 4 } 1; -- "I've never been elected dog-catcher and I've never had an employee." -- Bruce Sterling