User shelfoo - Stack Overflowmost recent 30 from stackoverflow.com2009-12-21T08:41:01Zhttp://stackoverflow.com/feeds/user/3444http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/713931/how-to-match-parameter-name-value-in-c-regex/714127#7141270Answer by shelfoo for How to match "Parameter Name: Value" in C# Regex?shelfoo2009-04-03T14:20:37Z2009-04-03T14:20:37Z<p>Not having used C# I can't give a direct code sample.</p>
<p>If it follows normal regex patterns though, the problem might be the ^/$.. normally that matches start of string (^) and end of string ($) not necessarily "end of line".</p>
<p>What if you try something like (tested with perl):</p>
<p><code>
/(\w+):\s(\w+)(?:\r\n)?/g
</code> </p>
http://stackoverflow.com/questions/711722/how-to-save-my-sanity-while-maintaining-spaghetti-code/711860#7118600Answer by shelfoo for How to save my sanity while maintaining spaghetti codeshelfoo2009-04-02T22:23:32Z2009-04-02T22:23:32Z<p>Here's how I approached this problem while maintaining a 10 year old legacy perl system. To give a slight bit of background, this was some of the worst of the worst. I was initially depressed when I started working at the company because the code was so poorly thought out and laid out (and it was my first programming job). By the end of that gig I had a pretty good system though.</p>
<p>First of all, every new feature was added as a new module or methods. Nothing was hacked in on top of the existing code. This let me write unit tests for the new stuff, providing the confidence in it, so to integrate with the old stuff was just a matter of a line or two.</p>
<p>Secondly, any bugfix was implemented the same way. I'd spend some time figuring out what was happening with the old stuff (not searching for the bug), and I'd write it out as a new method (or module), and wrap it in tests, and then typically could replace.</p>
<p>This however only works if you've got the time, and the buy-in to get it done. If you don't, keep track of the time that you spend on any given bug. Especially where it's multiple bugs in the same file, or process, or whatever. At some point in time, it's easy to point at a given collection of code and say that this is so bad, has cost N amount of time, it's time to rewrite.</p>
<p>I was successful enough with this approach that I gained the honorary title "Forensic Programmer", it's also a fantastic skill to have, because more often than not the new job already has some code written :P</p>
http://stackoverflow.com/questions/66066/what-is-the-best-way-to-implement-constants-in-java/66339#663395Answer by shelfoo for What is the best way to implement constants in Java ?shelfoo2008-09-15T20:00:12Z2009-01-28T21:14:02Z<p>In Effective Java 2nd edition, it's recommended that you use enums instead of static ints for constants.</p>
<p>There's a good writeup on enums in Java here:
<a href="http://java.sun.com/j2se/1.5.0/docs/guide/language/enums.html" rel="nofollow">http://java.sun.com/j2se/1.5.0/docs/guide/language/enums.html</a></p>
<p>Note that at the end of that article the question posed is:</p>
<p><i>So when should you use enums?</i></p>
<p>With an answer of:</p>
<p><i>Any time you need a fixed set of constants</i></p>
http://stackoverflow.com/questions/309641/project-explanation-a-true-tragedy/309656#3096561Answer by shelfoo for Project Explanation, A True Tragedyshelfoo2008-11-21T18:09:25Z2008-11-21T18:09:25Z<p>It sounds a little like a code review to me, although a little backwards maybe?</p>
<p>Approaching it from the code review point, it took me a while to realize that code reviews aren't personal attacks. They're a good chance to learn from people that have been there before, and a good opportunity for people to find the bugs that may exist, or style rules that have been broken etc.</p>
<p>Without knowing the extent of the discussions, your time-spent in the company etc, it's really hard for me to say for sure that the guy is just being a jerk, if the code review bit doesn't fit the situation, then it may be time to change positions.</p>
http://stackoverflow.com/questions/305552/locate-pattern-the-letter-i-followed-by-a-space-then-three-alpha-numerics-followe/305573#3055734Answer by shelfoo for Locate Pattern the Letter I followed by a space then three alpha numerics followed by a spaceshelfoo2008-11-20T15:08:12Z2008-11-20T17:52:13Z<p>/I ([0-z]{3} \d{6} \d{7})/</p>
<p>I don't know VB, but that regex would work with say perl.</p>
<p><b>Update:</b><br/>
Given the new string provided.. something like this <em>may</em> work (depending on responses to my questions)</p>
<p><code>
/^[A-z] ([0-z]{3}) [A-z] [0-z]{3} L (\d{6} \d{7})/
</code></p>
<p>Matches would then be joined (match 1 containing the AAA, match 2 containing the Lat/Long).</p>
<p><b>Update #2:</b><br>
From OP: <i>No on the pattern. The only pattern is I AAA then on the same line the 4000931 0892006. Can you add an OR statement to an expression</i></p>
<p>You can add an OR, sort of, but I'm uncertain that this is really what you want?
This new regex will match I, followed by a space, followed by 3 alpha numeric characters, and then "anything", and the lat/long. Note tho that if there's data in the file or whatever you're parsing that matches a line like that (in that it's "other" data, but follows a similar pattern), you'll probably catch that too.</p>
<p><code>
/^I ([0-z]{3}) .* (\d{6} \d{7})/
</code></p>
http://stackoverflow.com/questions/299412/is-there-any-winscp-equivalent-for-linux/299417#29941711Answer by shelfoo for Is there any WinSCP equivalent for linux?shelfoo2008-11-18T17:13:09Z2008-11-18T17:13:09Z<p>scp file user@host:/path/on/host</p>
http://stackoverflow.com/questions/213985/is-making-an-empty-string-constant-worth-it/213991#2139912Answer by shelfoo for Is making an empty string constant worth it?shelfoo2008-10-17T22:02:58Z2008-10-17T22:02:58Z<p>I much prefer seeing EMPTY_STRING.</p>
<p>It makes it english. "".equals 'reads' differently than EMPTY_STRING.equals.</p>
http://stackoverflow.com/questions/202107/good-examples-of-hungarian-notation/202375#2023752Answer by shelfoo for Good examples of Hungarian Notation?shelfoo2008-10-14T18:55:08Z2008-10-14T18:55:08Z<p>I think the key thing to take away from Joel's article, linked above, and Hungarian Notation in general, is to use it when there's something non-obvious about the variable.</p>
<p>One example, from the article, is encoded vs non encoded strings, it's not that you should use hungarian 'us' for unsafe strings and 's' for safe strings, it's that you should have <em>some</em> identifier to indicate that a string is either safe or not. If it becomes standard, it becomes easy to see when the standard is being broken.</p>
http://stackoverflow.com/questions/148298/how-to-check-for-equals-0-i-or-i-0/149184#1491846Answer by shelfoo for How to check for equals? (0 == i) or (i == 0)shelfoo2008-09-29T15:29:03Z2008-09-29T15:29:03Z<p>I used to be convinced that the more readable option (i == 0) was the better way to go with.</p>
<p>Then we had a production bug slip through (not mine thankfully), where the problem was a ($var = SOME_CONSTANT) type bug. Clients started getting email that was meant for other clients. Sensitive type data as well.</p>
<p>You can argue that Q/A should have caught it, but they didn't, that's a different story.</p>
<p>Since that day I've always pushed for the (0 == i) version. It basically removes the problem. It feels unnatural, so you pay attention, so you don't make the mistake. There's simply no way to get it wrong here.</p>
<p>It's also a lot easier to catch that someone didn't reverse the if statement in a code review than it is that someone accidentally assigned a value in an if. If the format is part of the coding standards, people look for it. People don't typically debug code during code reviews, and the eye seems to scan over a (i = 0) vs an (i == 0).</p>
<p>I'm also a much bigger fan of the java "Constant String".equals(dynamicString), no null pointer exceptions is a good thing.</p>
http://stackoverflow.com/questions/140270/humor-in-code/140296#1402967Answer by shelfoo for Humor in codeshelfoo2008-09-26T15:38:23Z2008-09-26T15:38:23Z<p>I think one of the funnier ones I've seen is a perl function that had a hash named ofTheJedi (instead of some generic "this holds data" name).</p>
<p>Then only reason it was named that way was so the return statement was 'return %ofTheJedi'.</p>
<p>I've seen lots of HHGTTG references, lots of star wars references, and the odd Dr Who/Battlestar reference.</p>
http://stackoverflow.com/questions/129508/when-did-you-know-it-was-time-to-leave-your-job/129557#12955723Answer by shelfoo for When did you know it was time to leave your job?shelfoo2008-09-24T20:07:04Z2008-09-24T20:07:04Z<p>Write yourself a list about things you'll miss.</p>
<p>If that list is shorter than the things that you won't, it's likely time to leave.</p>
<p>Best advice I've had, can't really take credit for the idea.</p>
http://stackoverflow.com/questions/128047/motivations-for-choosing-a-career-in-programming/128142#1281423Answer by shelfoo for Motivations for choosing a career in programmingshelfoo2008-09-24T16:16:38Z2008-09-24T16:16:38Z<p>Show them relevant, useful, fun things.</p>
<p>How to programatically reorganize an mp3 library. How to manipulate a lot of images at once. Truncating music for ring tones. Pulling cover art from amazon. Re-engineer the more cowbell application. Someone mentioned Facebook, build a mini Facebook app.</p>
<p>I originally thought I wanted to learn how to program so I could build a game. What got me hooked was being able to quickly do stuff I wanted to do without having to search for an application to do it for me.</p>
<p>Once I had the basics down, my language became a hammer and everything was a nail. Eventually development just became fun, and my career choice became clear. Boring business applications are still fun to write if you have fun writing code.</p>
http://stackoverflow.com/questions/117812/alternate-fizzbuzz-questions/117949#1179494Answer by shelfoo for Alternate FizzBuzz Questionsshelfoo2008-09-22T22:12:55Z2008-09-22T22:12:55Z<p>Any of the early ones from <a href="http://projecteuler.net/" rel="nofollow">Project Euler</a> would probably be good.</p>
http://stackoverflow.com/questions/115425/how-do-i-get-a-list-of-installed-cpan-modules/115793#1157933Answer by shelfoo for How do I get a list of installed CPAN modules?shelfoo2008-09-22T16:08:06Z2008-09-22T16:08:06Z<p>Here's a really hacky way to do it in *nix, you'll get some stuff you don't really care about (ie: warnings::register etc), but it should give you a list of every .pm file that's accessible via perl.</p>
<pre>
<code>
for my $path (@INC) {
my @list = `ls -R $path/**/*.pm`;
for (@list) {
s/$path\///g;
s/\//::/g;
s/\.pm$//g;
print;
}
}
</code>
</pre>
http://stackoverflow.com/questions/97113/help-writing-a-regular-expression/97129#971295Answer by shelfoo for Help Writing a Regular Expressionshelfoo2008-09-18T21:23:26Z2008-09-18T21:23:26Z<pre><code>/^cn=([^,]+),/</code></pre>
http://stackoverflow.com/questions/96848/is-there-any-way-to-use-a-constant-as-hash-key-in-perl/97019#9701912Answer by shelfoo for Is there any way to use a "constant" as hash key in Perl?shelfoo2008-09-18T21:11:07Z2008-09-18T21:11:07Z<p>Another option is to not use the use constant pragma and flip to Readonly as per recommendations in the Perl Best Practices by Damian Conway.</p>
<p>I switched a while back after realizing that constant hash ref's are just a constant reference to the hash, but don't do anything about the data inside the hash.</p>
<p>The readonly syntax creates "normal looking" variables, but will actually enforce the constantness or readonlyness. You can use it just like you would any other variable as a key.</p>
<pre>
<code>
use Readonly;
Readonly my $CONSTANT => 'Some value';
$hash{$CONSTANT} = 1;
</code>
</pre>
http://stackoverflow.com/questions/88546/perl-why-is-the-if-statement-slower-than-and/88937#889372Answer by shelfoo for Perl: why is the if statement slower than "and"?shelfoo2008-09-18T00:35:39Z2008-09-18T00:35:39Z<p>According to Benchmark, the second is slightly slower. Possibly it has something to do with the condition, but here's results for a very simple case:</p>
<pre>
<code>
use Benchmark;
timethese(10000000, {
'if' => '$m=5;if($m > 4){my $i=0;}',
'and' => '$m=5; $m > 4 and do {my $i =0}',
});
</code>
</pre>
<p>Results:</p>
<pre>
<code>
Benchmark: timing 10000000 iterations of Name1, Name2...
if: 3 wallclock secs ( 2.94 usr + 0.01 sys = 2.95 CPU) @ 3389830.51/s (n=10000000)
and: 3 wallclock secs ( 3.01 usr + 0.01 sys = 3.02 CPU) @ 3311258.28/s (n=10000000)
</code>
</pre>
http://stackoverflow.com/questions/88007/unit-test-for-randomized-data/88138#881382Answer by shelfoo for Unit test for randomized datashelfoo2008-09-17T21:58:42Z2008-09-17T21:58:42Z<p>In addition to testing a few to make sure that they pass, I'd write a test to make sure that passwords that <em>break</em> the rules fail.</p>
<p>Is there anything in the codebase that's checking the passwords generated to make sure they're random enough? If not, I may look at creating the logic to check the generated passwords, testing that, and then you can state that the random password generator is working (as "bad" ones won't get out). </p>
<p>Once you've got that logic you can probably write an integration type test that would generate boatloads of passwords and pass it through the logic, at which point you'd get an idea of how "good" your random password generate is.</p>
http://stackoverflow.com/questions/84340/why-learn-perl-python-ruby-if-the-company-is-using-c-c-or-java-as-the-appli/84456#844561Answer by shelfoo for Why learn Perl, Python, Ruby if the company is using C++, C# or Java as the application language?shelfoo2008-09-17T15:25:59Z2008-09-17T15:25:59Z<p>Personally I work on a Java app, but I couldn't get by without perl for some supporting scripts. </p>
<p>I've got scripts to quickly flip what db I'm pointing at, scripts to run build scripts, scripts to scrape data & compare stuff. </p>
<p>Sure I <em>could</em> do all that with java, or maybe shell scripts (I've got some of those too), but who wants to compile a class (making sure the classpath is set right etc) when you just need something quick and dirty. Knowing a scripting language can remove 90% of those boring/repetitive manual tasks.</p>
http://stackoverflow.com/questions/83886/how-do-you-get-yourself-to-focus/83915#839156Answer by shelfoo for How do you get yourself to focus?shelfoo2008-09-17T14:37:30Z2008-09-17T14:37:30Z<p>Avoid StackOverflow for one.</p>
<p>Seriously though, I tend to close down the browser. Write down (pen and paper!) what I want to get done, throw the headphones on, and start x. Where x is typically writing tests, or drawing out what I want something to look like, or kicking up the debugger and throwing in some breakpoints.</p>
<p>It's really a case for me of making sure that the distractions are minimal, the plan is clear, and go from there.</p>
http://stackoverflow.com/questions/73667/how-can-i-start-an-interactive-console-for-perl/73765#737651Answer by shelfoo for How can I start an interactive console for Perl?shelfoo2008-09-16T15:44:53Z2008-09-16T15:44:53Z<p>You could look into psh here: <a href="http://www.focusresearch.com/gregor/sw/psh/" rel="nofollow">http://www.focusresearch.com/gregor/sw/psh/</a></p>
<p>It's a full on shell (you can use it in replacement of bash for example), but uses perl syntax.. so you can create methods on the fly etc.</p>
http://stackoverflow.com/questions/64537/how-do-i-create-graphs-in-perl-on-windows/64566#645666Answer by shelfoo for How do I create graphs in Perl on Windows?shelfoo2008-09-15T16:44:35Z2008-09-15T16:44:35Z<p>GD and GD::Graph are probably your best bets, you can use them to create images that you can then embed into whatever you need.</p>
http://stackoverflow.com/questions/62188/stack-overflow-code-golf/62973#629731Answer by shelfoo for Stack overflow code golfshelfoo2008-09-15T13:42:36Z2008-09-15T13:42:36Z<p>There was a perl one already, but this is a couple characters shorter (9 vs 12) - and it doesn't recurse :)</p>
<blockquote>
<p>s//*_=0/e</p>
</blockquote>
http://stackoverflow.com/questions/46960/whats-your-favorite-desk-for-a-developers-home-office/47001#470013Answer by shelfoo for What's your favorite desk for a developer's home office?shelfoo2008-09-05T22:25:25Z2008-09-05T22:25:25Z<p>The Jerker. Ikea. It has it's own <a href="http://adam.pra.to/content/jerker/" rel="nofollow">shrine</a>.</p>
http://stackoverflow.com/questions/46387/how-to-get-the-correct-content-length-for-a-post-request/46551#465511Answer by shelfoo for How to get the correct Content-Length for a POST request.shelfoo2008-09-05T18:52:54Z2008-09-05T18:52:54Z<p>I've run into similar problems before.</p>
<p>I assume you're using the length() function to determine the size of the file? If so, it;s likely the data that you're posting is UTF-8 encoded, instead of ASCII.</p>
<p>To get the correct count you may need to add a "use bytes;" pragma to the top of your script, or wrap the length call in a block:</p>
<p><code>
my $size;
do {use bytes; $size = length($file_data)}
</code></p>
<p>From the perlfunc man page:</p>
<p>"Note the characters: if the EXPR is in Unicode, you will get the number of characters, not the number of bytes."</p>
http://stackoverflow.com/questions/825747/fined-for-being-late-to-work/825959#825959Comment by shelfoo on Fined for being late to workshelfoo2009-05-05T17:15:58Z2009-05-05T17:15:58ZWow, I'd be happy that you've agreed to put in a 21 hour day every day ;)
I know what you meant though, and I've given the exact same answer before. Treat me proffesionally and I'll respond in kind.http://stackoverflow.com/questions/310282/explaining-race-conditions-to-a-non-technical-audience/310344#310344Comment by shelfoo on Explaining race conditions to a non-technical audienceshelfoo2008-11-21T22:14:22Z2008-11-21T22:14:22ZI like this one. For those that really don't get it, you could easily adapt this to a "game" where person 1 is banker a, person 2 is banker b, they know the balance, and what to do with it, but not what the other is doing. At the end, just ask for who wants to go first..http://stackoverflow.com/questions/305552/locate-pattern-the-letter-i-followed-by-a-space-then-three-alpha-numerics-followe/305987#305987Comment by shelfoo on Locate Pattern the Letter I followed by a space then three alpha numerics followed by a spaceshelfoo2008-11-20T16:59:14Z2008-11-20T16:59:14ZIs the "L" always there?
Is it always a pattern of I, 3 alphanumerics, 1 alpha numeric, 3 alpha numerics, L, and then the number string?
Is the V always there?
Regex's aren't magic, we need to match against a pattern, but we need to know what that pattern actually is to help you out.http://stackoverflow.com/questions/207278/career-day-how-do-i-make-computer-programmer-sound-cool-to-8-year-olds/207342#207342Comment by shelfoo on Career Day: how do I make "computer programmer" sound cool to 8 year olds?shelfoo2008-10-16T04:50:30Z2008-10-16T04:50:30Zfantastic, I'm doing a career day for my beaver's group, totally using this ideahttp://stackoverflow.com/questions/175074/whats-the-most-egregious-pop-culture-perversion-of-programming/175133#175133Comment by shelfoo on What's the most egregious pop culture perversion of programming?shelfoo2008-10-08T16:41:59Z2008-10-08T16:41:59ZThe keyboard is fantastic. I once randomly started typing so the person that I was assisting via the phone would think I had done something to fix their non-existent problem. It worked!http://stackoverflow.com/questions/140270/humor-in-code/140478#140478Comment by shelfoo on Humor in codeshelfoo2008-09-26T20:50:11Z2008-09-26T20:50:11ZI beat you to it.. or is that bet you to it?http://stackoverflow.com/questions/96848/is-there-any-way-to-use-a-constant-as-hash-key-in-perl/114340#114340Comment by shelfoo on Is there any way to use a "constant" as hash key in Perl?shelfoo2008-09-24T21:20:50Z2008-09-24T21:20:50ZThanks for that, good to know. I've moved on from my perl gig, so I likely won't be using it other than at home, but I forwarded that link to one of the people I used to work with.