Code Comments
Programming Forum and web based access to our favorite programming groups.For whatever my opinion is or isn't worth here, I gave up on Open-Perl-IDE and went back to the AS Komodo IDE. O.P. just seemed to give me so many headaches related to the modules (in my USE statements) before exectuing my first line of code. So despite the fact that I feel Komodo is slow to start, am just getting around using it easier.
Post Follow-up to this message"daniel kaplan" <nospam@nospam.com> wrote in message news:1099029938.288864@nntp.acecape.com... > For whatever my opinion is or isn't worth here, I gave up on Open-Perl-IDE > and went back to the AS Komodo IDE. O.P. just seemed to give me so many > headaches related to the modules (in my USE statements) before exectuing my > first line of code. > > So despite the fact that I feel Komodo is slow to start, am just getting > around using it easier. Oh, I don't know how or who keeps up the FAQ, but at least two of the links to IDEs found via perldoc -q "IDE" were links that were either dead or didn't take me to the IDEs they claimed they would...
Post Follow-up to this messagedaniel kaplan wrote: <snip> > Oh, I don't know how or who keeps up the FAQ, but at least two of the link s > to IDEs found via perldoc -q "IDE" were links that were either dead or > didn't take me to the IDEs they claimed they would... There's a FAQ for that :-) 'perldoc perlfaq` HTH Jim
Post Follow-up to this messagedaniel kaplan wrote: > I gave up on Open-Perl-IDE and went back to the AS Komodo IDE. O.P. > just seemed to give me so many headaches related to the modules (in > my USE statements) before exectuing my first line of code. How does your *editor* cause problems with 'use' statements? (rhetorical) There are almost as many opinions as there are programmers, but I'll toss in a recommendation anyway: UltraEdit. I tend to program in a few different languages at any given time, so I'm not a fan of IDEs that specialize in a particular language. I prefer a good text editor that's customizable and extensible. UltraEdit isn't free, but it's very inexpensive. It takes a little tweaking, but it can be made into a very good environment. (tweak the syntax highlighting, add in ctags, add some custom commands for checking syntax, running, debugging, checking in/out of source control, etc.) -mjc
Post Follow-up to this message"James Willmore" <jwillmore@adelphia.net> wrote in message news:V_SdnarV_9B6rB_cRVn-gA@adelphia.com... > There's a FAQ for that :-) 'perldoc perlfaq` i should have guessed
Post Follow-up to this message"James Willmore" <jwillmore@adelphia.net> wrote in message news:V_SdnarV_9B6rB_cRVn-gA@adelphia.com... > > There's a FAQ for that :-) 'perldoc perlfaq` > first off james thanks for poitning that out to me so nicely, i have gone and sent the email to: supprt -die bot die- A(something)State ENDOFSENTENCEMARKER and some other three letter word but perhaps you can help me out here, i foudn that email address in the HTML version of the faq. but my problem is searching through perldoc. your suggestion of "perldoc perlfaq", gave me so much reading i thought i was reading dicken's "david copperfield" (the unabridged version). and now knowing what to look for i still couldnt find it! once in found it in the HTML i tried the old reverse engineering method of searching for it using perldoc. i used as many variations of perlfaq with additions, comments, changes, with the -q, without, with quotes, without, you see where i am gettng at. and still, nada.... so am i using the perldoc incorrectly? believe me, would love to find everything in just a few keystrokes, not only does it reduce the flame wars but it also gets me over my problem quicker....woudl appreciate some thoughts....thanks
Post Follow-up to this message"Michael Carman" <mjcarman@mchsi.com> wrote in message news:clthdk$9422@onews.rockwellcollins.com... > How does your *editor* cause problems with 'use' statements? (rhetorical) my apologies , from antoher thread, i made a new one so people looking for IDEs would see thoughts and recommendations. in a nutshell, the debugger of OpenPerlIDE complained on just loadin the USE statements. it became too much of a headache. so komodo is slow running, but it also in the end never whinned about anything but my errors. so i switched back to that.
Post Follow-up to this messagedaniel kaplan wrote: > "James Willmore" <jwillmore@adelphia.net> wrote in message > news:V_SdnarV_9B6rB_cRVn-gA@adelphia.com... > <snip> > but perhaps you can help me out here, i foudn that email address in the HT ML > version of the faq. but my problem is searching through perldoc. > > your suggestion of "perldoc perlfaq", gave me so much reading i thought i > was reading dicken's "david copperfield" (the unabridged version). and no w > knowing what to look for i still couldnt find it! from `perldoc perlfaq` (just the section needed from the OP) =begin How to contribute to the perlfaq You may mail corrections, additions, and suggestions to perlfaq-workers@perl.org . This alias should not be used to ask* FAQs. It's for fixing the current FAQ. Send questions to the comp.lang.perl.misc newsgroup. You can view the source tree at http://cvs.perl.org/cvsweb/perlfaq/ (which is outside of the main Perl source tree). The CVS repository notes all changes to the FAQ. =cut I'm not sure what you mean by "i still couldnt find it!". In fact, this section is as near to the top of the FAQ as you can get without being the top of the FAQ :-) <snip> > so am i using the perldoc incorrectly? believe me, would love to find > everything in just a few keystrokes, not only does it reduce the flame war s > but it also gets me over my problem quicker....woudl appreciate some > thoughts....thanks Might I suggest that you read `perldoc perldoc`. You'll find that you can use the '-t' switch in perldoc to produce text output that can be piped through another command or to a text file. So, for example, to find the line that 'mail' resides on in 'perlfaq', you could execute the following: `perldoc -t perlfaq | grep -n mail` and get the following information: 15: You may mail corrections, additions, and suggestions to 22: What will happen if you mail your Perl programming problems to the authors 140: * What mailing lists are there for Perl? 730: * How do I parse a mail header? 734: * How do I check a valid mail address? 738: * How do I return the user's mail address? 740: * How do I send mail? 742: * How do I use MIME to make an attachment to a mail message? 744: * How do I read mail? and see that line is what you might be looking for. This is just one way to extend perldoc to get exactly what you want from whatever documentation you view. HTH Jim
Post Follow-up to this message"James Willmore" <jwillmore@adelphia.net> wrote in message news:o7-dnULix73Y5h_cRVn-3A@adelphia.com... > daniel kaplan wrote: > You may mail corrections, additions, and suggestions to > perlfaq-workers@perl.org . This alias should not be used to ask* > FAQs. yeah was looking at AS's HTML for perl, not the FAQ, changing link now as for the perldoc, still...no grep (is there a dos equiv?) and doing a search on the email address itself produced nothing will forward my email to the correct adfdress thanks thanks for all your jelp
Post Follow-up to this message"Michael Carman" <mjcarman@mchsi.com> kirjoitti viestissä:clthdk$9422@onews.rockwellcollins.com... > There are almost as many opinions as there are programmers, but I'll > toss in a recommendation anyway: UltraEdit. I tend to program in a few > different languages at any given time, so I'm not a fan of IDEs that > specialize in a particular language. I prefer a good text editor that's > customizable and extensible. Ultraedit has a pretty lousy indentation engine IMO, otherwise it is quite a good editor at least for Windows. Emacs is my choice though from different flavours of *NIX to Windows. The configurability and customization is excellent and the amount of available add-on's is huge :-) > UltraEdit isn't free, but it's very inexpensive. It takes a little > tweaking, but it can be made into a very good environment. (tweak the > syntax highlighting, add in ctags, add some custom commands for checking > syntax, running, debugging, checking in/out of source control, etc.) None of this is needed with Emacs (ok, maybe something, but it is rather good editor out-of-the-box) and did I mention that Emacs is free ;-) /jUSSi
Post Follow-up to this message
Show a Printable Version
Email This Page to Someone!
Receive updates to this thread
Powered by vBulletin
Copyright 2000-2006 Jelsoft Enterprises Limited.