User Robert P - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T00:11:02Z http://stackoverflow.com/feeds/user/18097 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1568949/why-isnt-the-gcc-4-x-x-series-compilers-installed-by-mingw-by-default 2 Why isn't the gcc 4.x.x series compilers installed by MinGW by default? Robert P 2009-10-14T20:56:49Z 2009-11-18T15:05:39Z <p>Currently, <a href="http://www.mingw.org/" rel="nofollow">MinGW</a>'s only installs the 3.x.x series of the gcc compiler by default. However, it looks like the 4.x.x series of compilers have been out for some time, and as <a href="http://stackoverflow.com/questions/1151420/mingw-update-gcc-version-3-4-5-to-version-4-4">others have mentioned</a>, it seems to work just fine. Is there any reason why it hasn't moved to the 4.x.x versions yet, and any reason why I shouldn't use the newer versions of gcc?</p> http://stackoverflow.com/questions/1731089/how-do-i-get-started-writing-a-module-for-cpan 13 How do I get started writing a module for CPAN? Robert P 2009-11-13T18:44:07Z 2009-11-13T21:44:24Z <p>Right now, I have my own homegrown testing harness/directory structure/support doc strucure/distribution tools for my libraries. However, reading the blog post <a href="http://perlbuzz.com/2008/10/write-your-code-like-its-going-on-cpan.html" rel="nofollow">Write your code like it's going on CPAN</a>, it sounded like a good idea. Then it occurred to me, I'm really not sure how to do that.</p> <p>What are some good resources to get started making your own Perl packages in the CPAN-like structure?</p> http://stackoverflow.com/questions/1727623/sqlplus-inside-perl-script/1727659#1727659 9 Answer by Robert P for SQL*Plus inside Perl script Robert P 2009-11-13T07:17:08Z 2009-11-13T07:17:08Z <p>Check out the DBI module. In fact, there's a whole website dedicated to it: <a href="http://dbi.perl.org/" rel="nofollow">dbi.perl.org</a>. Also, check out <a href="http://search.cpan.org/~timb/DBI/DBI.pm" rel="nofollow">the CPAN module reference for DBI</a>.</p> <p>Here's a code example, straight from <a href="http://www.perl.com/pub/a/1999/10/DBI.html" rel="nofollow">the first DBI tutorial on google</a>:</p> <pre><code> use DBI; my $dbh = DBI-&gt;connect('DBI:Oracle:payroll') or die "Couldn't connect to database: " . DBI-&gt;errstr; my $sth = $dbh-&gt;prepare('SELECT * FROM people WHERE lastname = ?') or die "Couldn't prepare statement: " . $dbh-&gt;errstr; $sth-&gt;execute($lastname) # Execute the query or die "Couldn't execute statement: " . $sth-&gt;errstr; # Read the matching records and print them out while (@data = $sth-&gt;fetchrow_array()) { my $firstname = $data[1]; my $id = $data[2]; print "\t$id: $firstname $lastname\n"; } if ($sth-&gt;rows == 0) { print "No names matched `$lastname'.\n\n"; } $sth-&gt;finish; print "\n"; print "Enter name&gt; "; $dbh-&gt;disconnect; </code></pre> <p>Perl also has that EOF style multiline comment; you can make a long query like this:</p> <pre><code>my $query = &lt;&lt;'END_QUERY'; ${SQLPLUS_SETTINGS} select foo||'|'||bar ||'|'|| xyz from temp where dfg='some'; exit; END_QUERY </code></pre> http://stackoverflow.com/questions/1723371/error-when-instantiating-net-com-interop-class-via-classic-asp/1723772#1723772 0 Answer by Robert P for Error when instantiating .NET/COM interop class via classic ASP Robert P 2009-11-12T17:03:25Z 2009-11-12T17:15:54Z <p>If you can, try using your library from another dynamic, COM enabled language. If you don't know of one, here's a quick snippet that you can use, if you have perl handy. (If you don't, grab <a href="http://www.activestate.com/activeperl/" rel="nofollow">ActivePerl</a> to get started really quick)</p> <pre><code>use strict; use warnings; use Win32::OLE; my $object = Win32::OLE-&gt;new('my.object.1') or die "Unable to create my.object.1!"; if (my $error = Win32::OLE-&gt;LastError()) { die "Still got an error starting up: $error\n"; } print "Good!\n"; </code></pre> <p>Alternatively, if Python is your gig, grab and install <a href="https://sourceforge.net/projects/pywin32/" rel="nofollow">PyWin32</a> and try this:</p> <pre><code>try: import win32com.client as w32c from win32com.client import util except ImportError: print "\npywin32 package must be installed. Available https://sourceforge.net/projects/pywin32/\n" sys.exit() lib = w32c.dynamic.Dispatch("my.object.1") # error checking and more, yatta </code></pre> <p>If this works, then it's likely a configuration issue with your ASP app. If this doesn't, then it means the object that you're trying to create either a) isn't registered, or b) has a problem with the library. .NET dll's must be set up properly to export to COM. Was this .NET library one you created yourself?</p> http://stackoverflow.com/questions/1718946/boolean-logic-in-a-single-regular-expression-possible/1718953#1718953 2 Answer by Robert P for Boolean logic in a single regular expression - possible ? Robert P 2009-11-12T00:02:42Z 2009-11-12T00:09:43Z <p>use the <code>|</code> (pipe) feature:</p> <pre><code>^a|^b </code></pre> <p>Or, in extended formatting:</p> <pre><code>^a # starts with an A | # OR ^b # starts with a B </code></pre> http://stackoverflow.com/questions/1512047/is-there-anything-exciting-in-perl-5-11/1684574#1684574 1 Answer by Robert P for Is there anything exciting in perl 5.11? Robert P 2009-11-06T00:14:58Z 2009-11-06T00:14:58Z <p>As of <a href="http://search.cpan.org/~jesse/perl-5.11.1/pod/perl5111delta.pod" rel="nofollow">Perl 5.11.1</a>, Perl now has module versioning built in. From the perl5111delta: </p> <blockquote> <p><strong>Add <code>package NAME VERSION</code> syntax</strong></p> <p>This new syntax allows a module author to set the $VERSION of a namespace when the namespace is declared with 'package'. It eliminates the need for our $VERSION = ... and similar constructs. E.g.</p> <pre><code> package Foo::Bar 1.23; # $Foo::Bar::VERSION == 1.23 </code></pre> <p>There are several advantages to this:</p> <ul> <li><code>$VERSION</code> is parsed in <em>exactly</em> the same way as <code>use NAME VERSION</code></li> <li><code>$VERSION</code> is set at compile time</li> <li>Eliminates <code>$VERSION = ...</code> and <code>eval $VERSION</code> clutter</li> <li>As it requires VERSION to be a numeric literal or v-string literal, it can be statically parsed by toolchain modules without <code>eval</code> the way MM->parse_version does for $VERSION = ...</li> <li>Alpha versions with underscores do not need to be quoted; static parsing will preserve the underscore, but during compilation, Perl will remove underscores as it does for all numeric literals</li> </ul> <p>It does not break old code with only <code>package NAME</code>, but code that uses <code>package NAME VERSION</code> will need to be restricted to perl 5.11.X or newer This is analogous to the change to <code>open</code> from two-args to three-args. Users requiring the latest Perl will benefit, and perhaps N years from now it will become standard practice when Perl 5.12 is targeted the way that 5.6 is today.</p> </blockquote> <p>As an aside, these small, consistent, incremental changes continue to get my excitement up for the future of Perl.</p> http://stackoverflow.com/questions/1684059/can-i-use-perls-map-with-an-array-slice/1684179#1684179 8 Answer by Robert P for Can I use Perl's map with an array slice? Robert P 2009-11-05T22:43:02Z 2009-11-05T22:43:02Z <p>Found it:</p> <p>Here's a bit of code that emulates what <em>should</em> happen:</p> <pre><code>use strict; use warnings; package Text; sub new { my $class = shift; my $text = shift; return bless { TEXT =&gt; $text }, $class; } sub as_trimmed_text { my $self = shift; my $text = $self-&gt;{TEXT}; $text =~ s/^\s*(.*?)\s*$/$1/; return $text; } package main; my @texts = ( Text-&gt;new(' foo '), Text-&gt;new(' bar '), Text-&gt;new(' baz ')); my @trimmed = map { $_-&gt;as_trimmed_text() } @texts[1, 2]; print "Trimmed were: ", join(',', map { "'$_'" } @trimmed); </code></pre> <p>This works, and works fine; I get:</p> <pre><code>Trimmed were: 'bar','baz' </code></pre> <p>But if I replace the map with this line:</p> <pre><code>my @trimmed = map { $_-&gt;as_trimmed_text() } @texts[2, 3]; </code></pre> <p>All of a sudden I get this output:</p> <pre><code>Can't call method "as_trimmed_text" on an undefined value </code></pre> <p>This is because '3' is outside the range of valid values in @texts, so it autovivifies a new entry, and makes it <code>undef</code>. Then, your map does </p> <pre><code>undef-&gt;as_trimmed_output() </code></pre> <p>which barfs. I'd check your array slice again, and make sure that you aren't grabbing values outside the actual indexes available, and barring that, verify that you are actually processing HTML::Element members with that <code>map</code>. A quick <code>Data::Dumper::Dumper</code> on the values in <code>@columns</code> will help immensely.</p> <p>For example, if you then change your array to contain</p> <pre><code>my @texts = ( Text-&gt;new(' foo '), Text-&gt;new(' bar '), ' baz '); </code></pre> <p>and try to run it, I now get your error:</p> <pre><code>Can't call method "as_trimmed_text" without a package or object reference at map.pl </code></pre> <p>So, double check to make sure the contents of your array are actually all blessed instances of the class you're trying to call the method of.</p> http://stackoverflow.com/questions/1646597/why-the-net-framework-class-library-is-not-open-source/1646648#1646648 3 Answer by Robert P for Why the .NET Framework Class Library is not Open Source? Robert P 2009-10-29T21:25:00Z 2009-10-29T21:25:00Z <p>It's not that they are hiding anything; .NET is a product that Microsoft makes, owns, and sells. Some of the .NET framework has been reproduced independently outside of Microsoft (eg, Mono) and some parts have open licenses, but many parts are very, very Microsoft and Windows specific, and have cost Microsoft a lot of time, money, and effort to develop (such as WPF and associated technologies.) They're free to do what they please with it. </p> <p>In addition, by not placing it under an open source license, they're free to do whatever they like to it the future, confident that no one outside of Microsoft has had access to it. They can maintain their own QA policies and practices, without worrying that someone has poisoned the code and it was missed. </p> <p>They also don't have need nor has any real inclination to let anyone else mess with their libraries that they have to support. With open source, there's no guarentee that the author will help you fix it in the future. Microsoft makes a large chunk of money off support contracts that guarentee exactly that promise. By keeping it closed source, they have very tight control over the whole fix/repair/maintenance process.</p> <p>They can also keep the framework exactly the way they want. With an open source project, anyone could take the project and make changes to it - small ones (bugfixes), medium ones (slight modification of libraries), or large ones (forks of the entire codebase). That would create a fractured framework of code associated with them, but not written or even designed by them. When it's closed source, all mistakes are theirs to own, and all successes are theirs to own as well.</p> <p>Then, there may be licensing deals on top of all the other concerns (contracts with employees, outside workers, and so on) that would restrict or prevent parts or all of the library from being released.</p> http://stackoverflow.com/questions/1633616/how-do-you-handle-malformed-html-in-perl/1634291#1634291 1 Answer by Robert P for How do you handle malformed HTML in Perl? Robert P 2009-10-27T23:26:05Z 2009-10-27T23:26:05Z <p>You could rephrase the question like this:</p> <blockquote> <p>I'm interested in a parser that could take a malformed <del>HTML page</del> C source, and turn it into well formed <del>HTML</del> C source before performing some <del>XPath queries</del> compilation and linking on it. Do you know of any?</p> </blockquote> <p>Now the question may be a bit more obvious: it's not going to be easy. If it's truly malformed HTML, you may need to do the work by hand until it can be fed into an HTML parser. Then, you can use any of the other modules presented here to do the work. It's unlikely though that you could ever programatically translate raw HTML into strictly valid xhtml.</p> http://stackoverflow.com/questions/1634042/can-i-access-a-static-method-in-a-dynamically-specified-class-in-perl/1634223#1634223 7 Answer by Robert P for Can I access a static method in a dynamically specified class in Perl? Robert P 2009-10-27T23:13:38Z 2009-10-27T23:13:38Z <p>Yup! The way to do it with strictures is to use <a href="http://perldoc.perl.org/UNIVERSAL.html" rel="nofollow"><code>can</code></a>.</p> <pre><code>package Foo::Bar; use strict; use warnings; sub baz { return "Passed in '@_' and ran baz!"; } package main; use strict; use warnings; my $class = 'Foo::Bar'; if (my $method = $class-&gt;can('baz')) { print "yup it can, and it "; print $method-&gt;(); } else { print "No it can't!"; } </code></pre> <p><code>can</code> returns a reference to the method, undef / false. You then just have to call the method with the dereferene syntax.</p> <p>It gives:</p> <pre> > perl foobar.pl yup it can, and it Passed in '' and ran baz! </pre> http://stackoverflow.com/questions/1616217/using-perl-with-compiled-c-library/1616445#1616445 3 Answer by Robert P for Using Perl with compiled C library? Robert P 2009-10-23T23:29:02Z 2009-10-23T23:29:02Z <p>If you chose not to go the inline-C route, Perl has <a href="http://perldoc.perl.org/functions/socket.html" rel="nofollow">built in support for sockets</a>, <a href="http://perldoc.perl.org/perlipc.html#Sockets%3a-Client%2fServer-Communication" rel="nofollow">A great tutorial on doing IPC</a>, and a few <a href="http://perldoc.perl.org/IO/Socket.html" rel="nofollow">objects</a> to help with sockets in general (plus, <a href="http://www.google.com/search?q=perl+socket&amp;ie=utf-8&amp;oe=utf-8&amp;aq=t&amp;rls=org.mozilla%3Aen-US%3Aofficial&amp;client=firefox-a" rel="nofollow">google</a> will provide you many other tutorials on using perl sockets). If you're able/willing to re-implement the sockets communication part, you may not even need the C/C++.</p> http://stackoverflow.com/questions/1573158/is-this-the-way-to-go-about-building-perl-subroutines/1573328#1573328 9 Answer by Robert P for Is this the way to go about building Perl subroutines? Robert P 2009-10-15T16:00:32Z 2009-10-15T16:42:02Z <p>Don't use the <code>$foo ne undef</code> construct. Operators in Perl are what's known as "context sensitive". By using certain operators, you introduce certain contexts. <code>ne</code>, <code>eq</code>, <code>lt</code>, <code>gt</code>, <code>le</code>, <code>ge</code> are all "string" operators, treating the scalars on either side as strings, whereas <code>==</code>, <code>!=</code>, <code>&lt;</code>, <code>&gt;</code>, <code>&lt;=</code>, <code>&gt;=</code> are numeric operators, treating the object on either side as a number. </p> <p>However, if you're testing for undef, it really doesn't make sense that something undefined is a number or a string, so they have an operator just for that kind of test: <a href="http://perldoc.perl.org/functions/defined.html" rel="nofollow"><code>defined</code></a></p> <p>You can test if something is defined simply by doing</p> <pre><code>if (defined $foo) { # my cool logic on $foo here } </code></pre> http://stackoverflow.com/questions/1573158/is-this-the-way-to-go-about-building-perl-subroutines/1573389#1573389 2 Answer by Robert P for Is this the way to go about building Perl subroutines? Robert P 2009-10-15T16:09:26Z 2009-10-15T16:28:29Z <p><strong>Array Indexing</strong></p> <p>Array access, like other things in Perl, is context sensitive. Think of the sigil that gets attached to the name as a 'reminder' to you about what you're trying to access or use at the moment. Whenever you see the <code>$</code>, that means you're trying to get a single scalar value. Whenever you see a <code>@</code>, that means you're accessing a list, and <code>%</code> of course means a key/value hash pair. So, when you access your array like this:</p> <pre><code>@_[1] </code></pre> <p>You're asking for a list, containing a single element. This feature lets you get multiple values from an array at once, but when only accessing one value, it cause problems in some contexts, such as assignment. So, when accessing a single array element, you want to always use the scalar context:</p> <pre><code>$_[1] </code></pre> http://stackoverflow.com/questions/1573158/is-this-the-way-to-go-about-building-perl-subroutines/1573517#1573517 3 Answer by Robert P for Is this the way to go about building Perl subroutines? Robert P 2009-10-15T16:27:41Z 2009-10-15T16:27:41Z <p><strong><code>@_</code> Unpacking</strong></p> <p>Generally, you always want to unpack @_ before you do any other processing in your subroutine. This makes it much, much clearer to users, other maintainers and yourself in the future about how to use your sub. By using <code>@_</code> directly, it's very hard to figure out what needs to be passed, just from the arguments given. They don't have any meaningful names, making it even harder to determine their purpose, and you have magic constants everywhere - normally a bad thing overall!</p> <p>Your best bet is to get the variables into meaningfully named scalars right away, before you do anything else.</p> <p>For one argument subroutines, a common solution is to use <a href="http://perldoc.perl.org/functions/shift.html" rel="nofollow"><code>shift</code></a>. This pulls the first element of an array off, and returns it (kind of like the opposite of <code>pop</code>.) If not given an array, and you're in a subroutine, it pulls it from the @_ array. So, you can do</p> <pre><code>sub mysub { my $foo = shift; } </code></pre> <p>for any one argument subroutine.</p> <p>However, what if you have more? List context assignment, to the rescue! It's possible to assign many variables at once, using a list assignment. You can do</p> <pre><code>sub myothersub { my ($foo, $bar, $baz) = @_; } </code></pre> <p>And <code>$foo</code>, <code>$bar</code>, and <code>$baz</code> will be assigned the value in the 0, 1, and 2 indexes of @_, respectively. Well, what happens if there isn't anything in the 0, 1 or 2 index? They still get assigned - they become <code>undef</code>! Then you can check for undef as mentioned elsewhere in this question.</p> http://stackoverflow.com/questions/1573158/is-this-the-way-to-go-about-building-perl-subroutines/1573478#1573478 5 Answer by Robert P for Is this the way to go about building Perl subroutines? Robert P 2009-10-15T16:20:51Z 2009-10-15T16:20:51Z <p><strong>Perl's switch statement: given/when</strong></p> <p>Perl, as of 5.10 and above, has a fantastic switch statement built in, called [<code>given</code>]. This is roughly equivalent to the <code>switch</code> statement in C, but much more versatile. To enable this feature, you need to add a line at the top of your script:</p> <pre><code>use 5.010; </code></pre> <p>This enables all the perl 5.10 features, including switch (and <code>say</code>, which works like <code>print</code> but automatically adds a "\n" at the end.) You can use it like this:</p> <pre><code>my $foo = get_foo(); my $nothing = 0; given($foo) { when (undef) { say "got an undefined value!"; } when ([1,3,5,6,8]) { say "was 1, 3, 5, 6, or 8"; } when (/^abc/) { say "was a string starting with abc"; } when ($_ == 4) { say "It was 4!!!"; } when ($_ &gt; 100) { say "Greater than 100"; } default { $nothing = 1; } } </code></pre> <p>The variable passed to given automatically gets put into <code>$_</code> inside the given code, allowing you to compare against it. So, in your case, it would look like this (fixing the @<em>[] to $</em>[] issue):</p> <pre><code>given ($_[1]) { when ($_ == 1) { $str =~ s/\b(\w)/\u$1/g } when ($_ == 2) { $str = lc($str); $str =~ s/(\w)\b/\u$1/g } when ($_ == 3) { $str =~ s/(\w)\b/\u$1/g; } default { croak "No overloaded method of ucwords() takes '$_'." } } </code></pre> http://stackoverflow.com/questions/1573158/is-this-the-way-to-go-about-building-perl-subroutines/1573355#1573355 3 Answer by Robert P for Is this the way to go about building Perl subroutines? Robert P 2009-10-15T16:04:13Z 2009-10-15T16:04:13Z <p><strong><code>die</code></strong></p> <p><code>die</code>, like other perl builtins, does not need, and generally should not have parentheses. However, <code>die</code> has a big brother that most people use these days, called</p> <p><a href="http://perldoc.perl.org/Carp.html" rel="nofollow"><code>croak</code></a></p> <p>Do:</p> <pre><code>use Carp; </code></pre> <p>and then</p> <pre><code>croak "My error here!"; </code></pre> <p>Croak works just like die, but generally adds more useful information to the error message than <code>die</code> does, such as the line that the error occurred on relative to the caller.</p> http://stackoverflow.com/questions/1557189/what-features-would-you-like-added-changed-in-the-net-framework/1557474#1557474 8 Answer by Robert P for What features would you like added/changed in the .NET Framework? Robert P 2009-10-12T23:21:31Z 2009-10-13T17:10:49Z <h1><a href="http://stackoverflow.com/questions/668188/the-state-of-linkers-for-net-apps-aka-please-sir-may-i-have-a-linker-2009-ed">Give me a Linker</a>!</h1> <p>I want to be able to hand out a stand-alone app that does not rely on a particular set of libraries to be installed on the person's computer. I don't mind if the app remains a managed app in the process, but I'm tired of a 250 mb bootstrapper being the "solution" for distributing a tiny application that uses one one-hundredth of the APIs provided to me.</p> <p>@Chris S: dotnetfx35.exe is 231 mb; that's the latest full installer I have. Depending on what you have installed already, it may not need all the data in there (in fact, it includes x86, x64, and ia64 versions of files). You could cut out the ia64 versions to save yourself some space ( the .exe can be decompressed and messed around with - Microsoft has a guide or two on the MSDN about it) but the installer still tries to phone home to Microsoft to make sure it has all the latest versions. (There's supposed to be a way to disable it, but that's not recommended.)</p> <p>@FacitiusVir: The client profile has significant limitations: missing many libraries (basically, unless you're only doing WPF, it's no good), doesn't actually count as a .NET install (other apps won't sense it as a .NET install) and only works for Only Windows XP SP2 or SP3 and x86 architecture (sorry, a whole lot of people!) As soon as you get in an environment that fails to meet any of those situations, you're SOL. And then, I'm STILL distributing 24 extra megs for my app, that may be redundant when they're forced to get the entire client for X library not included in the Client Profile. To top it off, the client installer still needs to connect to the internet to install. That's unacceptable in many environments. I don't want ANY app I write "phoning home" during install - there are too many issues with trying to make internet connections through various types of firewalls to be a reasonable solution for a stable, simple to install program. I want to make stuff that just works, not stuff that happens to work if you're in a certain configuration (and if not, you have to create some file in a special place with a special name you looked up and yatta yatta.)</p> <p>Now, with the <a href="http://msdn.microsoft.com/en-us/library/cc656912%28VS.100%29.aspx" rel="nofollow">.NET 4.0 Client installer</a>, things are looking up: it now installs for every platform (that matters), you are allowed to have a local package installer, and it's actually part of the .NET framework now and can be serviced separately. That solves many of my particular beefs with it. As long as you're making pure .NET forms apps, you'll continue to be fine. However, as before, step outside that box a little and you're back in 231 meg land.</p> http://stackoverflow.com/questions/1556668/recommendations-for-perl-to-python-interoperation/1556843#1556843 1 Answer by Robert P for Recommendations for perl-to-python interoperation? Robert P 2009-10-12T20:47:34Z 2009-10-12T20:47:34Z <p>I'd avoid inter-language calls if possible; fragility and massive increases in dependencies await you down this road. However, there is...</p> <p><a href="http://search.cpan.org/perldoc/Inline%3A%3APython" rel="nofollow">Inline::Python</a></p> <p>If python must be used, the <code>Inline::*</code> series of modules have been generally well received. This lets you write python inside a perl script. You still have to write perl but it would let you use python libraries inside perl scripts. It will make things more difficult to debug, though.</p> http://stackoverflow.com/questions/1556724/how-can-i-make-an-http-get-request-from-perl/1556771#1556771 3 Answer by Robert P for How can I make an HTTP GET request from Perl? Robert P 2009-10-12T20:36:10Z 2009-10-12T20:36:10Z <p>As more general answer, Perl is a perfectly fine language for doing HTTP requests, as are a host of other languages. If you're familiar with Perl, don't even hesitate; there are many excellent libraries available to do what you need.</p> http://stackoverflow.com/questions/1507239/how-do-i-add-an-environmental-variable-but-not-remove-it-if-it-already-existed-w 0 How do I add an environmental variable, but not remove it if it already existed with WiX? Robert P 2009-10-02T00:45:12Z 2009-10-09T18:24:17Z <p>Right now, I can add an environmental variable on install with the Environment tag in WiX. Here's an example:</p> <pre><code>&lt;Environment Id="LibPath" Action="set" Name="PATH" Part="last" Separator=";" System="yes" Value="[INSTALLDIR]" /&gt; </code></pre> <p>However, sometimes, the environmental variable has already been installed on the client. In this case, that environmental variable must remain upon uninstall. However, if they did <em>not</em> have it already, we <em>do</em> want to remove it. After looking over the <a href="http://wix.sourceforge.net/manual-wix3/wix%5Fxsd%5Fenvironment.htm" rel="nofollow">wix documentation for Environment</a>, I'm not sure this is possible. It looks like I have two options:</p> <ol> <li>Leave the environmental variable polluting the name space, every time, on uninstall.</li> <li>Uninstall the variable, no matter what, even if I didn't install it.</li> </ol> <p>Is this the case, or am I missing something? I've been looking, but it seems you either get the option to pollute, or remove always. Neither seems like the right solution.</p> http://stackoverflow.com/questions/1539499/which-lesser-known-cpan-modules-have-you-found-to-be-real-gems/1541301#1541301 3 Answer by Robert P for Which lesser-known CPAN modules have you found to be real gems? Robert P 2009-10-09T00:40:52Z 2009-10-09T00:40:52Z <p><a href="http://search.cpan.org/perldoc/Data%3A%3ADumper" rel="nofollow"><code>Data::Dumper</code></a></p> <p>I don't know how 'obscure' it really is, but I find it to be a fantastic debugging tool. It lets you expose almost everything there is in a complex data structure, and formats it all nicely. As an added bonus, its output has the handy property of being the Perl code required to rebuild said data structure with an <code>eval</code>.</p> http://stackoverflow.com/questions/1534195/is-the-recent-trend-toward-widescreen-169-computer-monitors-a-plus-or-minus-fo/1534226#1534226 8 Answer by Robert P for Is the recent trend toward widescreen (16:9) computer monitors a plus or minus for programmers? Robert P 2009-10-07T21:13:36Z 2009-10-07T21:16:22Z <p>1) Rotating monitors.</p> <p>These negate almost all of the problems you describe. Most of the folks I work with have 19" widescreen monitors, and usually one or both have been rotated into the vertical position. This gives them <em>increased</em> room for everything.</p> <p>2) Tool panels.</p> <p>Many IDEs these days have the ability to move tool panels to any side of the screen. I find that I keep more of them open with my widescreen monitors than without, including search results or errors.</p> <p>3) Tabs.</p> <p>The wider the monitor, the more tabs you get to see. This is a good thing.</p> <p>4) Larger monitors.</p> <p>You can obtain the same kind of vertical space as you could before, but you simply need to get a larger monitor. I moved up to a 24" widescreen to maintain the 1200 pixel height for my primary display at home, and don't regret it one bit. I look forward to getting a 30" sometime in the future, so I can have at least 1600 pixels in height. Ideally, this would even let me have two entire editor windows open on one screen (and with windows 7, that would be a breeze).</p> <p>5) Tough luck.</p> <p>Widescreen monitors are here to stay. Our eyes are better able to absorb more information horizontally than they are vertically, so this transition will benefit humankind overall in the long run. Sit back, enjoy the ride!</p> http://stackoverflow.com/questions/1528520/recommended-method-for-testing-regular-expressions/1528530#1528530 2 Answer by Robert P for Recommended method for testing regular expressions? Robert P 2009-10-06T22:58:01Z 2009-10-06T23:13:30Z <p>A great program for helping you write regular expressions would be <a href="http://perl.org" rel="nofollow">Perl</a>; you can try out a regex to see if it matches very easily:</p> <pre><code>perl -e 'print "yes!\n" if "string" =~ /regex to test/' </code></pre> <p>See <a href="http://stackoverflow.com/questions/488601/how-do-you-unit-test-regular-expressions/488640#488640">this SO question on unit testing regexes</a> for more information on testing regular expressions in general.</p> http://stackoverflow.com/questions/1528520/recommended-method-for-testing-regular-expressions/1528563#1528563 0 Answer by Robert P for Recommended method for testing regular expressions? Robert P 2009-10-06T23:06:09Z 2009-10-06T23:06:09Z <p>If you're up for buying a tool, <a href="http://www.activestate.com/komodo/" rel="nofollow">Komodo</a>, by ActiveState is a great editor for scripting languages, and comes with a mighty fine regex helper. It's cross platform, but not free. It's helped me out of a few tight situations when I didn't quite understand why things weren't parsing and has support for several types of regexen varieties.</p> http://stackoverflow.com/questions/1528520/recommended-method-for-testing-regular-expressions/1528540#1528540 2 Answer by Robert P for Recommended method for testing regular expressions? Robert P 2009-10-06T23:00:43Z 2009-10-06T23:00:43Z <p>Unfortunately, if you're running linux, you won't have access to one of the best ones out there: <a href="http://www.regexbuddy.com/" rel="nofollow">Regex Buddy</a>.</p> <blockquote> <p>RegexBuddy is your perfect companion for working with regular expressions. Easily create regular expressions that match exactly what you want. Clearly understand complex regexes written by others. Quickly test any regex on sample strings and files, preventing mistakes on actual data. Debug without guesswork by stepping through the actual matching process. Use the regex with source code snippets automatically adjusted to the particulars of your programming language. Collect and document libraries of regular expressions for future reuse. GREP (search-and-replace) through files and folders. Integrate RegexBuddy with your favorite searching and editing tools for instant access. (from their website)</p> </blockquote> http://stackoverflow.com/questions/1526957/why-does-php-5-use-contruct-instead-of-classname-as-constructor/1526967#1526967 2 Answer by Robert P for Why does PHP 5 use __contruct() instead of className() as constructor? Robert P 2009-10-06T17:28:07Z 2009-10-06T17:28:07Z <p>Because php5 wanted to be more like python.</p> <p>I kid, I kid...</p> <p>Having a standard method for standard actions, like construction, is a reasonable solution. It's the same reason that in C# classes, when you extend a class, you use <code>base</code> for calling base class constructors instead of a named object: it simplifies code and makes maintenance easier.</p> http://stackoverflow.com/questions/1521563/should-i-use-autobox-in-perl 8 Should I use autobox in Perl? Robert P 2009-10-05T18:11:15Z 2009-10-06T03:38:49Z <p>For those unaware of Perl's <a href="http://search.cpan.org/perldoc/autobox" rel="nofollow"><code>autobox</code></a>, it is a module that gives you methods on built in primitives, and lets you even override them.</p> <pre><code># primitives 'a string'-&gt;toupper(); 10-&gt;to(1); # returns [10, 9, 8, 7, 6, 5, 4, 3, 2, 1] # Arrays, array refs [qw(A B C D E)]-&gt;for_each( sub { ... } ); @array-&gt;length() # Hashes, hash refs { key =&gt; 'value', key2 =&gt; 'value2' }-&gt;values() %hash-&gt;keys() # Even specify your own base class... use autobox SCALAR =&gt; 'Foo'; </code></pre> <p>It overall makes methods on built in types feel more like objects, simplifying some tasks and making others seem more obvious.</p> <p>However...</p> <p>the <a href="http://search.cpan.org/perldoc/autobox" rel="nofollow"><code>autobox</code></a> docs say that there's <a href="http://search.cpan.org/perldoc/autobox#Performance" rel="nofollow">performance penalties</a>, some more than simply calling the method on the object, much more than the standard syntax. <a href="http://search.cpan.org/perldoc/autobox#eval%5FEXPR" rel="nofollow">And then, there's a few caveats about its use in <code>eval</code>s (specifically, string evals) that might, in some circumstances, cause issues.</a> It also looks like it doesn't come standard with many Perl distros.</p> <p>Is it ever really worth it to use autobox?</p> http://stackoverflow.com/questions/1520900/what-is-the-perlish-way-to-iterate-from-item-n-to-the-end-of-an-array/1521053#1521053 7 Answer by Robert P for What is the Perlish way to iterate from item n to the end of an array? Robert P 2009-10-05T16:25:46Z 2009-10-05T16:35:37Z <p>I would <strong>highly</strong> recommend using <a href="http://perldoc.perl.org/Getopt/Long.html" rel="nofollow">Getopt::Long</a> for parsing command line arguments. It's a standard module, it works awesome, and makes exactly what you're trying to do a breeze.</p> <pre><code>use strict; use warnings; use Getopt::Long; my $first_option = undef; my $second_option = undef; GetOptions ('first-option=s' =&gt; \$first_option, 'second-option=s' =&gt; \$second_option); die "Didn't pass in first-option, must be xxxyyyzzz." if ! defined $first_option; die "Didn't pass in second-option, must be aaabbbccc." if ! defined $second_option; foreach my $arg (@ARGV) { ... } </code></pre> <p>This lets you have a long option name, and automatically fills in the information into variables for you, and allows you to test it. It even lets you add extra commands later, without having to do any extra parsing of the arguments, like adding a 'version' or a 'help' option:</p> <pre><code># adding these to the above example... my $VERSION = '1.000'; sub print_help { ... } # ...and replacing the previous GetOptions with this... GetOptions ('first-option=s' =&gt; \$first_option, 'second-option=s' =&gt; \$second_option) 'version' =&gt; sub { print "Running version $VERSION"; exit 1 }, 'help' =&gt; sub { print_help(); exit 2 } ); </code></pre> <p>Then, you can invoke it on the command line using <code>-</code>, <code>--</code>, the first letter, or the entire option, and <code>GetOptions</code> figures it all out for you. It makes your program more robust and easier to figure out; it's more "guessable" you could say. The best part is you never have to change your code that processes <code>@ARGV</code>, because <code>GetOptions</code> will take care of all that setup for you.</p> http://stackoverflow.com/questions/1510530/should-i-use-a-lexical-directory-handle-with-opendir-in-perl 5 Should I use a lexical directory handle with opendir in Perl? Robert P 2009-10-02T16:15:37Z 2009-10-03T18:53:36Z <p>Almost universally when people post questions on SO (or elsewhere) about Perl and reading from files, if any code that involves an old-style open</p> <pre><code>open FH, "&gt;file.txt" or die "Can't open for write, $!"; # OLD way, do not use! </code></pre> <p>gets yelled at for not using a lexical filehandle. As we all know,</p> <pre><code>open my $fh, "&gt;", "file.txt" or die "Can't open for write, $!"; # new hotness </code></pre> <p>is the proper way to open a file handle in modern Perl. What about directory handles? In a few recent SO questions, people have posed questions that involve <a href="http://perldoc.perl.org/functions/opendir.html" rel="nofollow"><code>opendir</code></a>, and posted code like</p> <pre><code>opendir DIR, "/directory" or die "Can't get the directory, wtf?! $!"; # ??? </code></pre> <p>The <a href="http://perldoc.perl.org/functions/readdir.html" rel="nofollow">perldoc pages</a> show </p> <pre><code>opendir(my $dh, $some_dir) || die "can't opendir $some_dir: $!"; </code></pre> <p>as the example.</p> <p>Should we be suggesting to folks to use a lexical directory handle for opendir as well?</p> http://stackoverflow.com/questions/1480081/where-is-the-source-for-nimans-13-minimally-sufficient-commandments 11 Where is the source for Niman's 13 Minimally Sufficient Commandments? Robert P 2009-09-26T00:28:54Z 2009-10-03T10:41:01Z <p>I have a page (page 1), dated February 2, 1989 that my former boss presented to me, outlining Niman's 13 Minimally Sufficient Commandments for programming. (He recognized that they were dated, making this more of an archaeology piece than a modern set of guidelines.) If you haven't seen them, they are as follows:</p> <ol> <li>Thou shalt adequately comment thy code in order to explain what thou intendest. Man does not think by mnemonics alone.</li> <li>Thou shalt equate numeric constants to meaningful symbol names. Speak clearly and avoid pagan icons.</li> <li>Thou shalt describe all inputs and outputs in thy modules. Be kind to thy software brethren and sistren who may have to maintain thy modules.</li> <li>Thou shalt adequately describe thy revisions. It is a sin to expect your peeren to be mind-readers. Mind-reading is a sin anyway.</li> <li>Thou shalt provide pseudocode explanations of thy assembly code. Verily, assembly is not Cobol.</li> <li>Thou shalt have only one entry- and one exit-point per module. He who has many entry- and exit-points shall expect their bodies to develop same.</li> <li>Thou shalt design thy code prior to developing it. Verily, indeed.</li> <li>Thou shalt conduct reviews of thy code with thy peeren. Blessed be the meek, for they shall inherit the object code.</li> <li>Thou shalt document thy design and make the documentation available to all who maintain the code. Verily, he who refuses shalt debug forth operating systems forever in hell.</li> <li>Thou shalt be able to accept meaningful criticism of they code. If thou art ashamed of thy code, thou should become a professional bowler.</li> <li>Thou shalt throughly (sic) test thy code prior to placing it into library control. One part left out of the Bible was where Job was tested by God by having to debug a large 8096 assembly language program that was part of a disel engine controller. The entire thing was not tested before release. To make things worse, Job had to use Intel tools.</li> <li>Thou shalt avoid the use of global data structures, wherever possible. Towers shalt be named Babel, programs should not.</li> <li>Thou shalt use high-level language when thy assembly programmers cannot match the efficiency of optimally-compiled, late twentieth century code. Beware of false gods who think that assembly is always more efficient (with respect to speed and size) than what good compilers can produce. Thou must be very good with design as well as coding to really take advantage of assembly language.</li> </ol> <p>I've scoured the internet has revealed nothing as to the source of these commandments, or that of Niman, and it's been killing me trying to find out more about this and any other bits he might have had to say. The only other clue I have is that in the lower left, there are the initials "DEN" - I assume N is for Niman, but I have nothing else to identify the text. So,</p> <p>A. Who is Niman? (Programmer? Teacher? Consultant? Random guy at a company?)</p> <p>B. What was this page from? (an old programming guide? some company manual? Some BBS back in the day? )</p> <p>C. Where's the rest of it? (Is there more? What else is there? Was this a stand alone thing?)</p> <p>In response to the comments, my boss has since passed on, but before that, he was in the biz for a long, long time, greybeard and all. By the color of the paper, I'm fairly certain that the date (1989) is an roughly an date of when it was printed.</p> http://stackoverflow.com/questions/1825479/should-i-learn-perl-as-a-web-developer/1825714#1825714 Comment by Robert P on Should I learn Perl as a web developer? Robert P 2009-12-02T17:16:03Z 2009-12-02T17:16:03Z Perl has many great things to offer the average user in addition to the &quot;funky syntax.&quot; Just see any of the other answers here. http://stackoverflow.com/questions/1204381/silverlight-and-com-interop/1204400#1204400 Comment by Robert P on Silverlight and COM Interop Robert P 2009-12-02T17:12:07Z 2009-12-02T17:12:07Z Except, that it's not quite true for the latest Silverlight; Silverlight 4 has COM interop now. http://stackoverflow.com/questions/1825479/should-i-learn-perl-as-a-web-developer Comment by Robert P on Should I learn Perl as a web developer? Robert P 2009-12-02T17:08:57Z 2009-12-02T17:08:57Z Also, I'd say this is not a duplicate of the PHP vs CGI question - he's not asking about a comparison with a particular technology, but why perl might be a great technology to use for web development. There's much more than CGI out there when it comes to Perl (as made evident by answers here.) http://stackoverflow.com/questions/1825479/should-i-learn-perl-as-a-web-developer Comment by Robert P on Should I learn Perl as a web developer? Robert P 2009-12-02T17:07:28Z 2009-12-02T17:07:28Z andy: one way to prevent questions like this from being closed (eg, ones that are similar to others that have been posted before), referring to previous ones (usually with a link) and stating the differences helps a lot. http://stackoverflow.com/questions/1825479/should-i-learn-perl-as-a-web-developer Comment by Robert P on Should I learn Perl as a web developer? Robert P 2009-12-01T18:23:25Z 2009-12-01T18:23:25Z This is not an exact duplicate. The other question doesn't even have a single answer about Catalyst, or Mojo, or hell, even CGI. It's certainly a different context. http://stackoverflow.com/questions/1783631/how-can-i-make-perls-filefind-faster/1783662#1783662 Comment by Robert P on How can I make Perl's File::Find faster? Robert P 2009-11-23T21:27:59Z 2009-11-23T21:27:59Z Don't you mean <code>/[Ll]ib/</code>? <code>[L|l]</code> is (roughly) equivalent to <code>(?:L|\||l)</code>, not <code>(?:L|l)</code>. http://stackoverflow.com/questions/1779694/what-is-the-shortest-source-code-you-have-seen-to-do-a-complex-task/1780567#1780567 Comment by Robert P on What is the shortest source code you have seen to do a complex task? Robert P 2009-11-23T21:20:46Z 2009-11-23T21:20:46Z C'mon, I'm sure the strings are unicode here...copy and paste away! :) http://stackoverflow.com/questions/1770427/code-golf-what-is-the-shortest-program-that-compiles-and-crashes/1771485#1771485 Comment by Robert P on Code-Golf: What is the shortest program that compiles and crashes? Robert P 2009-11-21T00:59:29Z 2009-11-21T00:59:29Z and sadly, you still haven't: command line switches count against your strokes. :) http://stackoverflow.com/questions/1752414/how-to-reverse-a-string-in-go/1752496#1752496 Comment by Robert P on How to reverse a string in Go? Robert P 2009-11-18T00:10:35Z 2009-11-18T00:10:35Z I suspect that this will fail spectacularly on anything other than ASCII characters. http://stackoverflow.com/questions/1751098/are-there-any-drawbacks-to-interpolation-in-perl/1751166#1751166 Comment by Robert P on Are there any drawbacks to interpolation in Perl? Robert P 2009-11-17T22:54:07Z 2009-11-17T22:54:07Z Almost...if $, is set, then it might not be the same. But most people don't mess with $, anyway. :) http://stackoverflow.com/questions/1736762/what-programming-language-and-application-is-the-best-to-use-in-web-development Comment by Robert P on What programming language and application is the best to use in web development? Robert P 2009-11-15T06:19:47Z 2009-11-15T06:19:47Z Try &quot;web development suggestion&quot; or &quot;web language suggestion&quot; in the search bar for many, many more. http://stackoverflow.com/questions/1736762/what-programming-language-and-application-is-the-best-to-use-in-web-development Comment by Robert P on What programming language and application is the best to use in web development? Robert P 2009-11-15T06:18:54Z 2009-11-15T06:18:54Z And another: <a href="http://stackoverflow.com/questions/1040644/selecting-a-programming-language-for-easy-web-development-with-good-ide" rel="nofollow" title="selecting a programming language for easy web development with good ide">stackoverflow.com/questions/1040644/&hellip;</a>, and another: <a href="http://stackoverflow.com/questions/994655/what-is-the-best-script-language-for-n-w-programming-web-development" rel="nofollow" title="what is the best script language for n w programming web development">stackoverflow.com/questions/994655/&hellip;</a>, and another: <a href="http://stackoverflow.com/questions/1066828/choosing-a-non-microsoft-language-for-web-development" rel="nofollow" title="choosing a non microsoft language for web development">stackoverflow.com/questions/1066828/&hellip;</a>, and another: <a href="http://stackoverflow.com/questions/416863/popular-web-development-ide-language" rel="nofollow" title="popular web development ide language">stackoverflow.com/questions/416863/&hellip;</a>, and another: <a href="http://stackoverflow.com/questions/731685/learning-web-development-choosing-a-language-and-framework" rel="nofollow" title="learning web development choosing a language and framework">stackoverflow.com/questions/731685/&hellip;</a> http://stackoverflow.com/questions/1736762/what-programming-language-and-application-is-the-best-to-use-in-web-development Comment by Robert P on What programming language and application is the best to use in web development? Robert P 2009-11-15T06:17:54Z 2009-11-15T06:17:54Z And another : <a href="http://stackoverflow.com/questions/105226/is-perl-still-a-viable-language-for-web-development" rel="nofollow" title="is perl still a viable language for web development">stackoverflow.com/questions/105226/&hellip;</a>, and another: <a href="http://stackoverflow.com/questions/416863/popular-web-development-ide-language" rel="nofollow" title="popular web development ide language">stackoverflow.com/questions/416863/&hellip;</a>, and another: <a href="http://stackoverflow.com/questions/694238/ruby-or-c-as-first-web-development-language" rel="nofollow" title="ruby or c as first web development language">stackoverflow.com/questions/694238/&hellip;</a>, and another: <a href="http://stackoverflow.com/questions/523314/python-or-php-which-language-would-be-better-for-web-development-closed" rel="nofollow" title="python or php which language would be better for web development closed">stackoverflow.com/questions/523314/&hellip;</a> http://stackoverflow.com/questions/1736762/what-programming-language-and-application-is-the-best-to-use-in-web-development Comment by Robert P on What programming language and application is the best to use in web development? Robert P 2009-11-15T06:16:35Z 2009-11-15T06:16:35Z <a href="http://stackoverflow.com/questions/1638602/web-development-should-i-learn-php" rel="nofollow" title="web development should i learn php">stackoverflow.com/questions/1638602/&hellip;</a> http://stackoverflow.com/questions/1736762/what-programming-language-and-application-is-the-best-to-use-in-web-development Comment by Robert P on What programming language and application is the best to use in web development? Robert P 2009-11-15T06:16:01Z 2009-11-15T06:16:01Z There are many, many questions that already ask this: <a href="http://stackoverflow.com/questions/1292598/language-for-web-site-development-c-or-php" rel="nofollow" title="language for web site development c or php">stackoverflow.com/questions/1292598/&hellip;</a>