Robert P
|
Registered User
|
I'm a Software Engineer at Schweitzer Engineering Laboratories in Pullman, WA. Perl and C# I work in on a regular basis, but I've worked with C, C++, python, java, and others in the past. Perl 6 has captured my imagination as well.
|
|
3h |
comment |
Unit test helper methods? @rsp: That's a fantastic solution that I've never thought of before. It should be its own answer so I can upvote it! :) |
|
3h |
comment |
What is ASP.NET? This is a question comment, not an answer. |
|
1d |
comment |
What are effective strategies for documenting a large legacy .Net platform as the main developer just quit? Strange to think that there could be "legacy .NET platforms" out there, but .NET really has been around for quite a few years now... |
|
2d |
revised |
Is there a Perl shortcut to count the number of matches in a string? deleted 2 characters in body |
|
Dec 4 |
answered | Is there a Perl shortcut to count the number of matches in a string? |
|
Dec 4 |
answered | Is there a Perl shortcut to count the number of matches in a string? |
|
Dec 3 |
comment |
How do I call a function name that is stored in a hash in Perl? Yeah, I thought so. For others who look at this piece, once you have that, you can just do $this->$reader_ref() and it will be way cleaner than the by-string-name version. PBP has a good explanation why using a subref is the better way of doing it, if anyone is interested. |
|
Dec 3 |
comment |
How do I call a function name that is stored in a hash in Perl? Er, it seems to me that if you're using Moose, then you're still going about it the wrong way. One of the features of Moose is the meta object model that it's built on...I have a feeling that there's a method you can call to look up the actual sub by string name, which you could then call, instead of using bare strings. I don't know it off the top of my head, though... |
|
Dec 2 |
comment |
Should I learn Perl as a web developer? Perl has many great things to offer the average user in addition to the "funky syntax." Just see any of the other answers here. |
|
Dec 2 |
comment |
Silverlight and COM Interop Except, that it's not quite true for the latest Silverlight; Silverlight 4 has COM interop now. |
|
Dec 2 |
comment |
Should I learn Perl as a web developer? 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.) |
|
Dec 2 |
comment |
Should I learn Perl as a web developer? 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. |
|
Dec 1 |
comment |
Should I learn Perl as a web developer? 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. |
|
Nov 23 |
comment |
How can I make Perl’s File::Find faster? Don't you mean /[Ll]ib/? [L|l] is (roughly) equivalent to (?:L|\||l), not (?:L|l). |
|
Nov 23 |
comment |
What is the shortest source code you have seen to do a complex task? C'mon, I'm sure the strings are unicode here...copy and paste away! :) |
|
Nov 23 |
awarded | ● Popular Question |
|
Nov 21 |
comment |
Code-Golf: What is the shortest program that compiles and crashes? and sadly, you still haven't: command line switches count against your strokes. :) |
|
Nov 18 |
comment |
How to reverse a string in Go? I suspect that this will fail spectacularly on anything other than ASCII characters. |
|
Nov 17 |
comment |
Are there any drawbacks to interpolation in Perl? Almost...if $, is set, then it might not be the same. But most people don't mess with $, anyway. :) |
|
Nov 14 |
awarded | ● Nice Question |
|
Nov 13 |
asked | How do I get started writing a module for CPAN? |
|
Nov 13 |
comment |
SQL*Plus inside Perl script This is a fabulous use of the qx quoting mechanism, and in one-off script scenarios, this might be a nice way to go. |
|
Nov 13 |
accepted | SQL*Plus inside Perl script |
|
Nov 13 |
answered | SQL*Plus inside Perl script |
|
Nov 12 |
comment |
Warm-up .NET application This is the classic software/hardware problem: hardware centric folks will say it's a problem with the software (eg, why not just switch to linux? it runs on 386s!) and software people will say it's just a hardware problem (oh come on, it's got to be because you're not using the latest Core Ikickass!) |
|
Nov 12 |
comment |
Error when instantiating .NET/COM interop class via classic ASP Is the C# librar one you wrote, or one you found and are trying to use? |
|
Nov 12 |
revised |
Error when instantiating .NET/COM interop class via classic ASP added python example. |
|
Nov 12 |
answered | Error when instantiating .NET/COM interop class via classic ASP |
|
Nov 12 |
comment |
Boolean logic in a single regular expression - possible ? Which is fine: he's not trying to match the whole line. If you take a look at his example, it's a C# attribute that "ExcludesIfMatchRegex". So if it starts with what he wants, he doesn't care about the rest. |
|
Nov 12 |
accepted | Boolean logic in a single regular expression - possible ? |
|
Nov 12 |
comment |
Boolean logic in a single regular expression - possible ? Spaces are significant in regexen. the regex "^\" | ^t" means: "match the start of string, a quote, followed by a space, OR match a space, then the start of string, then a 't'." Matching a space and then the start of string will always fail - it's impossible! :) Remove the spaces and it should work fine. |
|
Nov 12 |
revised |
Boolean logic in a single regular expression - possible ? added 108 characters in body |
|
Nov 12 |
comment |
Boolean logic in a single regular expression - possible ? Downvoter: how is this wrong? |
|
Nov 12 |
answered | Boolean logic in a single regular expression - possible ? |
|
Nov 11 |
comment |
How to “refresh” Windows 7 start menu from NSIS installer ? "Win 7 sucks..." or, maybe, nsis should behave correctly. MSI based installers don't have this problem... |
|
Nov 9 |
comment |
C#: Using pointer types as fields? You could, but that's not the question he's asking. :) |
|
Nov 9 |
revised |
I’m looking for a Perl-friendly versioning solution that I can run on Windows. fixed spelling of 'friendly' |
|
Nov 6 |
answered | Is there anything exciting in perl 5.11? |
|
Nov 5 |
answered | Can I use Perl’s map with an array slice? |
|
Nov 5 |
comment |
Can I use Perl’s map with an array slice? Actually, scratch that: I've reproduced your issue. Weird. Looking further. |
|
Nov 5 |
comment |
Can I use Perl’s map with an array slice? You may have to add more code around what you are doing; that looks correct to me. |
|
Nov 4 |
comment |
What Perl RESTful framework do you recommend? Catalyst, and in fact, most of the perl community relies on the ample test frameworks that come from Test::Builder, Test::Harness, and Test::More lineages. For functional testing of websites, there's Test::WWW::Selenium for the Selenium users among us, or for simpler non-ajaxy websites, Test::WWW::Mechaninze. All of these interfaces can then be layered inside an object oriented testing skeleton with classes like Test::Class, a fantastic xunit style testing framework. I'm not exactly sure what testing frameworks you're looking for, or if you're just not familiar with what's out there. |
|
Oct 31 |
awarded | ● Necromancer |
|
Oct 29 |
answered | Why the .NET Framework Class Library is not Open Source? |
|
Oct 27 |
comment |
Can I access a static method in a dynamically specified class in Perl? At the very least, if it's a module, it's likely that there is no "parent" module. I've not seen any like that, but a non-class module that inherits methods from its parent seems a bit weird. Makes me wonder if there's a good use for it... |
|
Oct 27 |
answered | How do you handle malformed HTML in Perl? |
|
Oct 27 |
answered | Can I access a static method in a dynamically specified class in Perl? |
|
Oct 27 |
awarded | ● Popular Question |
|
Oct 23 |
comment |
How can I parse XML using Perl? Take a look at stackoverflow.com/questions/487213/… for another Perl xml parser answer. |
|
Oct 23 |
answered | Using Perl with compiled C library? |
