User Dave Sherohman - Stack Overflow most recent 30 from stackoverflow.com 2009-12-04T10:41:23Z http://stackoverflow.com/feeds/user/18914 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1814447/why-is-last-called-last-in-perl/1815257#1815257 13 Answer by Dave Sherohman for Why is 'last' called 'last' in Perl? Dave Sherohman 2009-11-29T11:12:41Z 2009-11-29T11:12:41Z <p>I expect that this is because Perl was created by a linguist, not a computer scientist. In normal English usage, the concept of declaring that you have completed your final pass through a loop is more strongly connected to the word "last" ("this is the <em>last</em> pass") than to the word "break" ("<em>break</em> the loop"? "<em>break</em> out of the loop"? - it's not even clear how "break" is intended to relate to exiting the loop).</p> http://stackoverflow.com/questions/1814528/how-to-make-an-email-bot-that-replies-to-users-not-reply-to-auto-responses-and-ge/1815248#1815248 2 Answer by Dave Sherohman for How to make an email bot that replies to users not reply to auto-responses and get itself into mail loops. Dave Sherohman 2009-11-29T11:06:54Z 2009-11-29T11:06:54Z <p>That <em>really</em> sounds like something that's probably available as a module from <a href="http://search.cpan.org/" rel="nofollow">CPAN</a>, but I didn't find anything clearly relevant in five minutes of searching. <a href="http://search.cpan.org/perldoc?Mail%3A%3ALite%3A%3AMbox" rel="nofollow">Mail::Lite::Mbox::Processor</a> looks like it might do what you want:</p> <blockquote> <p>Mail::Lite::Message::Matcher is a framework for automated mail processing. For example you have a mail server and you have a need to process some types of incoming mail messages automatically. For example, you can extract automated notifications, invoices, alerts etc. from your mail flow and perform some tasks based on content of those messages.</p> </blockquote> <p>but its docs are sparse enough that it isn't immediately obvious whether it provides those example functions itself or if you have to provide the code to drive them.</p> <p>In any case, though, if you haven't already checked CPAN, that's where I would start if I wanted to do something like this.</p> http://stackoverflow.com/questions/1741368/a-language-that-doesnt-use-c/1742257#1742257 1 Answer by Dave Sherohman for A language that doesn't use 'C' ? Dave Sherohman 2009-11-16T13:39:05Z 2009-11-16T13:39:05Z <p>There have been multiple projects started to implement Perl 6, distinguished primarily by their choice of implementation language. Initially, the primary contender (whose name escapes me) was written in Perl 5. The major current focus for Perl 6 is on Rakudo, which is being implemented on top of Parrot using, as I understand it, a language called PIR. (I assume Parrot is written in C and don't know whether Rakudo is using C along with PIR or not; anyone involved in Perl 6 development is invited to edit my answer and fill in these details.)</p> <p>In principle, any Turing-complete language is capable of being used to write its own compiler. Although this hasn't been done in all cases, it seems to have been done for most, if only "because we can".</p> http://stackoverflow.com/questions/1733053/how-can-a-perl-cgi-script-communicate-with-a-daemon-on-the-webserver/1737310#1737310 1 Answer by Dave Sherohman for How can a Perl CGI script communicate with a daemon on the webserver? Dave Sherohman 2009-11-15T11:35:58Z 2009-11-15T11:35:58Z <p>In the past, when I've needed to do something like this, I've generally handled the communication in one of two ways:</p> <p>1) If the response is needed in real-time to send back to the user immediately (as appears to be the case here), then using sockets to talk to the daemon is the way to go. There are other options with shared memory, pipes, and whatnot, but using sockets gives you an easy scalability path for if/when you need to break the front-end web server and back-end daemon out onto separate machines.</p> <p>2) If the response isn't time-critical, I've tended to shove the incoming commands onto a queue stored in a database table and then had the daemon periodically poll the queue for new tasks. This tends to be a bit easier to implement and scales up even better then the socket-based option, provided you can deal with the limitation of all communication going through the database.</p> http://stackoverflow.com/questions/1736601/do-you-use-vim-emacs-terminals-to-develop-c-c-what-kind-of-projects-is-this-pr/1737266#1737266 0 Answer by Dave Sherohman for Do you use VIM/Emacs/Terminals to develop C/C++? What kind of projects is this practical for? Dave Sherohman 2009-11-15T11:15:51Z 2009-11-15T11:15:51Z <p>My standard IDE is a flock of xterms running some mix of vim editors, man page documentation, debuggers, log tails, and command lines to execute things, plus an instance of Firefox for pulling up additional docs or (where applicable) testing web-based code. This is what I use for all projects these days, regardless of size, whether personal or professional.</p> <p>Pretty much the only time I've seen real benefit to using an IDE has been when I've been working on platform-native GUI apps, where they make it so much easier to build forms and wire up their controls. But I haven't done that sort of work in over a decade - the last one I did was in Deplhi, back when Borland still owned it; I think version 4 had just come out, although it might have been 3.</p> http://stackoverflow.com/questions/1733815/how-do-i-use-ajax-with-jquery-in-perl/1734029#1734029 2 Answer by Dave Sherohman for How do I use Ajax with jQuery in Perl? Dave Sherohman 2009-11-14T11:51:43Z 2009-11-14T11:51:43Z <p>Although it's a bit under-documented (at least for someone who isn't already intimately familiar with jQuery itself), have you taken a look at <a href="http://search.cpan.org/perldoc?JQuery" rel="nofollow">JQuery</a> on CPAN?</p> http://stackoverflow.com/questions/1701479/why-does-my-perl-script-to-decompress-files-slower-when-i-use-threads/1707580#1707580 0 Answer by Dave Sherohman for Why does my Perl script to decompress files slower when I use threads? Dave Sherohman 2009-11-10T12:23:47Z 2009-11-10T12:23:47Z <p>I'm not prepared to assume that you're I/O bound without seeing the output of <code>top</code> while this is running. Like depesz, I tend to assume that compression/decompression operations (which are math-heavy) are more likely to be CPU-bound.</p> <p>When you're dealing with a CPU-bound operation, using more threads/processes than you have processors will almost <em>never</em>[1] improve matters - if the CPU utilization is already at 100%, more threads/processes won't magically increase its capacity - and will most likely make things worse by adding in more context-switching overhead.</p> <p>[1] I've heard it suggested that heavy compilations, such as building a new kernel, benefit from telling <code>make</code> to use twice as many processes as the machine has processors and my personal experience has been that this seems to be accurate. The explanation I've heard for it is that this allows each CPU to be kept busy compiling in one process while the other process is waiting for data to be fetched from main memory. If you view compiling as a CPU-bound process, this is an exception to the normal rule. If you view it as an I/O bound case (where the I/O is between the CPU and main memory rather than disk/network/user I/O), it is not.</p> http://stackoverflow.com/questions/1707412/mysql-users-when-localhost-changed-to-i-cannot-login/1707470#1707470 3 Answer by Dave Sherohman for MySQL users: When localhost changed to %, I cannot login Dave Sherohman 2009-11-10T12:03:02Z 2009-11-10T12:03:02Z <p>In MySQL, <code>user@localhost</code> and <code>user@%</code> are two completely different and unrelated users. You need to grant access to your data (and, if applicable, set a password) for <code>user@%</code> <em>in addition to</em> granting access for <code>user@localhost</code>. One does not also provide the other.</p> http://stackoverflow.com/questions/1675409/what-perl-restful-framework-do-you-recommend/1679645#1679645 0 Answer by Dave Sherohman for What Perl RESTful framework do you recommend? Dave Sherohman 2009-11-05T10:28:55Z 2009-11-05T10:28:55Z <p>Another to consider would be Mojo/<a href="http://search.cpan.org/perldoc?Mojolicious" rel="nofollow">Mojolicious</a>, which looks very promising, but, at the moment, is woefully under-documented. That should be getting fixed within the next month or two, though, and there are several people (other than the author) already using it successfully even without full docs.</p> http://stackoverflow.com/questions/1656748/how-can-i-fetch-a-single-count-value-from-a-database-with-dbi/1657058#1657058 5 Answer by Dave Sherohman for How can I fetch a single count value from a database with DBI? Dave Sherohman 2009-11-01T12:32:44Z 2009-11-01T12:32:44Z <p>Easy enough to do in one line with no extra variables:</p> <pre><code>$count = $dbh-&gt;selectrow_array('SELECT count(*) FROM table WHERE...', undef, @params); </code></pre> http://stackoverflow.com/questions/1649181/perl-when-called-in-a-method-can-refself-ever-return-anything-other-than-p/1649551#1649551 4 Answer by Dave Sherohman for Perl: When called in a method, can ref($self) ever return anything other than __PACKAGE__ or undef? Dave Sherohman 2009-10-30T12:32:36Z 2009-10-30T12:32:36Z <blockquote> <p>Is it safe to assume that if ref() returns not undef that it will return the current package?</p> </blockquote> <p>No.</p> <pre><code>my $bar = Bar-&gt;new; Package::Foo::foo($bar); </code></pre> <p>will lead to <code>foo</code> putting <code>$bar</code> into <code>$self</code> and <code>ref $self</code> will then return <code>Bar</code>.</p> <p>And, as already noted in the earlier answers, checking for the literal package name rather than testing <code>isa</code> breaks inheritance anyhow.</p> http://stackoverflow.com/questions/1636221/why-doesnt-my-cgi-scripts-die-message-display-in-the-browser/1636936#1636936 0 Answer by Dave Sherohman for Why doesn't my CGI script's "die" message display in the browser? Dave Sherohman 2009-10-28T12:26:29Z 2009-10-28T12:26:29Z <pre><code>copy("s:\\nl\\cover\\config.jsp", "s:\\temp\\config.jsp") or die "File cannot be copied."; print "this is not displayed"; </code></pre> <p>Only one of these messages should ever be displayed and it's unclear which you're asking about.</p> <p>The question <em>says</em> you're wondering why the <code>die</code> message isn't being displayed; to me, that implies that you're not seeing the message "File cannot be copied." and the most obvious reason for this is that the copy operation is succeeding, but see also the previous responses about looking in the error log if you're running this under CGI.</p> <p>The text of the messages, though, suggests that you actually mean you're not seeing the message "this is not displayed". (Why else would you mention that it isn't displayed?) In that case, the reason you're not seeing it is because <code>die</code> causes the program to exit. After the <code>copy</code> fails and the <code>die</code> executes, your program is dead. Terminated. It has shuffled off this mortal CPU and joined the stack eternal. It wouldn't <code>print "this is not displayed"</code> if you put four million volts through it. It is an ex-process.</p> http://stackoverflow.com/questions/1629942/validation-to-allow-space-for-phone-numbers/1630027#1630027 1 Answer by Dave Sherohman for Validation to allow space for phone numbers Dave Sherohman 2009-10-27T10:52:48Z 2009-10-27T10:52:48Z <p>Really, the best way to deal with this is to remove all non-digit characters, then do whatever additional validation you may require, such as the number of digits or whether the number begins with a valid area code/country code, on what's left. That way it doesn't matter whether the number is entered as (assuming US numbers here) 987-654-3210, (987) 654-3210, 987 654 3210, 9876543210, 9 8 7-6.54321 0, or whatever else.</p> <p>Concentrate on validating what's meaningful in the input (the digits) and not incidental details which really don't matter (how the digits are grouped or formatted).</p> http://stackoverflow.com/questions/1623057/how-do-i-write-a-perl-script-to-filter-out-digital-pictures-that-have-been-doctor/1624625#1624625 0 Answer by Dave Sherohman for How do I write a Perl script to filter out digital pictures that have been doctored? Dave Sherohman 2009-10-26T12:56:52Z 2009-10-26T12:56:52Z <p>There is existing software out there which uses various techniques (compression artifacting, comparison to signature profiles in a database of cameras, etc.) to analyze the actual image data for evidence of alteration. If you have access to such software and the software available to you provides an API for external access to these analysis functions, then there's a decent chance that a Perl module exists which will interface with that API and, if no such module exists, it could probably be created rather quickly.</p> <p>In theory, it would also be possible to implement the image analysis code directly in native Perl, but I'm not aware of anyone having done so and I expect that you'd be better off writing something that low-level and processor-intensive in a fully-compiled language (e.g., C/C++) rather than in Perl.</p> http://stackoverflow.com/questions/1613087/does-storing-a-lot-of-images-in-a-single-directory-slow-down-image-retrieval/1613330#1613330 2 Answer by Dave Sherohman for Does storing a lot of images in a single directory slow down image retrieval? Dave Sherohman 2009-10-23T13:13:18Z 2009-10-23T13:13:18Z <p>The number of files in a directory should have no effect at all on the time required to read a file's data - but it can massively affect the amount of time needed to find the file before you can start to read it.</p> <p>The exact breakpoints where the major issues start up will vary from filesystem type to filesystem type, but, in general, if you're talking about a few hundred files, you don't much need to worry about it. If you're talking about a few thousand, it's worth thinking about and maybe doing a little benchmarking to see how your filesystem and hardware handle it. If you're talking about tens of thousands of files, then you really need to start breaking things up. (I once had a Linux/e2fs print server where CUPS wasn't deleting its job control files after it finished printing and it got up around 100,000 files in one directory. Just getting a directory listing took over half an hour before it even started to display any filenames.)</p> <p>Separating them by user name may not be the best choice, though, since you'll likely have a lot of users uploading very few images and perhaps a couple who upload hundreds or thousands of images, potentially creating access time issues in those users' storage directories. The bigger problem in that scenario is that you'd likely end up (assuming a successful site) with thousands or tens of thousands of users and a large number of subdirectories is just as bad as a large number of files for slowing down access to your data.</p> <p>Since you're going to have a timestamp on them, what I would probably do is put them into subdirectories based on the <em>last</em> three digits of the timestamp. That will distribute the files relatively evenly across 1000 subdirectories and should keep the number of files in each directory reasonably small. (Using the first three digits would cause one directory to be filled before moving to the next instead of distributing them evenly.) If you're still ending up with too many files in each subdirectory (which would likely mean you're dealing with several million uploaded images), you could add a second level for the previous three digits, so upload-1234567890.jpg would end up at /567/890/upload-1234567890.jpg.</p> http://stackoverflow.com/questions/1604155/how-do-i-remove-email-headers/1606129#1606129 0 Answer by Dave Sherohman for How do I remove email headers? Dave Sherohman 2009-10-22T09:47:08Z 2009-10-22T09:47:08Z <p>Email headers consist of all text up to the first completely blank line. So, if you actually do want to throw them away (rather than using a good module to parse them as the earlier examples suggested), just throw away everything up to and including the first blank line.</p> <p>If you're looking at an mbox-format mailbox file containing multiple messages, you can identify the start of the next message's headers by looking for a line which starts with the five characters "From " (note the trailing space - this is what distinguishes it from a "From:" header).</p> http://stackoverflow.com/questions/1592329/how-can-i-speed-up-my-perl-regex-matching/1593896#1593896 0 Answer by Dave Sherohman for How can I speed up my Perl regex matching? Dave Sherohman 2009-10-20T11:17:41Z 2009-10-20T11:17:41Z <p>Backtracking is one of the surest ways to kill regex performance, but, unfortunately, this does not appear to be a case where you're able to completely eliminate the <code>.</code> wildcard in favor of character classes, unless the text you're capturing is prohibited from containing uppercase characters. (If that prohibition does exist, you could replace your <code>.*?</code> with, say, <code>[a-z ]*</code> instead.) You can still reduce the possibility for backtracking by using <code>{}</code> to set a minimum/maximum number of characters to match, such as <code>.{0,10}?</code> if the match can't be longer than 10 characters.</p> http://stackoverflow.com/questions/281803/is-there-an-object-centric-perl-orm 10 Is there an object-centric Perl ORM? Dave Sherohman 2008-11-11T18:45:16Z 2009-10-19T19:34:29Z <p><a href="http://stackoverflow.com/questions/281440/how-to-i-do-basic-orm-in-perl">This recent question on doing ORM in Perl</a> proved somewhat timely, as I was just looking at Perl ORMs yesterday. Unfortunately, I was not particularly satisfied with what I found:</p> <p>They all appear (at least in their documentation) to focus primarily on the relational side of the object-relational divide. "Use our ORM to provide an OO(ish) interface to your relational database."</p> <p>But I'm not a database programmer who wants to invoke methods instead of writing SQL. I'm an OO programmer with a need to persist objects.</p> <p>Are there any good Perl ORMs that openly support objects that have more complex behaviours than just CRUD operations? Things like inheritance and properties which aren't just a wrapper around a database field?</p> <p>I'm sure that this is possible with Class::DBI, DBIx::Class, Rose::DB::Object, and all the smaller players, but, in every case but one, the docs that I've been able to find don't even mention these topics, never mind providing an example of how to do them within the context of that framework. (The one exception is <a href="http://search.cpan.org/~akimov/ORM-0.85/lib/ORM.pod" rel="nofollow">PerlORM</a>, which, aside from appearing to be incomplete and unmaintained, claims to be "only" 20-30% slower than Class::DBI (the slowest of the Big Three).)</p> <p><strong>Update (July 13, 2009):</strong> To clarify in response to Chas. Owens' response, my complaint isn't with the involvement of an RDBMS, but rather that the major ORMs (in most languages, really, not just in Perl) seem to focus on mapping the relational model into the object space. I want to map the object model into the relational space. Which is, yes, a form of object persistence, but it is also a form of object-relational mapping.</p> <p>It is also substantially more difficult than the normal way of doing things, as the relational model is more limited than the object model, at least for the kinds of things I normally want to do, but it is possible. I know this because a coworker and I built such an ORM many years ago (long before I first encountered the term "ORM" - we called it an "object-relational persistence layer") in Borland Delphi and I have built my own half-assed implementation of that style of "object-to-relational mapper" (as opposed to the normal "object-from-relational" version) in Perl, but I don't really relish the thought of pushing it to become fully-functional and solid enough to use in production applications. Thus my interest in finding out whether someone else has already done it, so that I can use their very-complex wheel rather than rebuilding it myself.</p> http://stackoverflow.com/questions/1393618/is-there-a-way-to-know-if-someone-has-bookmarked-your-website/1571216#1571216 0 Answer by Dave Sherohman for Is there a way to know if someone has bookmarked your website? Dave Sherohman 2009-10-15T09:21:06Z 2009-10-15T09:21:06Z <p>This is not useful information. Bookmarking is meaningless in isolation. I currently have hundreds of bookmarks, most of them for articles that I tagged as "looks interesting, but I don't have time/energy to read and understand it right now, so I should come back later"... and then never got around to going back to. On the other hand, I have about a dozen bookmarks that I visit daily. Even if you knew I had your site bookmarked, you wouldn't know which group you're in (but it's overwhelmingly likely that you'd be in the "never used" bookmark pile).</p> <p>The only way to determine which category you're in is to count actual visits to your site. This also has the added advantage of telling you about people who subscribe to RSS feeds, which are at least as "sticky" as bookmarks, regardless of whether or not they bookmark in addition to subscribing.</p> <p>It sounds like the actual information you want may be how many "loyal" visitors you have - people who keep coming back. Counting bookmarks won't tell you that. Counting visits, along with some simple cookie and/or IP address based code to identify repeat visitors, will. If you don't want to write the code to manage that visit tracking yourself (and there probably isn't any reason why you should), you can get it free and easy from Google Analytics.</p> http://stackoverflow.com/questions/716275/software-vs-network-engineer-salary-difficulty-learning-happiness/1559367#1559367 1 Answer by Dave Sherohman for Software vs Network Engineer (Salary, Difficulty, Learning, Happiness) Dave Sherohman 2009-10-13T10:24:09Z 2009-10-13T10:24:09Z <p>Having worked on both sides of that line, the first thing that comes to my mind is that I've never once been asked to be on-call as a programmer, but I've never known an admin who wasn't on call at least one week in six. A good friend was one of the three top net admins for a major national (US) grocery chain and frequently got paged with things like "Yes, we know the area around our Florida data center has just been evacuated because of the approaching hurricane. You <em>will</em> connect remotely from halfway across the country and keep those servers on-line while the storm goes by, even if the data center is hit directly." I still wonder how they expected him to deal with any hardware failures with no hands on the scene; fortunately, there weren't any that time.</p> <p>My general impression is that programmers tend to get paid better, though I can't say I really looked at that aspect.</p> <p>One of the things I loved most about the admin side is that, on a typical day, I'd be doing ten different and largely unrelated things and I'd get to work in the morning not knowing what half of them would be, whereas, on the programming side, it would be the same project from the time I walked in the door until the time I went home, for weeks or months at a time. (My main reason for going to admin was boredom with the lack of variety in my programming work.)</p> <p>As you may have gathered from the last point, my experience has been that programming involves deep, but narrowly-focused knowledge of a specific topic and set of technologies, while admin tends to turn into shallow knowledge of just about <em>everything</em>.</p> http://stackoverflow.com/questions/1559228/regular-expression-text-between-colons/1559274#1559274 1 Answer by Dave Sherohman for Regular expression - Text between colons Dave Sherohman 2009-10-13T10:05:37Z 2009-10-13T10:05:37Z <p>Think about what you mean and translate that into the regex language. As Gumbo has pointed out, you should be using <code>[^:]</code> instead of <code>.</code>; the reason for this is that you are looking for groups of characters that aren't colons (<code>[^:]</code>), not for groups of absolutely any character at all[1] (<code>.</code>) which happen to have colons between them.</p> <p>Any time you find yourself using <code>.</code> with a quantifier in a regex, stop and ask yourself whether you really mean "any character" or whether you could express your meaning more clearly (and get more accurate results) using a character class instead.</p> <p>(Non-greedy quantifiers (<code>.*?</code>) can also do the job of getting correct matches in cases like this, but character classes are still a clearer expression of intent for human readers and improve efficiency by avoiding excessive backtracking for machine readers.)</p> <p>[1] Well, absolutely any character at all, with the possible exception of newlines depending on the regex implementation that you're using.</p> http://stackoverflow.com/questions/1553599/how-to-verify-regexp-patterns/1553639#1553639 0 Answer by Dave Sherohman for How to verify regexp patterns ? Dave Sherohman 2009-10-12T09:47:37Z 2009-10-12T09:47:37Z <p>Set up an automated test using your tools of choice (because regex implementations vary from language to language and library to library) which applies the regex to a variety of both matching and non-matching inputs to verify that you get the correct results.</p> <p>While RegexBuddy and the like may be helpful for initially creating the regex (or may not; I've never used them), you will still need to maintain it, just like any other code. When that time comes, it's vastly preferable to have a test script that will run through all your old test inputs (plus the new ones which created the need for the change) in a matter of seconds rather than having to sit on a website for tens of minutes, if not hours, trying to remember all your test inputs and manually re-run them to make sure you didn't break anything.</p> http://stackoverflow.com/questions/1536791/what-percentage-of-followed-hyperlinks-might-have-their-onclick-javascript-igno/1536946#1536946 5 Answer by Dave Sherohman for What percentage of followed hyperlinks might have their "onclick" JavaScript ignored? Dave Sherohman 2009-10-08T10:28:45Z 2009-10-08T10:28:45Z <p>Aside from those of us who habitually middle-click/ctrl-click to open links in new tabs, there's another major cause of onClick failure: NoScript and similar plugins which allow javascript to run only when it comes from whitelisted sites. If your domain isn't on my whitelist, then your onClick won't run, no matter how I trigger the link.</p> <p>If you want reliable stats on which pages people are visiting, there's only one bulletproof source for that: The web server logs.</p> <p>The logs are probably also your best bet for tracking how people move throughout the site, but they're not entirely reliable, as some privacy-paranoid users will falsify their referer headers or just not send them at all, but I expect that to be far less common than disabling javascript.</p> http://stackoverflow.com/questions/1526687/how-to-deal-with-changing-feature-and-product-names-in-source-code/1526810#1526810 3 Answer by Dave Sherohman for How to deal with changing feature and product names in source code? Dave Sherohman 2009-10-06T16:55:18Z 2009-10-06T16:55:18Z <p>The solution to the mess is to not create it in the first place. Once a code path is named, there's rarely a good reason to change it and <em>never</em> a good reason to use a new name alongside the old one. When "Exploder" becomes "Boom", you have two choices: Either keep using Exploder exclusively, and never mention Boom anywhere, or change all instances of Exploder to Boom and then continue on using Boom exclusively and never mention Exploder again.</p> <p>If you're using both Exploder and Boom in the same code base, you're doing it wrong.</p> <p>Also, I know you clarified that you're not talking about the user-visible names, but, if you start out working with your own internal names which are relevant to what the code does and completely independent of what marketing wants to call the product/feature, then this is much less likely to become an issue. If you're already referring to Exploder internally as TNT, then what difference does it make if Exploder gets changed to Boom?</p> http://stackoverflow.com/questions/1526641/5-separate-database-or-5-tables-in-1-database/1526757#1526757 1 Answer by Dave Sherohman for 5 separate database or 5 tables in 1 database? Dave Sherohman 2009-10-06T16:45:06Z 2009-10-06T16:45:06Z <p>Generally speaking, "one database per application" tends to be a good rule of thumb.</p> <p>If you're building one site that has many sections for talking about different games (or different types of games), then that's a single application, so one database is likely the way to go. I'm not positive, but I think this is probably the situation you're asking about.</p> <p>If, on the other hand, your "one site" is a battle.net-type matching service for a collection of five distinct games, then the site itself is one application and each of the five games is a separate application, so you'd probably want six databases since you have a total of six largely-independent applications. Again, though, my impression is that this is not the situation you're asking about.</p> http://stackoverflow.com/questions/1509572/twitter-feedback-widget-for-web-pages/1509655#1509655 1 Answer by Dave Sherohman for Twitter feedback widget for web pages? Dave Sherohman 2009-10-02T13:55:23Z 2009-10-02T13:55:23Z <p>Possible and even easy. Twitter allows you to preload a status message by including its text as a "status" parameter in the URL: <a href="http://twitter.com/?status=Click%20here%20to%20tweet%20this." rel="nofollow">Click here to tweet this.</a></p> http://stackoverflow.com/questions/1490971/how-can-i-ask-the-user-to-re-enter-input-when-they-enter-invalid-input-in-perl/1491008#1491008 8 Answer by Dave Sherohman for How can I ask the user to re-enter input when they enter invalid input, in Perl? Dave Sherohman 2009-09-29T07:04:16Z 2009-09-29T07:09:58Z <p>To call a subroutine recursively in Perl, you just call the sub from itself, the same as in any other language:</p> <pre><code>sub factorial { my $num = shift; return 1 if $num &lt; 2; return $num * factorial($num - 1); } </code></pre> <p><strong>However, you don't really want to use recursion for a "repeat until condition changes" scenario.<br /> That's what <code>while</code> loops are for</strong>:</p> <pre><code>print "Enter something: "; my $valid; while (!$valid) { my $data = &lt;STDIN&gt;; $valid = validate($data); print "Bzzt! Invalid - try again!\n" unless $valid; } </code></pre> http://stackoverflow.com/questions/1482153/post-to-twitter-using-oauth-with-from/1482349#1482349 1 Answer by Dave Sherohman for Post to twitter using oauth with from Dave Sherohman 2009-09-26T22:44:25Z 2009-09-26T22:44:25Z <p>I've done OAuth, but not from PHP, so I can't tell you the exact code to use, but I can tell you that, at this point</p> <blockquote> <p>I can then post to twitter using curl but I am using the users username and password to post it which doesnt seem correct.</p> </blockquote> <p>you are indeed doing it wrong. The reason it's not appearing on Twitter as being from your application is because you're submitting the status update using password-based authentication, which does not provide any (verifiable) information regarding the application which is sending the update.</p> <p>When the user grants access via OAuth, Twitter will return them to your designated callback URL and send you a verifier token as part of that redirect. Once you have the verifier token, you send it back to Twitter along with your application's consumer key (thus proving that the user did in fact arrive back at your application) and Twitter will send you back an access token. The access token can then be used (along with your consumer key) to post status updates to the user's account (assuming, of course, that your application is registered for read/write access rather than read-only).</p> <p>If you are using OAuth authorization, you <strong>never</strong> need the user's password. For anything. That's kind of the whole point.</p> http://stackoverflow.com/questions/1479565/how-can-i-read-multiple-lines-in-perl/1480933#1480933 1 Answer by Dave Sherohman for How can I read multiple lines in Perl? Dave Sherohman 2009-09-26T10:20:08Z 2009-09-26T10:20:08Z <p>With the OP's clarification that he's trying to get quoted strings out of the file, and assuming that each string's closing quote will be at the end of a line, my approach would be:</p> <pre><code>#!/usr/bin/perl use strict; use warnings; local $/ = qq("\n); # Extra " to fix SO syntax highlighting while (my $quot_text = &lt;DATA&gt;) { print "Next text:\n$quot_text\n" } __DATA__ "Hi how are you?" "Hello im fine, thank you!" </code></pre> <p>Which returns:</p> <pre><code>Next text: "Hi how are you?" Next text: "Hello im fine, thank you!" </code></pre> http://stackoverflow.com/questions/1480066/in-perl-how-can-i-concisely-check-if-a-variable-is-defined-and-contains-a-non-z/1480905#1480905 -1 Answer by Dave Sherohman for In Perl, how can I concisely check if a $variable is defined and contains a non zero length string? Dave Sherohman 2009-09-26T10:04:00Z 2009-09-26T10:04:00Z <p>How about</p> <pre><code>if (length ($name || '')) { # do something with $name } </code></pre> <p>This isn't quite equivalent to your original version, as it will also return false if <code>$name</code> is the numeric value 0 or the string <code>'0'</code>, but will behave the same in all other cases.</p> <p>In perl 5.10 (or later), the appropriate approach would be to use the defined-or operator instead:</p> <pre><code>use feature ':5.10'; if (length ($name // '')) { # do something with $name } </code></pre> <p>This will decide what to get the length of based on whether <code>$name</code> is defined, rather than whether it's true, so 0/<code>'0'</code> will handle those cases correctly, but it requires a more recent version of perl than many people have available.</p> http://stackoverflow.com/questions/1814447/why-is-last-called-last-in-perl/1815257#1815257 Comment by Dave Sherohman on Why is 'last' called 'last' in Perl? Dave Sherohman 2009-12-02T11:00:02Z 2009-12-02T11:00:02Z 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 &quot;looks like line noise&quot;), 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? http://stackoverflow.com/questions/1825479/should-i-learn-perl-as-a-web-developer/1825567#1825567 Comment by Dave Sherohman on Should I learn Perl as a web developer? Dave Sherohman 2009-12-01T12:19:29Z 2009-12-01T12:19:29Z 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 <i>does</i> 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. http://stackoverflow.com/questions/1825479/should-i-learn-perl-as-a-web-developer Comment by Dave Sherohman on Should I learn Perl as a web developer? Dave Sherohman 2009-12-01T12:13:25Z 2009-12-01T12:13:25Z @Mark Canlas: Of course context is important - this is Perl we're talking about! http://stackoverflow.com/questions/1817394/a-clear-explanation-of-difference-between-a-hash-and-hash-reference-in-perl Comment by Dave Sherohman on A clear explanation of difference between a Hash and Hash Reference in Perl. Dave Sherohman 2009-11-30T13:47:54Z 2009-11-30T13:47:54Z @~quack: I wish that had been an answer rather than a comment so that I could upvote you properly. http://stackoverflow.com/questions/1812092/the-greedy-option-of-regex-is-really-needed/1812558#1812558 Comment by Dave Sherohman on The Greedy Option of Regex is really needed? Dave Sherohman 2009-11-29T10:52:06Z 2009-11-29T10:52:06Z Indeed. Any time you find yourself using <code>.</code> with a quantifier in a regex, stop and ask yourself whether you <i>really</i> mean &quot;any character&quot;. 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. http://stackoverflow.com/questions/1806333/are-there-reasons-to-ever-use-the-two-argument-form-of-open-in-perl/1806349#1806349 Comment by Dave Sherohman on Are there reasons to ever use the two-argument form of open(...) in Perl? Dave Sherohman 2009-11-27T09:49:39Z 2009-11-27T09:49:39Z If you use 3-arg open, there's no need to &quot;handle conflicting modes&quot; 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. http://stackoverflow.com/questions/1806333/are-there-reasons-to-ever-use-the-two-argument-form-of-open-in-perl/1807074#1807074 Comment by Dave Sherohman on Are there reasons to ever use the two-argument form of open(...) in Perl? Dave Sherohman 2009-11-27T09:45:15Z 2009-11-27T09:45:15Z +1 for using a lexical filehandle http://stackoverflow.com/questions/1806333/are-there-reasons-to-ever-use-the-two-argument-form-of-open-in-perl/1806461#1806461 Comment by Dave Sherohman on Are there reasons to ever use the two-argument form of open(...) in Perl? Dave Sherohman 2009-11-27T09:44:13Z 2009-11-27T09:44:13Z In the general case, yes, but I tend to read &quot;short admin scripts&quot; to mean &quot;things that will be run on the command line under the uid of the person running it&quot;, 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. http://stackoverflow.com/questions/1782220/how-can-i-filter-a-large-file-into-two-separate-files/1782298#1782298 Comment by Dave Sherohman on How can I filter a large file into two separate files? Dave Sherohman 2009-11-23T11:08:15Z 2009-11-23T11:08:15Z 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. http://stackoverflow.com/questions/1774236/how-can-i-add-characters-at-the-beginning-and-end-of-every-non-empty-line-in-perl/1774260#1774260 Comment by Dave Sherohman on How can I add characters at the beginning and end of every non-empty line in Perl? Dave Sherohman 2009-11-21T11:49:08Z 2009-11-21T11:49:08Z Just to be pedantic, in the Perl version, you want <code>if $&#95; ne ''</code> rather than just <code>if $&#95;</code>. <code>$&#95;</code> will evaluate as false for certain non-empty lines (specifically, those containing a lone 0). http://stackoverflow.com/questions/1744340/what-does-this-perl-script-achieve Comment by Dave Sherohman on What does this Perl script achieve? Dave Sherohman 2009-11-17T10:15:37Z 2009-11-17T10:15:37Z @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). http://stackoverflow.com/questions/1741368/a-language-that-doesnt-use-c/1741435#1741435 Comment by Dave Sherohman on A language that doesn't use 'C' ? Dave Sherohman 2009-11-16T13:31:41Z 2009-11-16T13:31:41Z 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. http://stackoverflow.com/questions/1713082/what-is-the-base-of-the-logarithm-for-the-purposes-of-algorithms/1713098#1713098 Comment by Dave Sherohman on What is the base of the logarithm for the purposes of Algorithms? Dave Sherohman 2009-11-16T13:26:55Z 2009-11-16T13:26:55Z @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. http://stackoverflow.com/questions/1734385/how-do-i-define-private-or-internal-methods-in-object-oriented-perl/1734963#1734963 Comment by Dave Sherohman on How do I define private or internal methods in object oriented Perl? Dave Sherohman 2009-11-15T11:23:25Z 2009-11-15T11:23:25Z 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 &amp; Co. have dealt with the slow startup issues.) http://stackoverflow.com/questions/1736601/do-you-use-vim-emacs-terminals-to-develop-c-c-what-kind-of-projects-is-this-pr/1736670#1736670 Comment by Dave Sherohman on Do you use VIM/Emacs/Terminals to develop C/C++? What kind of projects is this practical for? Dave Sherohman 2009-11-15T11:07:24Z 2009-11-15T11:07:24Z Aye, that's one of the standard jokes among the vi-faithful: &quot;EMACS would be a lovely operating system, if only it had a decent editor.&quot;