User Vagnerr - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T17:28:33Zhttp://stackoverflow.com/feeds/user/3720http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/70614/gnu-screen-survival-guide/1688126#16881260Answer by Vagnerr for GNU Screen Survival GuideVagnerr2009-11-06T14:57:33Z2009-11-06T14:57:33Z<p>Someone has posted a similar question to this on <a href="http://serverfault.com/questions/81544/hidden-features-of-screen">Server Fault</a>.</p>
http://stackoverflow.com/questions/43459/kerberos-user-authentication-in-apache4Kerberos user authentication in ApacheVagnerr2008-09-04T10:32:16Z2009-10-23T12:43:59Z
<p>Hi,</p>
<p>can anybody recommend some really good resources for how to get Apache authenticating users with Kerberos.</p>
<p>Background reading on Kerberos would also be useful </p>
<p>Thanks</p>
<p>Peter</p>
http://stackoverflow.com/questions/1497613/how-can-i-override-perls-open-function-but-use-the-same-filehandle-for-testing1How can I override Perl's open() function but use the same filehandle for testing?Vagnerr2009-09-30T11:41:53Z2009-09-30T16:37:48Z
<p>Hi,</p>
<p>I am currently adding some unit tests to some legacy code and I find myself with the need to override an open function. The live code looks something like this.</p>
<pre><code>if ( !open( F, $filetoopen) ){
# do stuff with <F>
}
</code></pre>
<p>What I want to do is make sure that "F" contains a file handle that I have provided from my tests rather than what it thinks its opening.</p>
<p>I have the following code in my .t file...</p>
<pre><code>BEGIN {
*CORE::GLOBAL::open = sub { open(F,$testfiletoopen); };
};
</code></pre>
<p>... it does work and the code in test finishes up reading from my test file. However it will only continue to work as long as I use the same filehandle name "F" as the code in test. </p>
<p>If there a way to make this test code less fragile so that if the filehandle name is changed in the live code the test won't fail?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/40133/getting-apache-to-modify-static-webpages-on-the-fly1Getting Apache to modify static webpages on the flyVagnerr2008-09-02T17:45:39Z2009-07-29T02:42:47Z
<p>I have been experimenting with <a href="http://www.woopra.com/" rel="nofollow">woopra.com</a> A web analytics tool. Which requires a piece of javascript code to be added to each page to function. This is easy enough with more dynamic sites with universal headers or footers but not for totally static html pages. </p>
<p>I attempted to work round it by using a combination of Apache rewrites and SSI's to "Wrap" the static html with the required code. For example...</p>
<p>I made the following changes to my apache config</p>
<pre><code> RewriteEngine On
RewriteCond %{REQUEST_URI} !=test.shtml
RewriteCond %{IS_SUBREQ} false
RewriteRule (.*)\.html test.shtml?$1.html
</code></pre>
<p>The test.shtml file contains...</p>
<pre><code> <script type="text/javascript">
var XXXXid = 'xxxxxxx';
</script>
<script src="http://xxxx.woopra.com/xx/xxx.js"></script>
<!--#set var="page" value="$QUERY_STRING" -->
<!--#include virtual= $page -->
</code></pre>
<p>The idea was that a request coming in for </p>
<pre><code> /abc.html
</code></pre>
<p>would be redirected to </p>
<pre><code> /test.shtml?abc.html
</code></pre>
<p>the the shtml would then include the original file into the response page.</p>
<p>Unfortunately it doesn't quite work as planed :) can anyone see what I am doing wrong or perhaps suggest an alternative approach. Is there any apache modules that could do the same thing. Preferably that can be configured on a per site basis.</p>
<p>Thanks</p>
<p>Peter</p>
http://stackoverflow.com/questions/1069816/is-there-a-way-to-override-a-perl-use-constant-in-your-unit-testing1Is there a way to override a Perl "use constant" in your unit testing?Vagnerr2009-07-01T15:28:38Z2009-07-03T07:51:39Z
<p>I have a Perl module that I have declared some constants:</p>
<pre><code>use constant BASE_PATH => "/data/monitor/";
</code></pre>
<p>In live operation the constant will never change but I wish to be able to modify it
in my unit tests, e.g. to set it to <strong><em>~/project/testdata/</em></strong>. Is there a way do do this
without having to use "non-constants"?</p>
<p>Could I possibly use <strong>Test::MockObject</strong> on the constant.pm?</p>
http://stackoverflow.com/questions/1069794/how-can-i-retrieve-a-perl-hash-value-only-if-its-key-exists/1069842#10698421Answer by Vagnerr for How can I retrieve a Perl hash value only if its key exists?Vagnerr2009-07-01T15:33:18Z2009-07-01T15:33:18Z<p>Assuming that the <strong>$test_value</strong> would be a variable of some sort you might want something like</p>
<pre><code>if( defined( $a{$test_value} ) ){
print $a{$test_value};
}
</code></pre>
<p>or even </p>
<pre><code>print $a{$test_value} if( defined( $a{$test_value} ) )
</code></pre>
<p>depending on how readable you want it :-)</p>
http://stackoverflow.com/questions/35901/interview-programming-test-practice16Interview programming test practiceVagnerr2008-08-30T11:43:54Z2009-06-18T10:01:10Z
<p>Does anyone know of some good resources for practice coding questions typically asked in interviews. I know of <a href="http://www.topcoder.com/" rel="nofollow">topcoder.com</a> which is kind of fun to use to exercise your algorithms. And I have seen the occasional test set on company websites. Any others?</p>
<p>Edit: Also found in my bookmarks ...</p>
<ul>
<li><a href="http://www.techinterviews.com/" rel="nofollow">techinterviews.com</a></li>
</ul>
http://stackoverflow.com/questions/127324/gssacquirecred-returning-key-table-entry-not-found-error0gss_acquire_cred returning Key table entry not found errorVagnerr2008-09-24T14:02:25Z2009-06-11T03:41:21Z
<p>I have been trying to follow the guidelines in <a href="http://support.microsoft.com/?id=555092" rel="nofollow">this Microsoft article</a> to authenticate
against Apache with Kerberos and AD. I have successfully tested the communication between the apache server and the AD server with kinit. However when I attempt to access a restricted page on the server with IE I get an Internal server error and the following appears in the apache error log.</p>
<pre><code>[Wed Sep 24 14:18:15 2008] [debug] src/mod_auth_kerb.c(1483): [client 172.31.37.38] kerb_authenticate_user entered with user (NULL) and auth_type Kerberos
[Wed Sep 24 14:18:15 2008] [debug] src/mod_auth_kerb.c(1174): [client 172.31.37.38] Acquiring creds for HTTP/srvnfssol1.dev.local@DEV.LOCAL
[Wed Sep 24 14:18:15 2008] [error] [client 172.31.37.38] gss_acquire_cred() failed: Miscellaneous failure (see text) (Key table entry not found)
</code></pre>
<p>I have run a truss on the apache process and confirmed that it is in fact loading up the keytab file ok. I am wondering if there is something wrong with the format of the keytab file...</p>
<pre><code>HTTP/srvnfssol1.dev.local@DEV.LOCAL
</code></pre>
<p>I am not sure what I am missing though. Or what other things to check.</p>
<p>Any suggestions?</p>
<p>Thanks</p>
<p>Peter</p>
http://stackoverflow.com/questions/325894/is-there-a-framework-for-running-unit-tests-on-apache-c-modules3Is there a framework for running unit tests on Apache C modules?Vagnerr2008-11-28T14:32:52Z2009-04-17T12:20:51Z
<p>Hi, </p>
<p>I am about to make some changes to an existing Apache C module to fix some possible security flaws and general bad practices. However the functionality of the code must remain unchanged (except in cases where its fixing a bug). Standard regression testing stuff seems to be in order. I would like to know if anyone knows of a good way to run some regression unit tests againt the code. I'm thinking something along the lines of using <a href="http://cunit.sourceforge.net." rel="nofollow">C-Unit</a> but with all the tie ins to the Apache APR and status structures I was wondering if there is a good way to test this. Are there any pre-built frameworks that can be used with C-unit for example?</p>
<p>Thanks</p>
<p>Peter</p>
http://stackoverflow.com/questions/545535/which-is-more-efficient-regular-expression2Which is more efficient regular expression?Vagnerr2009-02-13T10:52:30Z2009-02-13T13:24:10Z
<p>I'm parsing some <strong>big</strong> log files and have some very simple string matches for example</p>
<pre><code>if(m/Some String Pattern/o){
#Do something
}
</code></pre>
<p>It seems simple enough but in fact most of the matches I have could be against the start of the line, but the match would be "longer" for example</p>
<pre><code>if(m/^Initial static string that matches Some String Pattern/o){
#Do something
}
</code></pre>
<p>Obviously this is a longer regular expression and so more work to match. However I can use the start of line anchor which would allow an expression to be discarded as a failed match sooner.</p>
<p>It is my hunch that the latter would be more efficient. Can any one back me up/shoot me down :-)</p>
http://stackoverflow.com/questions/545535/which-is-more-efficient-regular-expression/545668#5456683Answer by Vagnerr for Which is more efficient regular expression?Vagnerr2009-02-13T11:52:28Z2009-02-13T11:52:28Z<p>I did some timings as recommended. here are the results for my app. Its the whole app, not just the regex searches. It scans 60,000 lines. 11 Regular expressions average short length was about 30 characters. The longer but anchored ones are about 120.</p>
<pre><code>Short
real 0m58.780s
user 0m54.940s
sys 0m0.790s
Long (anchored)
real 0m54.260s
user 0m53.630s
sys 0m0.490s
Long (not anchored)
real 0m54.705s
user 0m54.130s
sys 0m0.400s
</code></pre>
<p>So anchoring the long strings is slightly faster. Although not by much. It would appear that if my strings were any larger it might be a different matter.</p>
http://stackoverflow.com/questions/240704/how-can-i-determine-cpan-dependencies-before-i-deploy-a-perl-project6How can I determine CPAN dependencies before I deploy a Perl project?Vagnerr2008-10-27T17:19:19Z2008-10-30T06:27:08Z
<p>Does anyone have any suggestions for a good approach to finding all the CPAN dependencies that might have arisen in a bespoke development project. As tends to be the case your local development environment rarely matches your live one and as you build more and more projects you tend to build up a local library of installed modules. These then lead to you not necessarily noticing that your latest project has a requirement on a non-core module. As there is generally a requirement to package the entire project up for deployment to another group (in our case our operations team), it is important to know what modules should be included in the package. </p>
<p>Does anyone have any insights into the problem.</p>
<p>Thanks</p>
<p>Peter</p>
http://stackoverflow.com/questions/240704/how-can-i-determine-cpan-dependencies-before-i-deploy-a-perl-project/240723#2407237Answer by Vagnerr for How can I determine CPAN dependencies before I deploy a Perl project?Vagnerr2008-10-27T17:25:59Z2008-10-27T17:25:59Z<p>In the past I have used <a href="http://search.cpan.org/dist/Devel-Modlist/" rel="nofollow">Devel::Modlist</a> which is reasonably good allowing you to go</p>
<pre><code>perl -d:Modlist script.pl
</code></pre>
<p>To get a list of the required modules.</p>
http://stackoverflow.com/questions/183560/forking-subprocesses-in-perl-unit-tests-stops-prove-testharness-exiting5Forking subprocesses in Perl unit tests stops prove; Test::Harness exitingVagnerr2008-10-08T16:07:34Z2008-10-08T21:07:23Z
<p>Hi,</p>
<p>I have been trying to use the Perl utility/module "prove" as a test harness for some unit tests. The unit tests are a little more "system" than "unit" as I need to fork off some background processes as part of the test, Using the following...</p>
<pre><code>sub SpinupMonitor{
my $base_dir = shift;
my $config = shift;
my $pid = fork();
if($pid){
return $pid;
}else{
my $cmd = "$base_dir\/..\/bin\/monitor_real.pl -config $config -test";
close STDOUT;
exec ($cmd) or die "cannot exec test code [$cmd]\n";
}
}
sub KillMonitor{
my $pid = shift;
print "Killing monitor [$pid]\n";
kill(1,$pid);
}
</code></pre>
<p>However for some reason when I have my .t file spin up some extra processes it causes the test harness to hang at the end of the first .t file after all the tests have finished, rather than going on to the next file, or exiting if there is only one.</p>
<p>At first I wondered if it might be because I was killing of my sub-processes and leaving them defunct. So I added..</p>
<pre><code>$SIG{CHLD} = \&REAPER;
sub REAPER {
my $pid = wait;
$SIG{CHLD} = \&REAPER;
}
</code></pre>
<p>To the code. But that doesn't help. In fact on closed examination it turns out that my perl test file has exited and is now a defunct process and it is the prove wrapper script that has not reaped its child. In fact when I added a die() call at the end of my test script I got...</p>
<pre><code># Looks like your test died just after 7.
</code></pre>
<p>So my script exited but for some reason the harness isn't unraveling.</p>
<p>I did confirm that it is definitely my sub-processes that are upsetting it as when I disabled them while the tests failed the harness exited properly.</p>
<p>Is there anything I am doing wrong with the way I am starting up my processes that might upset the harness in some way?</p>
<p>Thanks</p>
<p>Peter</p>
http://stackoverflow.com/questions/97984/how-to-secure-database-passwords-in-php/98048#980482Answer by Vagnerr for How to secure database passwords in PHP?Vagnerr2008-09-18T23:36:03Z2008-09-18T23:36:03Z<p>Your choices are kind of limited as as you say you need the password to access the database. One general approach is to store the username and password in a seperate configuration file rather than the main script. Then be sure to store that outside the main web tree. That was if there is a web configuration problem that leaves your php files being simply displayed as text rather than being executed you haven't exposed the password.</p>
<p>Other than that you are on the right lines with minimal access for the account being used. Add to that</p>
<ul>
<li>Don't use the combination of username/password for anything else</li>
<li>Configure the database server to only accept connections from the web host for that user (localhost is even better if the DB is on the same machine) That way even if the credentials are exposed they are no use to anyone unless they have other access to the machine.</li>
<li>Obfuscate the password (even ROT13 will do) it won't put up much defense if some does get access to the file, but at least it will prevent casual viewing of it.</li>
</ul>
<p>Peter </p>
http://stackoverflow.com/questions/67780/where-can-i-find-an-example-burn-down-planning-game-template/67848#678482Answer by Vagnerr for Where can I find an example burn-down / planning game template?Vagnerr2008-09-15T23:10:03Z2008-09-15T23:10:03Z<p><a href="http://blogs.msdn.com/progressive_development/archive/2008/02/19/motley-says-what-are-we-burning-down-your-house-scrum-part-v.aspx" rel="nofollow">This MSDN Blog article</a> Has quite a good review of using burndowns in combination with Cumulative Flow Diagrams which fleshes out the diagrams even more. In the resources links at the bottom of the article there is a <a href="http://go.microsoft.com/fwlink/?LinkId=98602&clcid=0x409" rel="nofollow">link to the Microsoft Scrum kit</a> which has a pre-built excel file.</p>
http://stackoverflow.com/questions/57927/top-ten-ordering-in-excel-based-on-complex-team-rules1Top ten ordering in Excel based on complex team rulesVagnerr2008-09-11T23:41:16Z2008-09-15T11:51:01Z
<p>I have an excel spreadsheet in a format similar to the following...</p>
<pre><code>| NAME | CLUB | STATUS | SCORE |
| Fred | a | Gent | 145 |
| Bert | a | Gent | 150 |
| Harry | a | Gent | 195 |
| Jim | a | Gent | 150 |
| Clare | a | Lady | 99 |
| Simon | a | Junior | 130 |
| John | b | Junior | 130 |
:
:
| Henry | z | Gent | 200 |
</code></pre>
<p>I need to convert this table into a list of the "Top Ten" teams. The rules are</p>
<ul>
<li>Each team score is taken from the sum of four members of that club.</li>
<li>These totals should be of the best four scores except...
<ul>
<li>Each team must consist of at least one Junior or Lady</li>
</ul></li>
</ul>
<p>For example in the table above the team score for club A would be 625 <strong>not</strong> 640 as you would take the scores for Harry(190), Bert(150), Jim(150), and Simon(130). You could not take Fred's(145) score as that would give you only Gents.</p>
<p>My question is, can this be done easily as a series of Excel formula, or will I need to resort to using something more procedural?</p>
<p>Ideally the solution needs to be automatic in the team selections, I don't want to have to create separate hand crafted formula for each team. I also will not necessarily have a neatly ordered list of each clubs members. Although I could probably generate the list via an extra calculation sheet.</p>
<p>Thanks</p>
<p>Peter</p>
http://stackoverflow.com/questions/57902/what-is-your-experience-with-sun-coolthreads-technology/57967#579675Answer by Vagnerr for What is your experience with Sun CoolThreads technology?Vagnerr2008-09-11T23:57:01Z2008-09-12T00:08:02Z<p>IIRC The coolthreads technology is referring to the fact that rather than just ramping up the clock speed ever higher to improve performance they are now looking at multiple core processors with hyperthreading effectively giving you loads of processors on one chip. Overall the processing capacity available is higher but without the additional electrical power and aircon requirements you would expect (hence cool). Its usefulness definitely depends on what you are planning to run on it. If you are running Apache with the multiple threads core it will love it as it can run the individual response threads on the individual cpu cores. If you are simply running single thread processes you will get some performance increases over a single cpu box but not as great (any old fashioned non mod_perl/mod_python CGID processes would still be sharing the the cpu a bit). If your application consists of one single threaded process running maxed out on the box you will get very little improvement on a single core cpu running at the same speed.</p>
<p>Peter</p>
<p>Edit:</p>
<p>Oh and for a benchmark. We compared a T2000 in our server farm to our current V240s (May have been V480's I don't recall) The T2000 took the load of 12-13 of the Older boxes in a live test without any OS tweeking for performance. As I said Apache loves it :-)</p>
http://stackoverflow.com/questions/57923/what-exactly-is-managed-code/57944#579443Answer by Vagnerr for What exactly is "managed" code?Vagnerr2008-09-11T23:46:41Z2008-09-11T23:46:41Z<p>Mostly its referring to the fact that all of your memory allocations are "managed" for you. If you are using managed code you don't have to worry about freeing your objects when you are done with them. Simply allowing them to go out of scope will mean that the VM will eventually recognize that there are no longer any references to them and will Garbage collect them returning the memory to the system. </p>
<p>Unmanaged code on the other hand will simply "leak" unless you explicitly free your pointers before you discard the references. </p>
http://stackoverflow.com/questions/51094/payment-processors-what-do-i-need-to-know-if-i-want-to-accept-credit-cards-on-m/51575#515750Answer by Vagnerr for Payment Processors - What do I need to know if I want to accept credit cards on my website?Vagnerr2008-09-09T10:48:59Z2008-09-09T10:48:59Z<p>As others have mentioned the easiest way into this area is with the use of <a href="http://www.paypal.com/" rel="nofollow">Paypal</a>, <a href="http://www.google.com/checkout" rel="nofollow">Google checkout</a> or <a href="http://www.nochex.com/" rel="nofollow">Nochex</a>. However if you intend to to a significant amount of business you may wish to look up "upgrading" to higher level site integrations services such as <a href="http://worldpay.com/" rel="nofollow">WorldPay</a>, <a href="http://www.netbanx.com/" rel="nofollow">NetBanx (UK)</a> or <a href="http://www.neteller-group.com/" rel="nofollow">Neteller (US)</a>. All of these services are reasonably easy to set up. And I know that Netbanx offers convenient integration into some of the off the shelf shopping cart solutions such as <a href="http://www.intershop.com/" rel="nofollow">Intershop</a> (because I wrote some of them). Beyond that you are looking at direct integration with the banking systems (and their APAX systems) but thats hard and at that point you also need to prove to the Credit card companies that you are handling the credit card numbers securely (probably not worth considering if you are not taking $100k's worth per month). </p>
<p>Working from 1st to last the cost/benefits are that the early options are much easier (quicker/cheaper) to set up put you pay quite high handling charges for each transaction. the later ones are much more costly to set up but you pay less in the long run.</p>
<p>The other advantage of the most of the non dedicated solutions is that you don't need to keep encrypted credit card numbers secure. Thats someone else's problem :-)</p>
http://stackoverflow.com/questions/43349/what-are-options-available-to-get-crons-results-and-how-to-set-them-up/43357#433575Answer by Vagnerr for What are options available to get cron's results and how to set them up ?Vagnerr2008-09-04T08:43:01Z2008-09-04T08:43:01Z<p>The cron line is just like any other unix command line so you can redirect output to another program. Ie.</p>
<pre><code>* * * * * /path/my/command > /my/email/script 2&>1
</code></pre>
http://stackoverflow.com/questions/43344/is-there-some-tool-to-visualize-java-class-hierarchies-and-relations/43351#433514Answer by Vagnerr for Is there some tool to visualize Java class hierarchies and relations?Vagnerr2008-09-04T08:40:00Z2008-09-04T08:40:00Z<p>If you use the <a href="http://www.netbeans.org/" rel="nofollow">Netbeans</a> IDE it does have tools to reverse engineer your source code into UML class diagrams. After loading your source code into the IDE. You can create a new UML->Reverse Engineered java-platform model.</p>
<p>Check out <a href="http://wiki.netbeans.org/NetbeansUML" rel="nofollow">This Netbeans Wiki page</a> for more details.</p>
http://stackoverflow.com/questions/42785/how-do-you-retrofit-unit-tests-into-a-code-base/43345#433451Answer by Vagnerr for How do you retrofit unit tests into a code base ?Vagnerr2008-09-04T08:31:55Z2008-09-04T08:31:55Z<p>If ever you are trying to add unit tests to old perl code I strongly recommend</p>
<p><a href="http://rads.stackoverflow.com/amzn/click/0596100922" rel="nofollow">Perl Testing: A Developer's Notebook</a> by Ian Langworth and chromatic.</p>
<p>It has some very nice trick on testing legacy and "untestable" code.</p>
http://stackoverflow.com/questions/41320/working-on-a-visual-studio-project-with-multiple-users/41350#413502Answer by Vagnerr for Working on a Visual Studio Project with multiple users?Vagnerr2008-09-03T09:15:34Z2008-09-03T09:24:17Z<p>A number of people have recommended using source control and I totally agree. However you also need do the following.</p>
<ul>
<li>Exclude your personal options files from the repository (eg your .suo files)</li>
<li>Exclude your App.config files from the repository. - Not entirely but you need to have a Template.App.config. You commit that instead, and only copy your App.config into the Template.App.config when you make structural changes. That was each user has their own individual config for testing.</li>
</ul>
<p>There are probably some other files worth excluding (obj directories and so forth) but thats all I can think of right now.</p>
<p>Peter</p>
http://stackoverflow.com/questions/40902/looking-for-mysql-ide/40915#409154Answer by Vagnerr for Looking for MySQL IDE?Vagnerr2008-09-02T23:30:42Z2008-09-02T23:30:42Z<p>Not quite a IDE as such but <a href="http://www.phpmyadmin.net" rel="nofollow">PHPMyAdmin</a> is quite popular.</p>
http://stackoverflow.com/questions/40133/getting-apache-to-modify-static-webpages-on-the-fly/40901#409010Answer by Vagnerr for Getting Apache to modify static webpages on the flyVagnerr2008-09-02T23:18:10Z2008-09-02T23:18:10Z<p>@<a href="#40256" rel="nofollow">Pablo Alsina</a></p>
<blockquote>
<p>why would you change them on the fly instead of preprocessing all pages on a site</p>
</blockquote>
<p>There are a number of reasons why you may want to leave the original static files unchanged.</p>
<ol>
<li>They may belong to someone else. Eg administratively changing the files uploaded by another user</li>
<li>They may be being auto-generated by another system that you don't want/cannot change.</li>
<li>You may want to be able to enable/disable/modify the extra data instantly. You don't want to have to re-parse an entire site every time (could be 100's of thousands of pages)</li>
<li>You might be doing it for the technical challenge :-)</li>
</ol>
<p>Peter</p>
http://stackoverflow.com/questions/38109/pair-programming/38119#381192Answer by Vagnerr for Pair programmingVagnerr2008-09-01T16:26:39Z2008-09-01T16:26:39Z<p>I have pair programmed both commercially and and at university. Its can be quite effective in keeping you on task, and generally improves quality of code more than productivity due to the "No that way sucks!" arguments you have. The biggest problem can be convincing upper management that its a good idea though as they tend to just see it as a halving of their utilization figures.</p>
http://stackoverflow.com/questions/37997/whats-the-best-way-to-deliver-tfs-build-status-notifications-to-the-team/38004#380043Answer by Vagnerr for Whats the best way to deliver TFS build status notifications to the team?Vagnerr2008-09-01T14:35:31Z2008-09-01T14:35:31Z<p>You could try.</p>
<p><a href="http://www.woodwardweb.com/gadgets/000434.html" rel="nofollow">Brian the build bunny</a></p>
<p>:-)</p>
http://stackoverflow.com/questions/37710/tips-for-a-software-engineer-performance-review/37754#377542Answer by Vagnerr for Tips for a software engineer performance reviewVagnerr2008-09-01T11:13:27Z2008-09-01T11:13:27Z<p>Performance reviews usually come with your list of objectives. Find your favorite task list management system (be that software of pen and paper) and add your review objectives to your todo list. Break them down into smaller items if possible and track them throughout the review period. The Todo list should include all your day today work tasks as your review objectives are just as important. As you do stuff that meets a review objective (or even part of it) note it down as you go. If there are events that stop you achieving an objective <strong>Note them down!</strong> (for example you have been tasked to build a new development environment but the company won't pay for the hardware) </p>
<p>Then when its comes to your next review take your todo list in with you if makes ticking of your objectives much easier.</p>
http://stackoverflow.com/questions/36415/best-chat-im-tool-for-developers/36461#364613Answer by Vagnerr for Best chat/IM tool for developers?Vagnerr2008-08-30T23:12:35Z2008-08-30T23:12:35Z<p>One alternative if you want an interface that is less graphically intensive or simply want to combine your IM into your favorite IRC client is to have a look at <a href="http://www.bitlbee.org/main.php/news.r.html" rel="nofollow">Bitlbee</a> It is a IM<->IRC gateway application. </p>
<p>It does take a little bit of work to setup, but if you do then you have the option of combining it with <a href="http://www.irssi.org/" rel="nofollow">irssi</a> and <a href="http://en.wikipedia.org/wiki/GNU_Screen" rel="nofollow">screen</a> which allows you to be connected to your IM account from multiple locations simultaneously Very useful if you development requires you to use multiple machines at the same time.</p>
http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/13687#13687Comment by Vagnerr on What is the single most influential book every programmer should read?Vagnerr2009-10-01T18:05:39Z2009-10-01T18:05:39ZMIT have released videos of there lectures which use this book... <a href="http://ocw.mit.edu/OcwWeb/Electrical-Engineering-and-Computer-Science/6-046JFall-2005/CourseHome/index.htm" rel="nofollow">ocw.mit.edu/OcwWeb/…</a>http://stackoverflow.com/questions/1497613/how-can-i-override-perls-open-function-but-use-the-same-filehandle-for-testing/1497632#1497632Comment by Vagnerr on How can I override Perl's open() function but use the same filehandle for testing?Vagnerr2009-09-30T11:55:02Z2009-09-30T11:55:02ZThanks thats nearly what I need sub {open (@_[0],$newfilename) }; works
http://stackoverflow.com/questions/1091685/playing-music-in-open-plan-officeComment by Vagnerr on Playing music in open plan officeVagnerr2009-07-07T11:08:21Z2009-07-07T11:08:21Z<Insert Milton/Office space joke here>http://stackoverflow.com/questions/877470/how-can-i-strip-multiline-c-comments-from-a-file-using-perl/877498#877498Comment by Vagnerr on How can I strip multiline C comments from a file using Perl?Vagnerr2009-05-18T12:36:57Z2009-05-18T12:36:57ZPerl Regexes are "greedy" by default. You would also match "blablah /*From here...*/ foo bar fo bar /*...all the way to here*/"http://stackoverflow.com/questions/305223/jon-skeet-facts/305228#305228Comment by Vagnerr on Jon Skeet Facts?Vagnerr2009-03-06T11:55:43Z2009-03-06T11:55:43ZAfrican or European ?http://stackoverflow.com/questions/378835/a-standard-set-of-questions-to-ask-an-interviewer/378859#378859Comment by Vagnerr on A standard set of questions to ask an interviewer?Vagnerr2009-01-07T11:44:34Z2009-01-07T11:44:34ZHaving a web proxy isn't always a bad thing Henning. If it is there for bandwidth reasons (no reason to make multiple requests for the BBC home page etc). But if they are running a filtering proxy. It is useful to know what app they are using and what the blocked categories are.http://stackoverflow.com/questions/240704/how-can-i-determine-cpan-dependencies-before-i-deploy-a-perl-project/245158#245158Comment by Vagnerr on How can I determine CPAN dependencies before I deploy a Perl project?Vagnerr2008-11-01T20:24:10Z2008-11-01T20:24:10ZInteresting but if you try and use that in a live commercial environment you operations team is going to be a little upset with you and want to see if you are aware of the concepts of stability and security :-)http://stackoverflow.com/questions/183560/forking-subprocesses-in-perl-unit-tests-stops-prove-testharness-exiting/184929#184929Comment by Vagnerr on Forking subprocesses in Perl unit tests stops prove; Test::Harness exitingVagnerr2008-10-08T23:21:13Z2008-10-08T23:21:13ZThanks Tanktalus it turns out all I needed was to close STDERR as well as STDOUT. :-)http://stackoverflow.com/questions/165314/how-do-i-get-my-hands-on-a-dvorak-keyboard/165323#165323Comment by Vagnerr on How do I get my hands on a Dvorak keyboard?Vagnerr2008-10-03T10:13:57Z2008-10-03T10:13:57ZUbunto: System -> Preferences -> Keyboard, Layouts Tab, Add..., Select the Devorak layout of your choice and optionaly set as default. You can then Rightclick your panel, select "Add to panel" and choose keyboard indicator. You can then switch between layoutshttp://stackoverflow.com/questions/166050/can-anyone-recommend-a-free-internet-based-private-wiki/166059#166059Comment by Vagnerr on Can anyone recommend a free internet-based private Wiki?Vagnerr2008-10-03T09:40:15Z2008-10-03T09:40:15ZYep assembla will give you source control (SVN) and wiki facilities. And allows you to make a dump of the data for backing up locally. http://stackoverflow.com/questions/163600/when-not-to-comment-code/164359#164359Comment by Vagnerr on When NOT to comment codeVagnerr2008-10-03T09:36:47Z2008-10-03T09:36:47ZThis rule should not apply to pre-processor statements I think
#ifndef HEADER_NAME_H
:
:
#endif /* HEADER_NAME_H */
Is a useful construct as these can be quite long blockshttp://stackoverflow.com/questions/127324/gssacquirecred-returning-key-table-entry-not-found-errorComment by Vagnerr on gss_acquire_cred returning Key table entry not found errorVagnerr2008-09-24T14:35:21Z2008-09-24T14:35:21ZThe keytab file just contains the "HTTP/srvnfssol1.dev.local@DEV.LOCAL" I <i>think</i> the file only has a binary format if you have a secret key that you are sharing with the KDC or TGS but I am just guessing. The MS page just said to echo that data direct to the file.http://stackoverflow.com/questions/111386/difference-between-ssl-and-kerberos-authentication/111931#111931Comment by Vagnerr on Difference between SSL and Kerberos authentication?Vagnerr2008-09-23T13:59:06Z2008-09-23T13:59:06ZKerberos can use public key cryptography for its session keys. The standard was extended from the shared key mechanisms in 2006 see <a href="http://www.ietf.org/rfc/rfc4556.txt" rel="nofollow">ietf.org/rfc/rfc4556.txt</a> for more detailshttp://stackoverflow.com/questions/120764/ideal-size-working-area-per-developer/120801#120801Comment by Vagnerr on Ideal size working area per developerVagnerr2008-09-23T13:45:15Z2008-09-23T13:45:15ZI like the idea of checking if you can stretch your arms out. Most desks in our building you will hit one person doing that some people can hit up to 3 other neighbors.http://stackoverflow.com/questions/66923/how-do-you-tell-whether-a-string-is-an-ip-or-a-hostname/66947#66947Comment by Vagnerr on How do you tell whether a string is an IP or a hostnameVagnerr2008-09-15T21:06:17Z2008-09-15T21:06:17Z999.999.999.999 is not a valid ip format. your regex needs to be more specific