Dave Sherohman
|
Registered User
|
Freelance developer trying to avoid being pigeonholed as a web developer, despite specializing in Linux/Perl.
|
|
1d |
comment |
Stemming algorithm that produces real words Ah, true. I was sloppy in my use of "phonetic" and have edited my answer to state that it's based on spelling rules. |
|
1d |
revised |
Stemming algorithm that produces real words Correction that stemming is spelling-based rather than phonetic |
|
Dec 16 |
revised |
How did Perl get its name? Re-edited tags (pe -> perl) |
|
Dec 16 |
comment |
How did Perl get its name? On the contrary, knowing that it isn't an acronym is exactly why people have to be beaten for typing it in all caps. |
|
Dec 16 |
comment |
How can I compare the performance of PHP to Perl? "A common problem I see with any sort of programmer, however, is the root cause of most inefficiency: they simply don't know how to program and neither do they care." +1 just for that sentence. So clear, so succinct, and so damn relevant to most programming-related questions/problems. Too bad it's CW, yeah, and also too bad I can't give a second +1 for the rest of the answer. |
|
Dec 16 |
comment |
How can I compare the performance of PHP to Perl? Yes, most hosting providers will give you the tools needed to run Perl programs, but you often have to assemble them yourself - installing modules, etc. - while PHP applications tend to be solely a matter of unzipping the program. For a technically-unsophisticated user who just wants to have a working blog (or whatever), that's a world of difference, even if it's no big deal to those of us who write code on a daily basis and have previously done dozens of similar installs. |
|
Dec 15 |
answered | What characters are valid in hash keys? |
|
Dec 14 |
comment |
How can I use a variable’s value as a Perl variable name? In general, using symbolic references isn't a good idea for experienced programmers either. |
|
Dec 14 |
answered | How to write an efficient hit counter for websites |
|
Dec 13 |
comment |
How can I match “/*” in a regular expression? It's not just the OP... There are a lot of people using Perl who don't know you can do this. |
|
Dec 10 |
comment |
Why do Perl control statements require braces? Except that this doesn't completely cover the functionality of C-style blockless if, in that postfix conditionals don't provide a way to include an else clause. |
|
Dec 10 |
comment |
Why is using a parameterized query to insert data into a table faster than appending the values to the query string? Ah, fair enough. You're right that I hadn't considered long-running queries; thanks for catching that. On the other hand, though, my experience has been that the vast majority of queries run by the typical application are in the milliseconds range (such as the OP's simple INSERT), which makes their performance characteristics true "in general" (which does have somewhat different semantics than talking about "the general case"). What do you think about a change from "in general" to "for simple queries"? Is that reasonably accurate? Or I'm open to other suggestions for phrasing. |
|
Dec 9 |
comment |
How can I get one Perl script to see variables in another Perl script? @Jeff: Actually, in this case, the 1 isn't needed. Ending with a 1 just ensures that the last statement in the module will return a true value. Assignments return the assigned value, so "our %Sidekick = (...)" is already a true value. (Always use the 1 anyhow, but never forget why it's there.) |
|
Dec 7 |
revised |
What’s the difference between ‘eq’ vs ‘==’ in PHP? Corrected title (PHP -> Perl) and removed php tag |
|
Dec 7 |
answered | Where do I install Perl modules that I wrote? |
|
Dec 6 |
answered | Does GPL code linking with proprietary library depend which is created first? |
|
Dec 6 |
answered | just php no javascript |
|
Dec 6 |
comment |
just php no javascript @ondrowan: Session != cookie. Cookies are used to identify and track sessions, but the cookie is not the session. The cookie gets passed back and forth between the server and browser, but the session normally exists solely on the server. (While you technically can stuff the entire session state into a cookie, it's almost always a very bad idea to do so.) And this can be done without sessions or cookies by stuffing the number of clicks into the URI string or a hidden field on the form, either of which would make the count specific to a single tab. |
|
Dec 6 |
comment |
Why is using a parameterized query to insert data into a table faster than appending the values to the query string? Do have links to any documentation regarding how limited those conditions are? I was, admittedly, just repeating what I've been told since it seemed plausible, but have never attempted to benchmark the breakdown of which piece of running a query takes longer, so I'd be interested in getting the actual facts. (Also, OP said he saw an order of magnitude runtime reduction from the parametrized version. That suggests rather strongly that, in this case, preparing the query was the most expensive part of the operation.) |
|
Dec 5 |
accepted | Why is using a parameterized query to insert data into a table faster than appending the values to the query string? |
|
Dec 5 |
answered | Why is using a parameterized query to insert data into a table faster than appending the values to the query string? |
|
Dec 2 |
revised |
What was your first programming language? Corrected capitalization of BASIC |
|
Dec 2 |
comment |
Why is ‘last’ called ‘last’ in Perl? Can we please skip the language bashing? I don't like syntactically significant whitespace, so I don't use Python - but I also don't go around looking for opportunities to tell everyone that Python sucks. If you don't like sigils (my best guess at what you mean by "looks like line noise"), then that's perfectly fine. Don't use Perl, PHP, Ruby, or any other language which uses them. But do you really have to go around the net making off-topic comments about your dislike for them? |
|
Dec 1 |
comment |
Should I learn Perl as a web developer? Maintainability is much more a function of the programmer than the language. I have Perl code from 2001 that's perfectly readable to me today - and this is a moderately complex web app, not some toy problem. Conversely, there are people out there who write spaghetti code in Python. Perl does have a bad history of poorly-written but well-publicized code, no argument there, but this is the fault of the people who wrote the code, not the fault of Perl. |
|
Dec 1 |
comment |
Should I learn Perl as a web developer? @Mark Canlas: Of course context is important - this is Perl we're talking about! |
|
Nov 30 |
awarded | ● Nice Answer |
|
Nov 30 |
comment |
A clear explanation of difference between a Hash and Hash Reference in Perl. @~quack: I wish that had been an answer rather than a comment so that I could upvote you properly. |
|
Nov 29 |
answered | Why is ‘last’ called ‘last’ in Perl? |
|
Nov 29 |
answered | How to make an email bot that replies to users not reply to auto-responses and get itself into mail loops. |
|
Nov 29 |
comment |
The Greedy Option of Regex is really needed? Indeed. Any time you find yourself using . with a quantifier in a regex, stop and ask yourself whether you really mean "any character". 99% of the time, you don't and you should be using a negated character class instead. Proper use of negated character classes eliminates almost all greediness issues. |
|
Nov 27 |
comment |
Are there reasons to ever use the two-argument form of open(…) in Perl? If you use 3-arg open, there's no need to "handle conflicting modes" because the mode is specified explicitly by the second argument. The content of the filename (third arg) is completely irrelevant to determining the mode - which is kind of the point of 3-arg open. Removing the mode from the filename closes down an entire class of potential security issues. |
|
Nov 27 |
comment |
Are there reasons to ever use the two-argument form of open(…) in Perl? +1 for using a lexical filehandle |
|
Nov 27 |
comment |
Are there reasons to ever use the two-argument form of open(…) in Perl? In the general case, yes, but I tend to read "short admin scripts" to mean "things that will be run on the command line under the uid of the person running it", so the script won't be allowed (by the OS) to do anything the user would not be able to do on his own by more direct means. |
|
Nov 23 |
comment |
How can I filter a large file into two separate files? The OP has presented this as a text-processing problem. He has not indicated that the output should be XML. It is therefore appropriate to approach it as a text-processing task. The fact that the input text happens to be XML is inconsequential. |
|
Nov 21 |
comment |
How can I add characters at the beginning and end of every non-empty line in Perl? Just to be pedantic, in the Perl version, you want if $_ ne '' rather than just if $_. $_ will evaluate as false for certain non-empty lines (specifically, those containing a lone 0). |
|
Nov 17 |
comment |
What does this Perl script achieve? @darch: If you think the question should be improved, don't downvote. Suggest how you think it could be made better and those of us with sufficient rep will edit it accordingly (assuming we agree). |
|
Nov 16 |
answered | A language that doesn’t use ‘C’ ? |
|
Nov 16 |
comment |
A language that doesn’t use ‘C’ ? Not true... This only applies if B is sufficiently functional. I could write a language in C whose only commands are print and goto; this language could not be used to write an independent implementation of itself. |
|
Nov 16 |
comment |
What is the base of the logarithm for the purposes of Algorithms? @Andres Shepherd: To expand on the other responses to your comment, log_a(n)/log_b(n) is a constant which is the same for all values of n. The ratio of (n^2)/(n^3), on the other hand, grows as n grows. Algorithmic complexity analysis is concerned with how resource requirements increase as n increases, so constants don't matter. Values that vary with n do. |
|
Nov 15 |
answered | How can a Perl CGI script communicate with a daemon on the webserver? |
|
Nov 15 |
comment |
How do I define private or internal methods in object oriented Perl? Upvoted, but... Moose is not the be-all, end-all of Perl OO. There are certain situations in which it is not the best choice. (At this time, most of them involve code which must not have a noticeable startup delay. We'll see what remains better without antlers once Stevan & Co. have dealt with the slow startup issues.) |
|
Nov 15 |
answered | Do you use VIM/Emacs/Terminals to develop C/C++? What kind of projects is this practical for? |
|
Nov 15 |
comment |
Do you use VIM/Emacs/Terminals to develop C/C++? What kind of projects is this practical for? Aye, that's one of the standard jokes among the vi-faithful: "EMACS would be a lovely operating system, if only it had a decent editor." |
|
Nov 14 |
awarded | ● Nice Question |
|
Nov 14 |
accepted | Post to twitter using oauth with from |
|
Nov 14 |
answered | How do I use Ajax with jQuery in Perl? |
|
Nov 13 |
comment |
How should web sites deal with localization settings? (from “What are common UI misconceptions and annoyances?”) Penalizing people who do things correctly is never the right answer as it serves to discourage them from doing them correctly in the future. As an expat American living in Sweden, what is my incentive to properly set my language preference to en/us if sites are just going to say "your IP address is in Sweden, so we'll ignore your preference setting and give you Swedish anyhow"? |
|
Nov 11 |
comment |
How does a programmer work across multiple computers? @Quibblesome: Speaking of clarifying trade-offs, DVCS doesn't require the existence of a "master" version, but it does allow for one and having a single designated server (like, say, github) which maintains a single version of the "top" source is a common model. I also get the impression that the OP was asking about a project he's working on solo, which goes a long way towards mitigating the constant-branch-and-merge chaos you described even without designating a master version. |
|
Nov 11 |
comment |
MySQL users: When localhost changed to %, I cannot login Correct on both counts. |
|
Nov 10 |
answered | Why does my Perl script to decompress files slower when I use threads? |
