From garrett at scriptpro.com Tue May 6 09:11:33 2003 From: garrett at scriptpro.com (Garrett Goebel) Date: Mon Aug 2 21:31:07 2004 Subject: [Kc] Next Meeting: XML::LibXML & XML::LibXSLT Message-ID: <71BEC0D4E1DED3118F7A009027B12028034C8D18@EXCH_MISSION> At 7PM on Tuesday May 13th we will be meeting at the Planet Sub (http://www.planetsub.com/kc.html) at 50th and Main to among other things hear David Hageman's presentation on XML::LibXML and XML::LibXSLT. David is the author and maintainer of 4 CPAN modules: o Export::Cluster o Net::CUPS o TEI::Lite o XForms::Generator -- Garrett Goebel IS Development Specialist ScriptPro Direct: 913.403.5261 5828 Reeds Road Main: 913.384.1008 Mission, KS 66202 Fax: 913.384.2180 www.scriptpro.com garrett@scriptpro.com From whatever at davidnicol.com Sun May 11 22:12:54 2003 From: whatever at davidnicol.com (david nicol) Date: Mon Aug 2 21:31:07 2004 Subject: [Kc] when multidim emulation works Message-ID: <1052709173.1054.53.camel@plaza.davidnicol.com> Is this a bug? % perl -le '$e{(0,1,2,3)} = 3; @a=(0,1,2,3); print $e{@q=@a}' % perl -le '$e{(0,1,2,3)} = 3; @a=(0,1,2,3); print $e{@a}' % perl -le '$e{(0,1,2,3)} = 3; @a=(0,1,2,3); print $e{0,@a[1,2,3]}' 3 % perl -le '$e{(0,1,2,3)} = 3; @a=(0,1,2,3); print $e{$a[0],@a[1,2,3]}' 3 Well it is, because it isn't DWIM; but the question is, is $e{@a} supposed to interpolate $; or not? I want it to and it doesn't seem to. -- David Nicol, independent consultant and contractor have a nice day, really. http://www.funnytimes.com From whatever at davidnicol.com Mon May 12 02:54:01 2003 From: whatever at davidnicol.com (david nicol) Date: Mon Aug 2 21:31:07 2004 Subject: [Kc] Re: when multidim emulation works In-Reply-To: <1052724337.3ebf4c7155d1d@imp.free.fr> References: <1052709173.1054.53.camel@plaza.davidnicol.com> <1052724337.3ebf4c7155d1d@imp.free.fr> Message-ID: <1052726041.2747.14.camel@plaza.davidnicol.com> So what's the easiest way to coerce an array into an OP_LIST? On Mon, 2003-05-12 at 02:25, Rafael Garcia-Suarez wrote: > the parser converts the hash subscript expression to > a join C<$;,...> only when this expression is an OP_LIST. > (Grep the sources for "jmaybe".) -- David Nicol, independent consultant and contractor have a nice day, really. http://www.funnytimes.com From garrett at scriptpro.com Mon May 12 08:55:49 2003 From: garrett at scriptpro.com (Garrett Goebel) Date: Mon Aug 2 21:31:07 2004 Subject: [Kc] Meeting tomorrow: XML::LibXML & XML::LibXSLT Message-ID: <71BEC0D4E1DED3118F7A009027B12028034C8D20@EXCH_MISSION> Reminder: At 7PM on Tuesday May 13th we will be meeting at the Planet Sub (http://www.planetsub.com/kc.html) at 50th and Main to among other things hear David Hageman's presentation on XML::LibXML and XML::LibXSLT. David is the author and maintainer of 4 CPAN modules: o Export::Cluster o Net::CUPS o TEI::Lite o XForms::Generator * Oh, and I'll be bringing Perl Monger t-shirts. The shirts are $5 each and benefit Yet-Another-Society (www.yetanother.org). -- Garrett Goebel IS Development Specialist ScriptPro Direct: 913.403.5261 5828 Reeds Road Main: 913.384.1008 Mission, KS 66202 Fax: 913.384.2180 www.scriptpro.com garrett at scriptpro dot com -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mail.pm.org/pipermail/kc/attachments/20030512/dd395bb0/attachment.htm From rgarciasuarez at free.fr Mon May 12 02:25:37 2003 From: rgarciasuarez at free.fr (Rafael Garcia-Suarez) Date: Mon Aug 2 21:31:07 2004 Subject: [Kc] Re: when multidim emulation works In-Reply-To: <1052709173.1054.53.camel@plaza.davidnicol.com> References: <1052709173.1054.53.camel@plaza.davidnicol.com> Message-ID: <1052724337.3ebf4c7155d1d@imp.free.fr> Quoting david nicol : > Is this a bug? > > % perl -le '$e{(0,1,2,3)} = 3; @a=(0,1,2,3); print $e{@q=@a}' > > % perl -le '$e{(0,1,2,3)} = 3; @a=(0,1,2,3); print $e{@a}' > > % perl -le '$e{(0,1,2,3)} = 3; @a=(0,1,2,3); print $e{0,@a[1,2,3]}' > 3 > % perl -le '$e{(0,1,2,3)} = 3; @a=(0,1,2,3); print > $e{$a[0],@a[1,2,3]}' > 3 > > > Well it is, because it isn't DWIM; but the question is, is > $e{@a} supposed to interpolate $; or not? I want it to and > it doesn't seem to. It's not ; the parser converts the hash subscript expression to a join C<$;,...> only when this expression is an OP_LIST. (Grep the sources for "jmaybe".) From nick.ing-simmons at elixent.com Mon May 12 02:56:49 2003 From: nick.ing-simmons at elixent.com (Nick Ing-Simmons) Date: Mon Aug 2 21:31:07 2004 Subject: [Kc] Re: when multidim emulation works In-Reply-To: <1052709173.1054.53.camel@plaza.davidnicol.com> from David Nicol on 11 May 2003 22:12:54 -0500 References: <1052709173.1054.53.camel@plaza.davidnicol.com> Message-ID: <20030512075649.1864.4@bactrian.elixent.com> David Nicol writes: >Is this a bug? > >% perl -le '$e{(0,1,2,3)} = 3; @a=(0,1,2,3); print $e{@q=@a}' > >% perl -le '$e{(0,1,2,3)} = 3; @a=(0,1,2,3); print $e{@a}' > >% perl -le '$e{(0,1,2,3)} = 3; @a=(0,1,2,3); print $e{0,@a[1,2,3]}' >3 >% perl -le '$e{(0,1,2,3)} = 3; @a=(0,1,2,3); print $e{$a[0],@a[1,2,3]}' >3 > > >Well it is, because it isn't DWIM; but the question is, is >$e{@a} supposed to interpolate $; or not? I want it to and >it doesn't seem to. If you want a list back from %e you need to write @e{@a} Otherwise index is evaluated as a scalar and scalar(@a) is 4 and you have no $e{4} -- Nick Ing-Simmons http://www.ni-s.u-net.com/ From andreas.koenig at anima.de Mon May 12 03:19:17 2003 From: andreas.koenig at anima.de (Andreas J. Koenig) Date: Mon Aug 2 21:31:07 2004 Subject: [Kc] Re: when multidim emulation works In-Reply-To: <1052726041.2747.14.camel@plaza.davidnicol.com> (david nicol's message of "12 May 2003 02:54:01 -0500") References: <1052709173.1054.53.camel@plaza.davidnicol.com> <1052724337.3ebf4c7155d1d@imp.free.fr> <1052726041.2747.14.camel@plaza.davidnicol.com> Message-ID: >>>>> On 12 May 2003 02:54:01 -0500, david nicol said: > So what's the easiest way to coerce an array into an OP_LIST? Maybe $e{@a,()} -- andreas From nick.ing-simmons at elixent.com Mon May 12 04:40:52 2003 From: nick.ing-simmons at elixent.com (Nick Ing-Simmons) Date: Mon Aug 2 21:31:07 2004 Subject: [Kc] Re: when multidim emulation works In-Reply-To: <1052726041.2747.14.camel@plaza.davidnicol.com> from David Nicol on 12 May 2003 02:54:01 -0500 References: <1052709173.1054.53.camel@plaza.davidnicol.com> <1052724337.3ebf4c7155d1d @imp.free.fr> <1052726041.2747.14.camel@plaza.davidnicol.com> Message-ID: <20030512094052.2067.1@bactrian.elixent.com> David Nicol writes: >So what's the easiest way to coerce an array into an OP_LIST? The easiest thing to do for perl5 is not to use "multidim emulation" but use multi-dimensioned arrays. If that is too much overhead then explcit join would seem simplest. > > >On Mon, 2003-05-12 at 02:25, Rafael Garcia-Suarez wrote: > >> the parser converts the hash subscript expression to >> a join C<$;,...> only when this expression is an OP_LIST. >> (Grep the sources for "jmaybe".) -- Nick Ing-Simmons http://www.ni-s.u-net.com/ From whatever at davidnicol.com Wed May 14 16:46:54 2003 From: whatever at davidnicol.com (david nicol) Date: Mon Aug 2 21:31:07 2004 Subject: [Kc] Re: when multidim emulation works In-Reply-To: References: <1052709173.1054.53.camel@plaza.davidnicol.com> <1052724337.3ebf4c7155d1d@imp.free.fr> <1052726041.2747.14.camel@plaza.davidnicol.com> Message-ID: <1052948814.1087.50.camel@plaza.davidnicol.com> On Mon, 2003-05-12 at 03:19, Andreas J. Koenig wrote: > >>>>> On 12 May 2003 02:54:01 -0500, david nicol said: > > > So what's the easiest way to coerce an array into an OP_LIST? > > Maybe $e{@a,()} Yes! That does it; so does $h{(),@a} which is IMO clearer, since we're used to looking at the left of the variable name for info related to how to interpret it. Thanks! -- David Nicol, independent consultant and contractor have a nice day, really. http://www.funnytimes.com From ggoebel at goebel.ws Thu May 15 06:51:32 2003 From: ggoebel at goebel.ws (C. Garrett Goebel) Date: Mon Aug 2 21:31:07 2004 Subject: [Kc] Newsletter from O'Reilly UG Program, March 11 (fwd) Message-ID: ---------- Forwarded message ---------- Date: Tue, 11 Mar 2003 12:59:15 -0800 (PST) From: Marsee Henon To: ggoebel@goebel.ws Subject: Newsletter from O'Reilly UG Program, March 11 O'Reilly User Group Program Newsletter March 11, 2003 Please share this information with your members... Highlights This Week: ---------------------------------------------------------------- Book News ---------------------------------------------------------------- -Python in a Nutshell -Google Hacks ---------------------------------------------------------------- Upcoming Events ---------------------------------------------------------------- -Darryl Leon and Scott Markel ("Sequence Analysis in a Nutshell") at San Diego Technical Books April 5 -O'Reilly will be exhibiting T FOSE April 8-10, Washington, DC ---------------------------------------------------------------- Conference ---------------------------------------------------------------- -Free Amazon Workshop at the O'Reilly Emerging Technology Conference -O'Reilly Emerging Technology Conference Early Bird Savings Ends This Week --------------------------------------------------------------- Safari ---------------------------------------------------------------- -User Group Members can "Go On Safari" ---------------------------------------------------------------- News ---------------------------------------------------------------- -Happy Google Hacks Week -Welcome to Web Services -Hot Spots Start to Get Real -Web Services Security, Part 1 -Using Hierarchical Data Sets with Aspire and Tomcat -Special Offer For .NET Users -Mac OS X Innovators Contest -FileMaker Pro Design Tips -The Subtleties of Mac OS X ---------------------------------------------------------------- Announcements From Your Peers ---------------------------------------------------------------- -San Gabriel Valley Linux Users Group, March 13 speakers both named Todd ================================================ Book News ================================================ Review books are available--email me for a copy. ***Please include the book order number on your requests. Let me know if you need your books by a certain date. Allow at least four weeks for shipping. Send or email me copies of your newsletters and book reviews. Don't forget, your members get 20% off any O'Reilly book they purchase directly from O'Reilly. Just use code DSUG when ordering. http://www.oreilly.com/ ***Group purchases with better discounts are available*** Please let me know if you are interested. Press releases are available on our press page: http://press.oreilly.com/ ***Python in a Nutshell Order Number: 1886 "Python in a Nutshell," in the tradition of O'Reilly's "In a Nutshell" series, offers Python programmers one place to look when they need help remembering or deciphering the syntax of this open source language and its many modules. This comprehensive reference guide makes it easy to look up all the most frequently needed information--not just about the Python language itself, but also the most frequently used parts of the standard library and the most important third-party extensions. Chapter 4, "The Python Language," is available online: http://www.oreilly.com/catalog/pythonian/chapter/index.html ***Google Hacks Order Number: 4478 The more you know about Google, the better you are at pulling data off the web. This concise book shows power users how to mine the enormous amount of information that Google has access to. You'll learn clever and powerful methods for using the advanced search interface and the new Google API, including how to build and modify scripts that can become custom business applications based on Google. http://www.oreilly.com/catalog/googlehks/ Sample hacks are available here: http://www.oreilly.com/catalog/googlehks/chapter/index.html (This book is hot! We are currently back ordered on it. If you are waiting for a copy, it might take a little longer.) =============================================== Upcoming Events =============================================== ***Darryl Leon and Scott Markel ("Sequence Analysis in a Nutshell") at San Diego Technical Books April 5 Darryl Leon and Scott Markel, authors of "Sequence Analysis in a Nutshell, " will be at San Diego Tech Books on Saturday, April 5 at 12 noon. They'll be signing copies of their book and talking shop about bioinformatics, and SD Tech Books will be giving away a few O'Reilly books and t-shirts to lucky people in attendance. Order Number: 494X http://www.oreilly.com/catalog/seqanalyian/ ***O'Reilly will be exhibiting at FOSE April 8-10. FOSE is the largest information technology exposition serving the government marketplace. http://fose.com/ For a free pass to attend FOSE go to: http://ww2.expocard.com/shows/fos031/att/?source=E3ICMK We also have some paper passes available. If you would like some, please let me know. ================================================ Conference News ================================================ ***Free Amazon Workshop at the O'Reilly Emerging Technology Conference Amazon.com employees and third party developers share case studies and demonstrations during this free full-day workshop that examines the Amazon platform in depth, with a specific focus on Web Services APIs. Space is limited. Register no later than April 7, 2003 by sending an email to Linda Holder at lholder@oreilly.com. Please include the following information: name, title, company, mailing address, phone number, and email address. ***O'Reilly Emerging Technology Conference Early Bird Savings Ends This Week! User Group members who register before March 14, 2003, get a double discount. Use code DSUG when you register, and you'll get 20% off the "Early Bird" price. To register, go to: http://conferences.oreillynet.com/pub/w/22/register.html For more info on the O'Reilly Emerging Technology Conference: http://conferences.oreilly.com/etcon/ ================================================ Safari News ================================================ ***User Group Members can "Go On Safari" If you're not yet familiar with the O'Reilly Network Safari Bookshelf, it's worth a look. With Safari, you can access over 1,000 technical books from the top technical book publishers--O'Reilly (of course), Pearson, and Microsoft Press. There is an extremely cool search capability that allows you to search through all 1,000+ books for the answer you need--or even code samples--in minutes. We have an introductory program just for user group members. To "Go on Safari," any of your members who sign up for our Safari 14-day free trial send comments on their experiences, or tips and tricks for how they used Safari (it only needs to be 2 sentences long, but it may be longer) to safari_talk@oreilly.com. Every week someone will be chosen from the tips or comments submitted to receive fun stuff from O'Reilly (T-shirts, book bags, or other surprises). If a member of your user group is selected, your group receives free gifts, too. Whatever the individual member receives, your UG will get one, too, to give away at your next meeting, or use however you see fit. Recipients--and their comments--will be announced in the User Group Newsletter. **Please use this special UG URL to sign up for the 14-day trial** http://www.oreilly.com/safari/ug For more information on Safari: http://safari.oreilly.com/ ================================================ News From O'Reilly & Beyond ================================================ --------------------- General News --------------------- ***Happy Google Hacks Week Did you know you can get more than 10 results at a time with Google News search? Do you know what Clich-Go-Round and Moogle are? Learn how to make Google perform for you at ResearchBuzz, Tara Calishain's web site. Tara is a coauthor of "Google Hacks." http://www.buzztoolbox.com/google/ Google Hacks Order Number: 4478 http://www.oreilly.com/catalog/googlehks/ ***Welcome to Web Services WebServices.XML.com is a new sister site to XML.com, which will cover topics related to web services and Internet-wide computing. Managing Editor Edd Dumbill provides an introduction to the new site, and guidelines for potential authors. http://webservices.xml.com Check out these other new changes from O'Reilly-- Hacks - Industrial-Strength Tips and Tricks This book series web site includes: A List of Titles, Gotta Hack?, and a Suggestion Box. http://hacks.oreilly.com Developer Weblogs A brand new home for O'Reilly's Bloggers. http://weblogs.oreilly.com --------------------- Wireless --------------------- ***Hot Spots Start to Get Real More and more public locations are cutting the Internet cord and going wireless. Glenn Fleishman provides you with an update of who's hot, and who's not. http://www.oreillynet.com/pub/a/wireless/2003/03/06/hot_spots.html --------------------- Web Services --------------------- ***Web Services Security, Part 1 The first in a four part series discussing major issues related to securing web services and covering the emerging XML-based security standards from the W3C and OASIS. http://webservices.xml.com/pub/a/ws/2003/03/04/security.html --------------------- Java --------------------- ***Using Hierarchical Data Sets with Aspire and Tomcat While much of the database world is relational, a great deal of data is hierarchical--think web pages, XML, and Java classes. Aspire lets you retrieve and manipulate hierarchical data sets. http://www.onjava.com/pub/a/onjava/2003/03/05/hds.html --------------------- .NET --------------------- ***Special Offer For .NET Users Have you heard about the O'Reilly "In a Nutshell" books that integrate with Visual Studio .NET? They're a marriage between the quality reference material you've come to expect from O'Reilly and the convenience of the powerful, built-in help that comes with Visual Studio .NET. We think these help-integrated versions of our "In a Nutshell" books are so beneficial that we want every developer to try the Visual Studio .NET edition of "VB.NET Core Classes in a Nutshell" for free. It is fully functional and there is no time limit for its use. http://www.oreilly.com/vsaddin/ --------------------- Mac ------------------ ***Mac OS X Innovators Contest Have you created a Mac OS X application, plug-in, or some other type of innovative software that you believe is top in its class? Then enter it in the Mac OS X Innovators contest. First prize is an ADC Premier membership (includes WWDC pass, hardware credits, and tons of other benefits) plus a full pass to the O'Reilly Mac OS X Conference plus a one year subscription to the premium online book service, Safari-- these awards total nearly $5,000 for the first place winner. Additionally, the winning entry will be featured in O'Reilly publications, promoted through its various channels, and featured at the upcoming Emerging Technology Conference. Deadline for entires is March 28. Find out how to enter here: http://www.macdevcenter.com/mac/developer/ ***FileMaker Pro Design Tips When designing a FileMaker database for clients, co-workers, or friends, a clean, attractive user interface is important. Alan Graham shares some favorite tips gleaned from years of experience. http://www.macdevcenter.com/pub/a/mac/2003/03/07/filemaker.html ***The Subtleties of Mac OS X Here's a rundown of some favorite, lesser-known Mac OS X features, from developer tools to network services to Unix text-editing tools, by Jason McIntosh, coauthor of "Mac OS X in a Nutshell." http://www.macdevcenter.com/pub/a/mac/2003/03/04/macosxian.html Mac OS X in a Nutshell Order Number: 3706 http://www.oreilly.com/catalog/macosxian/ ================================================ Announcements From Your Peers ================================================ ***Southern California--Two presentations from people named Todd...at the San Gabriel Valley Linux Users Group Todd Cranston-Cuebas will talk about "How to Get Hired in the Tech Industry" and Todd Lyons will talk about email encryption. At the end of the meeting there will be a "Keysigning Party" where people can physically verify that they are who they claim to be--if you want to participate in the keysigning, read the preliminary instructions at: http://osnut.homelinux.net/sgvlug/sgvlug-keysigning.html San Gabriel Valley Linux Users Group March 13, 2003 7:00-9pm Room 101, Guggenheim Building Caltech Campus Pasadena, California For more information and directions see: www.sgvlug.org Until next time-- Marsee From garrett at scriptpro.com Thu May 15 07:50:16 2003 From: garrett at scriptpro.com (Garrett Goebel) Date: Mon Aug 2 21:31:08 2004 Subject: [Kc] Pay2Send and the "Case Against Micropayments" Message-ID: <71BEC0D4E1DED3118F7A009027B12028034C8D2B@EXCH_MISSION> Saw this article referenced in the latest issue of Cryptogram: http://www.dtc.umn.edu/~odlyzko/doc/case.against.micropayments.pdf Thought it might be of interest... -- Garrett Goebel IS Development Specialist ScriptPro Direct: 913.403.5261 5828 Reeds Road Main: 913.384.1008 Mission, KS 66202 Fax: 913.384.2180 www.scriptpro.com garrett at scriptpro dot com -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mail.pm.org/pipermail/kc/attachments/20030515/a8e78a90/attachment.htm From garrett at scriptpro.com Thu May 15 09:00:57 2003 From: garrett at scriptpro.com (Garrett Goebel) Date: Mon Aug 2 21:31:08 2004 Subject: [Kc] ABC -> XML Message-ID: <71BEC0D4E1DED3118F7A009027B12028034C8D2C@EXCH_MISSION> Doug, I'm curious about the problem you mentioned at Tuesday's meeting. Converting musical notation from a given format to XML. Could you post a contrived simple example of how a single bar of music might look in both? -- Garrett Goebel IS Development Specialist ScriptPro Direct: 913.403.5261 5828 Reeds Road Main: 913.384.1008 Mission, KS 66202 Fax: 913.384.2180 www.scriptpro.com garrett@scriptpro.com -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mail.pm.org/pipermail/kc/attachments/20030515/8fb30c2b/attachment.htm From GOTTERSON at cerner.com Wed May 21 16:41:30 2003 From: GOTTERSON at cerner.com (Otterson,Gary) Date: Mon Aug 2 21:31:08 2004 Subject: [Kc] Problem with Sybase.pm Message-ID: Hi, Has anyone out there had any experience with the DBD::Sybase module on Win 2000. I had been running it on an identical system for 4 month one of the disks crashed I had the data backed up but I lost the Perl install and the modules. I thought no big deal but I can't get the DBD-Sybase module to install with the PPM or if I install it manually the scripts fail. I have tried every combination of version of Perl code, DBD module and DBI module and nothing works. Before I go into any more detail I was wondering if anyone out there has any experience with this or if this is even the place to ask a question. I have been searching through google for two days and I can't find anything. Regards, Gary CONFIDENTIALITY NOTICE This message and any included attachments are from Cerner Corporation and are intended only for the addressee. The information contained in this message is confidential and may constitute inside or non-public information under international, federal, or state securities laws. Unauthorized forwarding, printing, copying, distribution, or use of such information is strictly prohibited and may be unlawful. If you are not the addressee, please promptly delete this message and notify the sender of the delivery error by e-mail or you may call Cerner's corporate offices in Kansas City, Missouri, U.S.A at (+1) (816)221-1024. ---------------------------------------- -- -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mail.pm.org/pipermail/kc/attachments/20030521/934edac7/attachment.htm From garrett at scriptpro.com Thu May 22 13:43:26 2003 From: garrett at scriptpro.com (Garrett Goebel) Date: Mon Aug 2 21:31:08 2004 Subject: [Kc] Problem with Sybase.pm Message-ID: <71BEC0D4E1DED3118F7A009027B12028034C8D3F@EXCH_MISSION> Otterson,Gary wrote: > > Has anyone out there had any experience with the DBD::Sybase > module on Win 2000. I had been running it on an identical > system for 4 month one of the disks crashed I had the data > backed up but I lost the Perl install and the modules. I > thought no big deal but I can't get the DBD-Sybase module > to install with the PPM or if I install it manually the > scripts fail. I have tried every combination of version of > Perl code, DBD module and DBI module and nothing works. > Before I go into any more detail I was wondering if anyone > out there has any experience with this or if this is even > the place to ask a question. I have been searching through > google for two days and I can't find anything. I've never actually used DBD::Sybase on a Win32 OS for the purpose of talking to a Sybase database. What I have done, is used DBD::Sybase on Linux with FreeTDS to talk to an MSSQL database... Though DBD::ODBC wound up being a better fit for working with MSSQL servers. Knowing your version of perl, DBD::Sybase, ct-lib (open client libraries), and Sybase or MSSQL Server might be useful... And the actual test failures and errors encountered... There are lots of things that can go wrong. There are environment variables like SYBASE, SYBASE_OCS and TDSVER that need to be set appropriately... The PWD file in the source directory must be modified to contain a valid user, password, and server or the test scripts _will_ fail. A manual build after a very careful reading of all available documentation may be your best bet. -- Garrett Goebel IS Development Specialist ScriptPro Direct: 913.403.5261 5828 Reeds Road Main: 913.384.1008 Mission, KS 66202 Fax: 913.384.2180 www.scriptpro.com garrett at scriptpro dot com -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mail.pm.org/pipermail/kc/attachments/20030522/06f5089f/attachment.htm From garrett at scriptpro.com Tue May 27 16:11:08 2003 From: garrett at scriptpro.com (Garrett Goebel) Date: Mon Aug 2 21:31:08 2004 Subject: [Kc] Static IP's for reasonable rate with acceptable AUP Message-ID: <71BEC0D4E1DED3118F7A009027B12028034C8D45@EXCH_MISSION> I've recently moved from Mission to Prairie Village Kansas. A week ago I initiated the SBC phone and DSL service transfer. They're telling me both our phone number and static ip's will have to change. As long as I'm going through the pain of changing my static ip addresses, I was curious what recommendations you all might have for alternative ISPs? The requirements: o Static IP's o at least cable/dsl speeds o Reasonable rates <= $65/month o Acceptable "acceptable use policy" (AUP) I run my own web, mail, dns, etc. servers... I've heard Earthlink and AOL have started blocking/filtering all mail servers not just the spam farms. I can't deal with an ISP that might capriciously block or filter my ability to run the services of my chosing off my static ip's. I've heard KC.RR doesn't officially offer static ip's... but you can actually get them if you get to the right person. -- Garrett Goebel IS Development Specialist ScriptPro Direct: 913.403.5261 5828 Reeds Road Main: 913.384.1008 Mission, KS 66202 Fax: 913.384.2180 www.scriptpro.com garrett@scriptpro.com -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mail.pm.org/pipermail/kc/attachments/20030527/d4576a84/attachment.htm