User Schwern - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T15:00:45Z http://stackoverflow.com/feeds/user/14660 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1777026/perl-regex-replacement-string-special-variable/1780735#1780735 1 Answer by Schwern for Perl regex replacement string special variable Schwern 2009-11-23T01:46:56Z 2009-11-23T23:41:26Z <p>If you do the second eval manually you can store the result yourself.</p> <pre><code>my $store; s{$search}{ $store = eval $replace }e; </code></pre> http://stackoverflow.com/questions/1775496/how-can-i-run-perl-test-suite-automatically-when-files-change/1780710#1780710 2 Answer by Schwern for How can I run Perl test suite automatically when files change? Schwern 2009-11-23T01:34:48Z 2009-11-23T01:34:48Z <p>I don't know of any generic filesystem monitoring widget, but here's the Perl specific half.</p> <pre><code>sub run_tests { my $prove_out = `prove -lr`; my $tests_passed = $? == 0; return "" if $tests_passed; return $prove_out; } </code></pre> <p>This uses the <code>prove</code> utility that comes with Test::Harness 3. It exits non-zero on test failure. Plug that into your filesystem monitoring thing and you're set.</p> http://stackoverflow.com/questions/1779890/what-is-object-oriented-methodology/1779905#1779905 2 Answer by Schwern for What is Object-Oriented Methodology? Schwern 2009-11-22T20:34:00Z 2009-11-22T20:34:00Z <p>Apples and oranges. OO is a way of designing code. Scrum/waterfall/spiral, etc... are about how you manage a project. They're independent of each other.</p> <p>That said, you really should look into OO.</p> http://stackoverflow.com/questions/1774236/how-can-i-add-characters-at-the-beginning-and-end-of-every-non-empty-line-in-perl/1774328#1774328 7 Answer by Schwern for How can I add characters at the beginning and end of every non-empty line in Perl? Schwern 2009-11-21T02:37:16Z 2009-11-21T02:37:16Z <p>Others have already answered the regex syntax issue, let's look at that style.</p> <pre><code>s/^(.*)$/\"$1\",/g </code></pre> <p>This regex suffers from "leaning toothpick syndrome" where /\/\/ makes your brain bleed.</p> <pre><code>s{^ (.+) $}{ "$1", }x; </code></pre> <p>Use of balanced delimiters, the /x modifier to space things out and elimination of unnecessary backwhacks makes the regex far easier to read. Also the /g is unnecessary as this regex is only ever going to match once per line.</p> http://stackoverflow.com/questions/1759960/buffer-size-in-c/1760038#1760038 2 Answer by Schwern for Buffer size in C Schwern 2009-11-19T00:06:56Z 2009-11-19T21:10:19Z <p>It sounds like there's some confusion about the "buffer". There is no buffer. <code>morse-size</code> is telling you how much memory has been allocated to <code>morse</code> (technically, the chunk of memory that <code>morse</code> points to). If morse-size is 20 then you have 20 bytes. This is 19 bytes of usable space, because strings are terminated by a null byte. You can think of <code>morse-size</code> as "maximum length of the string plus one".</p> <p>You need to check <code>morse-size</code> to make sure you're not writing more bytes into <code>morse</code> than it can hold. <code>morse</code> is nothing more than a number pointing to a single spot in memory. Not a range, but a single spot. What's been allocated to <code>morse</code> comes after that. If you put more than that into <code>morse</code> you risk overwriting someone else's memory. C will NOT check this for you, this is the price of maximum performance.</p> <p>Its like if you went to a theater and the usher tells you, "you can have seat A3 and the next 5" and then leaves. You have to be polite and not take 6 seats, somebody else was given A8.</p> <p>Tools such as <a href="http://valgrind.org/" rel="nofollow">valgrind</a> are invaluable to spot memory mistakes in C and keep your sanity.</p> <p>Aren't strings in C a hoot? Welcome to the single largest root cause of bugs in the entire computing world.</p> http://stackoverflow.com/questions/1095309/writing-a-portable-command-line-wrapper-in-c 10 Writing a portable command line wrapper in C. Schwern 2009-07-07T23:07:43Z 2009-11-19T01:29:30Z <p>I'm writing a perl module called <a href="http://github.com/schwern/perl5i" rel="nofollow">perl5i</a>. Its aim is to fix a swath of common Perl problems in one module (using lots of other modules).</p> <p>To invoke it on the command line for one liners you'd write: <code>perl -Mperl5i -e 'say "Hello"'</code> I think that's too wordy so I'd like to supply a perl5i wrapper so you can write <code>perl5i -e 'say "Hello"'</code>. I'd also like people to be able to write scripts with <code>#!/usr/bin/perl5i</code> so it must be a compiled C program.</p> <p>I figured all I had to do was push "-Mperl5i" onto the front of the argument list and call perl. And that's what I tried.</p> <pre><code>#include &lt;unistd.h&gt; #include &lt;stdlib.h&gt; /* * Meant to mimic the shell command * exec perl -Mperl5i "$@" * * This is a C program so it works in a #! line. */ int main (int argc, char* argv[]) { int i; /* This value is set by a program which generates this C file */ const char* perl_cmd = "/usr/local/perl/5.10.0/bin/perl"; char* perl_args[argc+1]; perl_args[0] = argv[0]; perl_args[1] = "-Mperl5i"; for( i = 1; i &lt;= argc; i++ ) { perl_args[i+1] = argv[i]; } return execv( perl_cmd, perl_args ); } </code></pre> <p>Windows complicates this approach. Apparently programs in Windows are not passed an array of arguments, they are passed all the arguments as a single string and then do their own parsing! Thus something like <code>perl5i -e "say 'Hello'"</code> becomes <code>perl -Mperl5i -e say 'Hello'</code> and Windows can't deal with the lack of quoting.</p> <p>So, how can I handle this? Wrap everything in quotes and escapes on Windows? Is there a library to handle this for me? Is there a better approach? Could I just not generate a C program on Windows and write it as a perl wrapper as it doesn't support #! anyway?</p> <p>UPDATE: Do be more clear, this is shipped software so solutions that require using a certain shell or tweaking the shell configuration (for example, <code>alias perl5i='perl -Mperl5i'</code>) aren't satisfactory.</p> http://stackoverflow.com/questions/1759960/buffer-size-in-c/1760092#1760092 0 Answer by Schwern for Buffer size in C Schwern 2009-11-19T00:22:33Z 2009-11-19T00:22:33Z <p>Another solution is instead of passing in a pre-allocated destination string to be written to, your function does the allocation and returns a pointer to that. This is a whole lot safer as the caller doesn't have to guess how much memory your function will need.</p> <pre><code>char *ascii2morse(const char *ascii, lookuptable *table) </code></pre> <p>You still have to allocate enough memory for the Morse code. Since Morse code isn't fixed length there's two strategies. The first is to simply figure out the maximum possible memory needed for the given length string (longest Morse sequence * number of characters in ascii) and allocate that. This might seem like a waste, but its what the caller will have to do for your original plan anyway.</p> <p>The alternative is to use <code>realloc</code> to continually grow the string as you need it. You figure out how many bytes you need to encode the next character, reallocate that much and append it to the string. This might be slower, memory allocators are pretty sophisticated these days, but it will use exactly as much memory as you need.</p> <p>BOTH avoid the trap where the user has to preallocate an unknown amount of memory and BOTH eliminate the unnecessary "user didn't allocate enough memory" error condition.</p> <p>If you really wanted to save memory I'd store each dot/dash in the Morse code as 2 bits rather than 8 bits. You have three "words", short and long letter break. That's a minimum of 2 bits of space.</p> http://stackoverflow.com/questions/1726363/how-can-i-use-a-variables-value-as-a-perl-variable-name/1726449#1726449 9 Answer by Schwern for How can I use a variable's value as a Perl variable name? Schwern 2009-11-13T00:51:58Z 2009-11-13T00:51:58Z <p>You're trying to use "symbolic references". If you have a problem and you think "hey, I'll solve this with symbolic references" you now have two problems.</p> <p>First off, they only work on globals. You've declared <code>$path</code> as a lexical (only visible in the block which it was declared) and thus load_path can't see it. No, don't make <code>$path</code> global.</p> <p>Second, symbolic refs create spaghetti code. Globals are bad enough. They can be accessed anywhere, anytime by anything. With a symbolic reference to a global you can't even see WHICH global is being accessed. This makes it impossible to track what might change what. This is why <code>strict</code> turns them off. Turn on <code>strict</code> and leave it on until you know when you should turn it off.</p> <p>I'm not entirely sure what you're trying to accomplish, but it seems this is fine.</p> <pre><code>my %hash; while (&lt;MY_FILE&gt;) { chomp; my ($id, $path, $date) = split /\|/; $hash{$path} = { "path" =&gt; $path, "date" =&gt; $date }; } </code></pre> <p>But I'd probably move the parsing of the line into a function and leave the hash assignment to the main loop. Parsing the line is a clear chunk of logic and can be totally separated from assigning the line to the file hash. A good sign is that <code>%hash</code> does not have to be global.</p> <pre><code>my %hash; while (&lt;MY_FILE&gt;) { my $line = parse_line($_); my $id = $line-&gt;{path}; $hash{$id} = $line; } my @fields = qw(id path date); sub parse_line { my $line = shift; chomp $line; my %data; # This is assigning to a hash slice. Look it up, its handy. @data{@fields} = split m{\|}, $line; return \%data; } </code></pre> http://stackoverflow.com/questions/1718311/moving-a-perl-script-dbm-to-a-new-server-and-shifting-out-of-dbm/1720060#1720060 0 Answer by Schwern for moving a perl script/dbm to a new server, and shifting out of dbm?? Schwern 2009-11-12T05:19:23Z 2009-11-12T05:19:23Z <p>There's a few things which could be going wrong. The most obvious one is that the dbmopen() call isn't opening the file. If the DBM file doesn't exist, rather than failing dbmopen() just makes a new one which could be why it appears empty.</p> <p>To eliminate that possibility, make sure the DBM file does exist and is readable. You also want to check if the dbmopen() succeeded, it will (usually) error out if its the wrong format.</p> <pre><code>die "$art_dbm does not exist" unless -e $art_dbm; die "Cannot read $art_dbm" unless -r $art_dbm; dbmopen( %ARTS, $art_dbm, 0644 ) or die "dbmopen of $art_dbm failed: $!"; </code></pre> <p>Unfortunately dbmopen() is too clever for its own good. If you give it "foo" it <em>might</em> create "foo.db" instead. Depends on the implementation. See below.</p> <p>The other possibility is that your two Perls are trying to open the file with two different DBM implementations. Perl can be compiled with different sets of DBM implementations on your different machines. dbmopen() will use the first one in a hard coded (and historically barnacled) list. Its actually a wrapper around <a href="http://search.cpan.org/dist/AnyDBM%5FFile" rel="nofollow">AnyDBM_File</a>. You can check which implementation is being used with...</p> <pre><code>use AnyDBM_File; print "@AnyDBM_File::ISA\n"; </code></pre> <p>Make sure they're the same. If not, load the DBM library in question before using dbmopen. <code>perldoc -f dbmopen</code> explains.</p> <p>Here's a demonstration. First we see what dbmopen() will default to.</p> <pre><code>$ perl -wle 'use AnyDBM_File; print "@AnyDBM_File::ISA"' NDBM_File </code></pre> <p>Then create and populate a dbm file.</p> <pre><code>$ perl -wle 'dbmopen(%foo, "tmpdbm", 0644) or die $!; $foo{23} = 42; print %foo' 2342 </code></pre> <p>Now demonstrate we can read it.</p> <pre><code>$ perl -wle 'dbmopen(%foo, "tmpdbm", 0644) or die $!; print %foo' 2342 </code></pre> <p>And try to read it using a different DBM implementation.</p> <pre><code>$ perl -wle 'use GDBM_File; dbmopen(%foo, "tmpdbm", 0644) or die $!; print %foo' </code></pre> <p>Nothing in the file, but no error either. Turns out it made a file called tmpdbm whereas ndbm was using tmpdbm.db. Let's try Berkeley DB.</p> <pre><code>$ perl -wle 'use DB_File; dbmopen(%foo, "tmpdbm", 0644) or die $!; print %foo' Inappropriate file type or format at -e line 1. </code></pre> <p>At least that gives an error.</p> <p>Your best bet is to figure out what DBM implementation the original machine is using and use that module before the dbmopen() call. That will make the situation static.</p> <p>PS The Unix <code>file</code> utility will also give you a good idea what type of DBM it is.</p> <pre><code>$ file tmpdbm tmpdbm: GNU dbm 1.x or ndbm database, little endian $ file tmpdbm.db tmpdbm.db: Berkeley DB 1.85 (Hash, version 2, native byte-order) </code></pre> <p>And hope to <code>$diety</code> its not a byte-order issue, less common now that almost everything is x86.</p> <p>PPS As you can see, using DBM files is a bit of a mess. Strange considering its supposed to be just a hash-on-disk.</p> http://stackoverflow.com/questions/1695925/how-do-i-import-a-third-party-lib-into-git/1698115#1698115 3 Answer by Schwern for How do I import a third party lib into git? Schwern 2009-11-08T22:20:35Z 2009-11-08T22:20:35Z <p>What you're looking for is a "vendor branch". Assuming you want to work on this code and merge the vendor's updates with your own patches, here's how you make that easy.</p> <pre><code>git co -b vendor # create a vendor branch and check it out </code></pre> <p>That's a one time thing. The vendor branch and its ONLY going to contain updates from the 3rd party vendor. You never do work in the vendor branch, it contains a clean history of the vendor's code. There's nothing magic about the name "vendor" its just my terminology hold over from CVS.</p> <p>Now we'll put the latest version from the vendor in there.</p> <pre><code>find . -not -path *.git* -and -not -path . -delete # delete everything but git files dump the 3rd party code into the project directory # I'll leave that to you git add . # add all the files, changes and deletions git commit -a -m 'Vendor update version X.YY' # commit it git tag 'Vendor X.YY' # optional, might come in handy later </code></pre> <p>We delete everything first so that git can see things the vendor deleted. git's ability to see deletions and guess moved files makes this procedure far simpler than with Subversion.</p> <p>Now you switch back to your development (I'm presuming master) and merge in the vendor's changes.</p> <pre><code>git checkout master git merge vendor </code></pre> <p>Deal with any conflicts as normal. Your patched version is now up to date with the vendor. Work on master as normal.</p> <p>Next time there's a new version from the vendor, repeat the procedure. This takes advantage of git's excellent merging to keep your patches up to date with vendor changes.</p> http://stackoverflow.com/questions/1663949/how-do-i-get-all-permutations-of-xpy-in-c 3 How do I get all permutations of xPy in C? Schwern 2009-11-02T21:51:14Z 2009-11-03T00:00:12Z <p>I'd like to calculate all the permutations of size Y of a set of size X. That is if I had (1,2,3) and want all permutations of size 2, 3P2, it would be (1,2) (1,3) (2,1) (2,3) (3,1) (3,2).</p> <p>Both the GSL and C++ STL only provide xPx that I can see. Could someone point me at a C/C++ library which can do this or spell out a fast and memory efficient algorithm?</p> <p>I'm trying to solve a very short cryptogram. I've figured out two letters and have decided to do an brute force attack. I have "ouglg ouyakl" and am checking every permutation against a very good dictionary. I've eliminated 2 letters so its 24P7 or 1,744,364,160 possibilities which isn't so bad. I have a Perl program running now, so this will be an interesting test of the total efficiency of programming time + run time. :)</p> <p>(No, I do not just want the answer to the cryptogram.)</p> http://stackoverflow.com/questions/1635324/how-can-i-identify-and-remove-redundant-code-in-perl/1635601#1635601 6 Answer by Schwern for How can I identify and remove redundant code in Perl? Schwern 2009-10-28T07:13:55Z 2009-10-28T07:13:55Z <p>I've run into this problem myself in the past. I've slapped together a quick little program that uses PPI to find subroutines. It normalizes the code a bit (whitespace normalized, comments removed) and reports any duplicates. Works reasonably well. PPI does all the heavy lifting.</p> <p>You could make the normalization a little smarter by normalizing all variable names in each routine to $a, $b, $c and maybe doing something similar for strings. Depends on how aggressive you want to be.</p> <pre><code>#!perl use strict; use warnings; use PPI; my %Seen; for my $file (@ARGV) { my $doc = PPI::Document-&gt;new($file); $doc-&gt;prune("PPI::Token::Comment"); # strip comments my $subs = $doc-&gt;find('PPI::Statement::Sub'); for my $sub (@$subs) { my $code = $sub-&gt;block; $code =~ s/\s+/ /; # normalize whitespace next if $code =~ /^{\s*}$/; # ignore empty routines if( $Seen{$code} ) { printf "%s in $file is a duplicate of $Seen{$code}\n", $sub-&gt;name; } else { $Seen{$code} = sprintf "%s in $file", $sub-&gt;name; } } } </code></pre> http://stackoverflow.com/questions/1633000/list-of-large-projects-built-using-perl/1633822#1633822 9 Answer by Schwern for List of large projects built using Perl Schwern 2009-10-27T21:37:32Z 2009-10-27T21:37:32Z <p><a href="http://www.perlfoundation.org/perl5/" rel="nofollow">The Perl 5 Wiki</a> has a lists of <a href="http://www.perlfoundation.org/perl5/index.cgi?companies%5Fusing%5Fperl" rel="nofollow">companies</a> and <a href="http://www.perlfoundation.org/perl5/index.cgi?applications" rel="nofollow">applications</a> which use Perl. At the bottom of the companies page you'll find links to additional lists of sites using various Perl frameworks.</p> http://stackoverflow.com/questions/1622196/malloc-zeroing-out-memory/1622248#1622248 0 Answer by Schwern for malloc zeroing out memory? Schwern 2009-10-25T22:03:35Z 2009-10-25T22:03:35Z <p>The value in the allocated memory is officially undefined. C99 states: <code>The malloc function allocates space for an object whose size is specified by size and whose value is indeterminate.</code> malloc() can do whatever it wants, including zeroing it out. This may be deliberate, a side-effect of the implementation, or you might just have a lot of memory that happens to be 0.</p> <p>FWIW on OS X with Apple's gcc 4.0.1 I can't make it come out not 0 even doing a lot of allocations:</p> <pre><code>for( idx = 0; idx &lt; 100000; idx++ ) { i = (int *) malloc(sizeof(int)); printf("%d\n", *i); } </code></pre> http://stackoverflow.com/questions/1620734/how-do-i-delete-a-random-value-from-an-array-in-perl/1621874#1621874 1 Answer by Schwern for How do I delete a random value from an array in Perl? Schwern 2009-10-25T19:44:24Z 2009-10-25T19:51:01Z <p>If you need to delete a line from a file (its not entirely clear from your question) one of the simplest and most efficient ways is to use <a href="http://search.cpan.org/dist/Tie-File" rel="nofollow">Tie::File</a> to manipulate a file as if it were an array. Otherwise <a href="http://perldoc.perl.org/perlfaq5.html#How-do-I-change,-delete,-or-insert-a-line-in-a-file,-or-append-to-the-beginning-of-a-file?" rel="nofollow">perlfaq5</a> explains how to do it the long way.</p> http://stackoverflow.com/questions/1621770/the-anti-goto-pro-one-return-convention/1621836#1621836 -1 Answer by Schwern for The anti-goto, pro-one-return convention Schwern 2009-10-25T19:34:18Z 2009-10-25T19:34:18Z <p><code>goto</code> is flat out bad. You lose the input/output paradigm that makes functions easy to follow. It usually indicates that you need to cut your code up into smaller routines.</p> <p><code>break</code>, <code>continue</code>, etc... are all fine if they simplify the loop condition and if they're exceptions to the loop condition. Keep the close to the top and bottom of the loop so they're easier to spot.</p> <p>However, the "always keep one return statement" is considered harmful precisely because you can't bail out early. "Code Complete" has a nice explanation about the damage holding yourself to a single return at the end of a function can do. <a href="http://stackoverflow.com/questions/36707/should-a-function-have-only-one-return-statement">This question</a> sums it up. Here's a very simple example.</p> <pre><code># Only return at the end of the function. sub throw_ball(player, receiver) { if( player.has_ball &amp;&amp; player.is_legal_to_throw_ball ) { receiver.carrying = player.carrying; return 1; } else { return 0; } } # Cull things out at the top. sub throw_ball(player, receiver) { return 0 unless player.has_ball; return 0 unless player.is_legal_to_throw_ball; receiver.carrying = player.carrying; return 1; } </code></pre> <p>Its really handy to bail out early rather than have the whole code wrapped in a condition.</p> http://stackoverflow.com/questions/1585560/can-you-take-a-reference-of-a-builtin-function-in-perl/1610651#1610651 0 Answer by Schwern for Can you take a reference of a builtin function in Perl? Schwern 2009-10-22T23:45:10Z 2009-10-22T23:45:10Z <p>If you want to see what it takes to fake it in production quality code, look at the code for <a href="http://search.cpan.org/dist/autodie" rel="nofollow">autodie</a>. The meat is in <a href="http://search.cpan.org/dist/Fatal" rel="nofollow">Fatal</a>. Helps if you're a mad pirate Jedi Australian.</p> http://stackoverflow.com/questions/1608094/how-do-i-linkify-text-in-perl/1610382#1610382 1 Answer by Schwern for How do I linkify text in Perl? Schwern 2009-10-22T22:34:42Z 2009-10-22T22:34:42Z <p>I can't speak to the XSS issue, but <a href="http://search.cpan.org/dist/URI-Find" rel="nofollow">URI::Find</a> will let you find all URIs in text and transform them into whatever you like.</p> http://stackoverflow.com/questions/1302209/how-do-i-ping-a-fastcgi-server 1 How do I ping a FastCGI server? Schwern 2009-08-19T19:39:35Z 2009-10-22T17:33:36Z <p>How do I check if a FastCGI server is alive and running normally beyond just making a TCP connection?</p> <p>I have a number of remote, stand-alone FastCGI servers. I want to monitor the FastCGI server itself to ensure its alive. Simply making a request of the web server is not enough as it will automatically route around a dead server.</p> <p>Thanks!</p> http://stackoverflow.com/questions/1593361/excluding-code-sections-from-epic-tidyperl-source-formatting/1593431#1593431 4 Answer by Schwern for Excluding code sections from EPIC/tidyperl source formatting. Schwern 2009-10-20T09:25:53Z 2009-10-20T09:25:53Z <p>HTML embedded in the code is a red flag. That's stuff a designer is going to want to tweak, and so should be able to get at easily. The HTML should be split out into template files. I realize this doesn't answer your question, but it does solve your problem.</p> <p>Otherwise, use <a href="http://search.cpan.org/dist/Perl%3A%3ATidy" rel="nofollow">perltidy</a> to handle Perl code formatting. It won't mess with content inside strings and certainly isn't going to try and format HTML.</p> http://stackoverflow.com/questions/345513/how-can-i-delete-the-last-n-lines-of-a-file/347309#347309 4 Answer by Schwern for How can I delete the last N lines of a file? Schwern 2008-12-07T06:17:38Z 2009-10-20T06:54:35Z <p>As folks have suggested Tie::Array already, which does the job well, I'll lay out the basic algorithm should you want to do it by hand. There are sloppy, slow ways to do it that work well for small files. Here's the efficient way to do it for large files.</p> <ol> <li>Find the position in the file just before the Nth line from the end.</li> <li>Truncate everything after that point (using <code>truncate()</code>).</li> </ol> <p>1 is the tricky part. We don't know how many lines there are in the file or where they are. One way is to count all the lines up and then go back to the Nth. This means we have to scan the whole file every time. More efficient would be to read backwards from the end of the file. You can do this with <code>read()</code> but it's easier to use <a href="http://search.cpan.org/dist/File-ReadBackwards" rel="nofollow">File::ReadBackwards</a> which can go backwards line by line (while still using efficient buffered reads).</p> <p>This means you read just 125,000 lines rather than the whole file. <code>truncate()</code> should be O(1) and atomic and cost almost nothing no matter how large the file. It simply resets the size of the file.</p> <pre><code>#!/usr/bin/perl use strict; use warnings; use File::ReadBackwards; my $LINES = 10; # Change to 125_000 or whatever my $File = shift; # file passed in as argument my $rbw = File::ReadBackwards-&gt;new($File) or die $!; # Count backwards $LINES or the beginning of the file is hit my $line_count = 0; until( $rbw-&gt;eof || $line_count == $LINES ) { $rbw-&gt;readline; $line_count++; } # Chop off everything from that point on. truncate($File, $rbw-&gt;tell) or die "Could not truncate! $!"; </code></pre> http://stackoverflow.com/questions/1549688/how-do-i-best-make-triggered-accessors-with-defaults-in-moose 7 How do I best make triggered accessors with defaults in Moose? Schwern 2009-10-11T02:35:42Z 2009-10-20T02:30:20Z <p>I have a situation where I'd like to cache some calculations for use later. Let's say I have a list of allowed values. Since I'm going to be checking to see if anything is in that list I'm going to want it as a hash for efficiency and convenience. Otherwise I'd have to grep.</p> <p>If I'm using Moose it would be nice if the cache was recalculated each time the list of allowed values is changed. I can do that with a trigger easy enough...</p> <pre><code>has allowed_values =&gt; ( is =&gt; 'rw', isa =&gt; 'ArrayRef', trigger =&gt; sub { my %hash = map { $_ =&gt; 1 } @{$_[1]}; $_[0]-&gt;allowed_values_cache(\%hash); } ); has allowed_values_cache =&gt; ( is =&gt; 'rw', isa =&gt; 'HashRef', ); </code></pre> <p>And the two will stay in sync...</p> <pre><code>$obj-&gt;allowed_values([qw(up down left right)]); print keys %{ $obj-&gt;allowed_values_cache }; # up down left right </code></pre> <p>Now let's say I want a default for <code>allowed_values</code>, simple enough change...</p> <pre><code>has allowed_values =&gt; ( is =&gt; 'rw', isa =&gt; 'ArrayRef', trigger =&gt; sub { my %hash = map { $_ =&gt; 1 } @{$_[1]}; $_[0]-&gt;allowed_values_cache(\%hash); }, default =&gt; sub { return [qw(this that whatever)] }, ); </code></pre> <p>...except setting the default doesn't call the trigger. To get it to DWIM I need to duplicate the caching.</p> <pre><code>has allowed_values =&gt; ( is =&gt; 'rw', isa =&gt; 'ArrayRef', trigger =&gt; sub { $_[0]-&gt;cache_allowed_values($_[1]); }, default =&gt; sub { my $default = [qw(this that whatever)]; $_[0]-&gt;cache_allowed_values($default); return $default; }, ); sub cache_allowed_values { my $self = shift; my $values = shift; my %hash = map { $_ =&gt; 1 } @$values; $self-&gt;allowed_values_cache(\%hash); return; } </code></pre> <p>The Moose docs are explicit about <code>trigger</code> not getting called when the default is set, but it gets in the way. I don't like the duplication there.</p> <p>Is there a better way to do it?</p> http://stackoverflow.com/questions/1573158/is-this-the-way-to-go-about-building-perl-subroutines/1583794#1583794 1 Answer by Schwern for Is this the way to go about building Perl subroutines? Schwern 2009-10-18T02:02:58Z 2009-10-18T02:02:58Z <p>Something that's been hinted at but not directly addressed in other answers is the use of numeric modes, a convention alien to Perl held over from C. Quick, without looking at the code what does mode #3 do? Hell, looking at the code what does mode #3 do?</p> <p>Perl has efficient and easy to use strings. Use them. Give your modes names that have something to do with what its doing. Something like... first, last, recase_first, recase_last. They don't have to be totally descriptive, lower_case_then_uc_last_letter would be too long to type, but enough give something for the human brain to hook onto and associate.</p> <p>But really these are four subroutines. Mode flags are red flags, especially when most of your code winds up inside an if/else statement.</p> http://stackoverflow.com/questions/1507198/what-skills-should-i-focus-or-learn-as-a-fresh-cs-graduate/1507338#1507338 1 Answer by Schwern for What skills should I focus or learn as a fresh CS graduate? Schwern 2009-10-02T01:15:01Z 2009-10-02T01:15:01Z <p>Your post shows a focus on technologies and programming languages, those are generally learnt on the job and are relatively easy to learn once you've got the basics down.</p> <p>What you should be working on is learning software engineering and people skills which are important when working with a team, with non-programmers, on a schedule and developing maintainable software. Testing, documentation, good version control techniques, communications, task/bug tracking, estimation, separation of concerns, encapsulation and so on.</p> <p>Anyone can be taught Java or .NET or CSS but those who work well with others are harder to come by.</p> http://stackoverflow.com/questions/1440499/which-is-the-faster-way-to-print-in-perl/1442808#1442808 10 Answer by Schwern for Which is the faster way to print in Perl? Schwern 2009-09-18T06:02:02Z 2009-09-19T20:26:32Z <p>The answer is simple, it doesn't matter. As many folks have pointed out, this is not going to be your program's bottleneck. Optimizing this to even happen instantly is unlikely to have any effect on your performance. You <strong>must profile first</strong>, otherwise you are just guessing and wasting your time.</p> <p>If we are going to waste time on it, let's at least do it right. Below is the code to do a realistic benchmark. It actually does the print and sends the benchmarking information to STDERR. You run it as <code>perl benchmark.plx &gt; /dev/null</code> to keep the output from flooding your screen.</p> <p>Here's 5 million iterations writing to STDOUT. By using both <code>timethese()</code> and <code>cmpthese()</code> we get all the benchmarking data.</p> <pre><code>$ perl ~/tmp/bench.plx 5000000 &gt; /dev/null Benchmark: timing 5000000 iterations of concat, list... concat: 3 wallclock secs ( 3.84 usr + 0.12 sys = 3.96 CPU) @ 1262626.26/s (n=5000000) list: 4 wallclock secs ( 3.57 usr + 0.12 sys = 3.69 CPU) @ 1355013.55/s (n=5000000) Rate concat list concat 1262626/s -- -7% list 1355014/s 7% -- </code></pre> <p>And here's 5 million writing to a temp file</p> <pre><code>$ perl ~/tmp/bench.plx 5000000 Benchmark: timing 5000000 iterations of concat, list... concat: 6 wallclock secs ( 3.94 usr + 1.05 sys = 4.99 CPU) @ 1002004.01/s (n=5000000) list: 7 wallclock secs ( 3.64 usr + 1.06 sys = 4.70 CPU) @ 1063829.79/s (n=5000000) Rate concat list concat 1002004/s -- -6% list 1063830/s 6% -- </code></pre> <p>Note the extra wallclock and sys time underscoring how what you're printing <em>to</em> matters as much as what you're printing.</p> <p>The list version is about 5% faster (note this is counter to Pavel's logic underlining the futility of trying to just think this stuff through). You said you're doing tens of thousands of these? Let's see... 100k takes 146ms of wallclock time on my laptop (which has crappy I/O) so the best you can do here is to shave off about 7ms. Congratulations. If you spent even a minute thinking about this it will take you 40k iterations of that code before you've made up that time. This is not to mention the opportunity cost, in that minute you could have been optimizing something far more important.</p> <p>Now, somebody's going to say "now that we know which way is faster we should write it the fast way and save that time in every program we write making the whole exercise worthwhile!" No. It will still add up to an insignificant portion of your program's run time, far less than the 5% you get measuring a single statement. Second, logic like that causes you to prioritize micro-optimizations over maintainability.</p> <p>Oh, and its different in 5.8.8 as in 5.10.0.</p> <pre><code>$ perl5.8.8 ~/tmp/bench.plx 5000000 &gt; /dev/null Benchmark: timing 5000000 iterations of concat, list... concat: 3 wallclock secs ( 3.69 usr + 0.04 sys = 3.73 CPU) @ 1340482.57/s (n=5000000) list: 5 wallclock secs ( 3.97 usr + 0.06 sys = 4.03 CPU) @ 1240694.79/s (n=5000000) Rate list concat list 1240695/s -- -7% concat 1340483/s 8% -- </code></pre> <p>It might even change depending on what Perl I/O layer you're using and operating system. So the whole exercise is futile.</p> <p>Micro-optimization is a fool's game. Always profile first and look to optimizing your algorithm. <a href="http://search.cpan.org/dist/Devel-NYTProf" rel="nofollow">Devel::NYTProf</a> is an excellent profiler.</p> <pre><code>#!/usr/bin/perl -w use strict; use warnings; use Benchmark qw(timethese cmpthese); #open my $fh, "&gt;", "/tmp/test.out" or die $!; #open my $fh, "&gt;", "/dev/null" or die $!; my $fh = *STDOUT; my $hash = { foo =&gt; "something and stuff", bar =&gt; "and some other stuff" }; select *STDERR; my $r = timethese(shift || -3, { list =&gt; sub { print $fh $hash-&gt;{foo}, "|", $hash-&gt;{bar}; }, concat =&gt; sub { print $fh $hash-&gt;{foo}. "|". $hash-&gt;{bar}; }, }); cmpthese($r); </code></pre> http://stackoverflow.com/questions/1303049/how-do-i-alias-a-database-in-mysql 4 How do I alias a database in MySQL? Schwern 2009-08-19T22:49:15Z 2009-09-18T19:30:13Z <p>I'm looking for a way to alias a database in MySQL. The reason is to be able to rename a live, production database without bringing the system down. I figure I can alias the database to the new name, change and deploy the code connecting to it at my leisure, and eventually remove the old alias.</p> <p>If there's a better way to accomplish this please let me know.</p> http://stackoverflow.com/questions/1314120/can-i-set-the-process-group-of-an-existing-process 1 Can I set the process group of an existing process? Schwern 2009-08-21T20:44:36Z 2009-08-23T17:42:49Z <p>I have a bunch of mini-server processes running. They're in the same process group as a FastCGI server I need to stop. The FastCGI server will kill everything in its process group, but I need those mini-servers to keep running.</p> <p>Can I change the process group of a running, non-child process (they're children of PID 1)? <code>setpgid()</code> fails with "No such process" though I'm positive its there.</p> <p>This is on Fedora Core 10.</p> <p><strong>NOTE</strong> the processes are <em>already running</em>. New servers do <code>setsid()</code>. These are some servers spawned by older code which did not.</p> http://stackoverflow.com/questions/1314120/can-i-set-the-process-group-of-an-existing-process/1319111#1319111 1 Answer by Schwern for Can I set the process group of an existing process? Schwern 2009-08-23T17:42:49Z 2009-08-23T17:42:49Z <p>After some research I figured it out. Inshalla got the essential problem, "<em>you can't change the process group id to one from another session</em>" which explains why my <code>setpgid()</code> was failing (with a misleading message). However, it seems you <em>can</em> change it from any other process in the group (not necessarily the parent).</p> <p>Since these processes were started by a FastCGI server and that FastCGI server was still running and in the same process group. Thus the problem, can't restart the FastCGI server without killing the servers it spawned. I wrote a new CGI program which did a <code>setpgid()</code> on the running servers, executed it through a web request and problem solved!</p> http://stackoverflow.com/questions/1274225/how-do-i-find-out-the-currently-running-php-executable 2 How do I find out the currently running PHP executable? Schwern 2009-08-13T19:58:21Z 2009-08-16T06:31:44Z <p>From inside a PHP program I want to know the location of the binary executing it. Perl has <code>$^X</code> for this purpose. Is there an equivalent in PHP?</p> <p>This is so it can execute a child PHP process using itself (rather than hard code a path or assume "php" is correct).</p> <p><strong>UPDATE</strong></p> <ol> <li>I'm using lighttpd + FastCGI, not Apache + mod_php. So yes, there is a PHP binary.</li> <li>eval/include is not a solution because I'm spawning a server which has to live on beyond the request.</li> </ol> <p><em>Things I've tried and don't work:</em></p> <ul> <li><code>$_SERVER['_']</code> looks like what I want from the command line but its actually from an environment variable set by the shell of the last executed program. When run from a web server this is the web server binary.</li> <li><code>which php</code> will not work because the PHP binary is not guaranteed to be the same one as is in the web server's <code>PATH</code>.</li> </ul> <p>Thanks in advance.</p> http://stackoverflow.com/questions/1260639/how-can-i-signal-a-forked-child-to-terminate-in-perl/1261177#1261177 0 Answer by Schwern for How can I signal a forked child to terminate in Perl? Schwern 2009-08-11T15:36:04Z 2009-08-11T15:36:04Z <p>You have several options. <a href="http://perldoc.perl.org/perlthrtut.html" rel="nofollow">Threads</a>, <a href="http://perldoc.perl.org/perlipc.html#Sockets:-Client/Server-Communication" rel="nofollow">sockets</a>, <a href="http://perldoc.perl.org/perlipc.html#SysV-IPC" rel="nofollow">IPC</a> and writing to a file with file locking. Personally I'd recommend threads, they're very easy and safe in Perl, most installations have them compiled and they're fairly performant once a thread has been created.</p> <p>An interesting alternative is the <a href="http://search.cpan.org/dist/forks" rel="nofollow">forks</a> module which emulates threads using a combination of fork() and sockets. I've never used it myself but Elizabeth Mattijsen knows her threads.</p> http://stackoverflow.com/questions/1802005/why-my-hyperlink-tags-display-as-plain-text-on-the-browser/1802046#1802046 Comment by Schwern on why my hyperlink tags display as plain text on the browser? Schwern 2009-11-26T07:25:57Z 2009-11-26T07:25:57Z Technically, single quotes are fine according to both HTML 4 and XHTML. See <a href="http://www.w3.org/TR/REC-xml/#NT-AttValue" rel="nofollow">w3.org/TR/REC-xml/#NT-AttValue</a> That said, I trust web browsers to follow standards about as much as I trust politicians to follow their campaign promises. Use double quotes. http://stackoverflow.com/questions/1785852/why-are-perl-source-filters-bad-and-when-is-it-ok-to-use-them/1786060#1786060 Comment by Schwern on Why are Perl source filters bad and when is it OK to use them? Schwern 2009-11-25T09:11:49Z 2009-11-25T09:11:49Z @Chris That's a function which you happen to write as a macro for esoteric reasons which side-steps the point. But forget those outer parens and you're in a world of hurt underscoring the danger involved in injecting code. Macros <i>are</i> less dangerous than source filters as they get inserted into the code by the compiler at points where they're used by a the caller. Source filters just rewrite all the code. To best see Brad's point, look at the Perl 5 source code some time. Its more C macros than C. http://stackoverflow.com/questions/1785852/why-are-perl-source-filters-bad-and-when-is-it-ok-to-use-them/1786924#1786924 Comment by Schwern on Why are Perl source filters bad and when is it OK to use them? Schwern 2009-11-25T08:54:24Z 2009-11-25T08:54:24Z A module author has to go out of their way to do something really wacky. You choose what's going to effect your caller, everything else is contained. Thus &quot;modular&quot;. For a source filter, wackiness is the default. A filter touches <i>every line of code</i> in the caller, you have to be real careful to only effect the ones you mean. Even the simplest source filter contains danger, whereas simple modules do not. http://stackoverflow.com/questions/1777026/perl-regex-replacement-string-special-variable/1780735#1780735 Comment by Schwern on Perl regex replacement string special variable Schwern 2009-11-23T23:41:43Z 2009-11-23T23:41:43Z Ahh, true. Also its redundant. http://stackoverflow.com/questions/1776948/how-do-i-toggle-printing-to-stdout-stderr-dynamically-in-perl/1776959#1776959 Comment by Schwern on How do I toggle printing to STDOUT/STDERR dynamically in Perl? Schwern 2009-11-23T01:23:28Z 2009-11-23T01:23:28Z @ysth Why would you deprecate it? Because its global side effect that makes the convenient shorthand of &quot;print $string == print STDOUT $string&quot; unreliable. And it overloads the select() function with two totally different meanings. http://stackoverflow.com/questions/1768090/what-is-activeperl-doing-when-it-relocates-files-during-installation/1768345#1768345 Comment by Schwern on What is ActivePerl doing when it "relocates" files during installation? Schwern 2009-11-22T20:36:32Z 2009-11-22T20:36:32Z @Matt That's exactly what happens. http://stackoverflow.com/questions/1768090/what-is-activeperl-doing-when-it-relocates-files-during-installation/1768152#1768152 Comment by Schwern on What is ActivePerl doing when it "relocates" files during installation? Schwern 2009-11-22T20:35:59Z 2009-11-22T20:35:59Z @Elafler I was referring to Perl libraries (.pm files), not the shared libraries associated with the binary. http://stackoverflow.com/questions/1768090/what-is-activeperl-doing-when-it-relocates-files-during-installation/1768152#1768152 Comment by Schwern on What is ActivePerl doing when it "relocates" files during installation? Schwern 2009-11-21T02:42:55Z 2009-11-21T02:42:55Z If you move just the perl binary it will work, but if you move any of the libraries it won't be able to find them. Their location is hard coded in the binary. http://stackoverflow.com/questions/1768090/what-is-activeperl-doing-when-it-relocates-files-during-installation/1768345#1768345 Comment by Schwern on What is ActivePerl doing when it "relocates" files during installation? Schwern 2009-11-21T02:41:26Z 2009-11-21T02:41:26Z @Matt Last I looked, the technique is to configure the binary with the root of all the hard-coded paths to something like &quot;/xxxXXXxxxREPLACEMExxxXXXxxx&quot; and then do a search and replace on the binary with your new root. Its a little terrifying that it works. I don't know how applicable it is to all compilers and executable formats. http://stackoverflow.com/questions/1759960/buffer-size-in-c/1760038#1760038 Comment by Schwern on Buffer size in C Schwern 2009-11-19T21:23:11Z 2009-11-19T21:23:11Z @Roger Huh, I never made that connection. Donald Norman in &quot;How Long Is Noon&quot; related an argument with Henry Petroski about how 12 noon should be labeled. Petroski said it should be 12m which is consistent with a.m. (ante meridian) and p.m. (post meridian) and noon is the meridian. Its logically consistent and totally wrong. It only works you already think a certain way (and know what am/pm really mean). Not many people do. Everyone else will think it arbitrary and never form a gestalt about the interface (and in this case actively clash and think 12m is midnight). http://stackoverflow.com/questions/1759960/buffer-size-in-c/1760038#1760038 Comment by Schwern on Buffer size in C Schwern 2009-11-19T21:12:36Z 2009-11-19T21:12:36Z @Steve Right, fixed. http://stackoverflow.com/questions/1759991/regular-expressions-performance-boost-vs-perl Comment by Schwern on Regular expressions performance: Boost vs. Perl Schwern 2009-11-19T07:42:12Z 2009-11-19T07:42:12Z I'd use PCRE instead of trying to embed or call a Perl interpreter. I don't know about performance, but its going to be a whole lot simpler. Embedding a Perl interpreter is fraught with peril. PCRE is in wide use by major languages and utilities so it can't be all that bad. http://stackoverflow.com/questions/1759960/buffer-size-in-c/1759976#1759976 Comment by Schwern on Buffer size in C Schwern 2009-11-19T07:32:07Z 2009-11-19T07:32:07Z I've always wondered why the buffer size can't be determined from the pointer alone. It must be known by something or free() wouldn't work. Is there a technical reason why there couldn't be an &quot;int allocated_to(void *ptr)&quot; function? Is it just one of those holes in the standard C API? http://stackoverflow.com/questions/1759960/buffer-size-in-c/1760038#1760038 Comment by Schwern on Buffer size in C Schwern 2009-11-19T07:29:48Z 2009-11-19T07:29:48Z I pulled the bit about changing the calling convention. Not worth complicating the issue, memory allocation is complicated enough. http://stackoverflow.com/questions/1759960/buffer-size-in-c/1760092#1760092 Comment by Schwern on Buffer size in C Schwern 2009-11-19T07:28:18Z 2009-11-19T07:28:18Z @rpj Can't the caller just free it?