User J.J. - Stack Overflowmost recent 30 from stackoverflow.com2009-12-17T23:59:32Zhttp://stackoverflow.com/feeds/user/21204http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/129607/what-is-the-difference-between-my-and-local-in-perl/129714#1297147Answer by J.J. for What is the difference between my and local in Perl?J.J.2008-09-24T20:24:08Z2009-10-13T18:39:53Z<p>Dynamic Scoping. It is a neat concept. Many people don't use it, or understand it.</p>
<p>Basically think of my as creating and anchoring a variable to one block of {}, A.K.A. scope.</p>
<pre><code>my $foo if (true); # $foo lives and dies within the if statement.
</code></pre>
<p>So a my variable is what you are used to. whereas with dynamic scoping $var can be declared anywhere and used anywhere.
So with local you basically suspend the use of that global variable, and use a "local value" to work with it. So local creates a temporary scope for a temporary variable.</p>
<pre><code>$var = 4;
print $var, "\n";
&hello;
print $var, "\n";
# subroutines
sub hello {
local $var = 10;
print $var, "\n";
gogo;
print $var, "\n";
}
sub gogo {
$var ++;
}
</code></pre>
<p>This should print:</p>
<pre><code>4
10
11
4
</code></pre>
<p>Sorry for any typo's I didn't run this code.</p>
http://stackoverflow.com/questions/125597/is-it-reasonable-to-have-boost-as-a-dependency-for-a-c-open-source-project/125615#1256153Answer by J.J. for Is it reasonable to have Boost as a dependency for a C++ open source project?J.J.2008-09-24T05:54:05Z2009-10-07T16:13:20Z<p>I would say yes. Both <a href="http://en.wikipedia.org/wiki/Mandriva%5FLinux" rel="nofollow">Mandriva</a> (<a href="http://en.wikipedia.org/wiki/Red%5FHat%5FLinux" rel="nofollow">Red Hat</a> based) and Ubuntu (<a href="http://en.wikipedia.org/wiki/Debian" rel="nofollow">Debian</a> based) have packages for the Boost libriaries.</p>
http://stackoverflow.com/questions/1366067/how-do-i-use-perl-modules-from-their-distribution-directory/1422975#14229751Answer by J.J. for How do I use Perl modules from their distribution directory?J.J.2009-09-14T17:47:12Z2009-09-14T17:47:12Z<p>Installing is the preferred method, but if you just want to try it without installing you can do this.</p>
<pre><code>use strict;
use warnings;
use lib '/home/jeremy/Desktop/Date-Calc-5.8/lib';
use Date::Calc;
</code></pre>
<p>Please switch out my directory with where yours is unzipped. Also please read about <a href="http://perldoc.perl.org/lib.html" rel="nofollow">lib</a>.</p>
http://stackoverflow.com/questions/1330530/how-can-i-send-an-automated-reply-to-the-sender-and-all-recipients-with-procmail/1422926#14229260Answer by J.J. for How can I send an automated reply to the sender and all recipients with Procmail?J.J.2009-09-14T17:33:27Z2009-09-14T17:33:27Z<p>You should be able to accomplish this using the <a href="http://search.cpan.org/dist/Mail-Procmail/lib/Mail/Procmail.pm" rel="nofollow">this procmail</a> module for Perl 5. You could also just use the procmail configuration files to do this as well. </p>
<p>Here's an example of our procmail configuration sending e-mails "through" a perl script.</p>
<pre><code>:0fw
* < 500000
| /etc/smrsh/decode_subject.pl
</code></pre>
<p>I hope that helps get ya started.</p>
http://stackoverflow.com/questions/161872/hidden-features-of-perl/162842#1628421Answer by J.J. for Hidden features of Perl?J.J.2008-10-02T15:04:15Z2009-08-25T00:05:46Z<p>Axeman reminded me of how easy it is to wrap some of the built-in functions.</p>
<p>Before Perl 5.10 Perl didn't have a pretty print(say) like Python.</p>
<p>So in your local program you could do something like:</p>
<pre><code>sub print {
print @_, "\n";
}
</code></pre>
<p>or add in some debug.</p>
<pre><code>sub print {
exists $ENV{DEVELOPER} ?
print Dumper(@_) :
print @_;
}
</code></pre>
http://stackoverflow.com/questions/161872/hidden-features-of-perl/172118#1721183Answer by J.J. for Hidden features of Perl?J.J.2008-10-05T15:12:40Z2009-08-25T00:01:18Z<p>All right. Here is another. <a href="http://en.wikipedia.org/wiki/Scope%5F%28programming%29#Static%5Fversus%5Fdynamic%5Fscoping" rel="nofollow">Dynamic Scoping</a>. It was talked about a little in a different post, but I didn't see it here on the hidden features. </p>
<p>Dynamic Scoping like Autovivification has a very limited amount of languages that use it. <strong>Perl and Common Lisp are the only two I know of that use Dynamic Scoping.</strong></p>
http://stackoverflow.com/questions/483744/why-do-most-languages-not-allow-binary-numbers/484132#4841324Answer by J.J. for Why do most languages not allow binary numbers?J.J.2009-01-27T16:38:17Z2009-08-08T02:50:36Z<p>See <a href="http://perldoc.perl.org/perlnumber.html#SYNOPSIS" rel="nofollow">perldoc perlnumber</a>:</p>
<pre><code>NAME
perlnumber - semantics of numbers and numeric operations in Perl
SYNOPSIS
$n = 1234; # decimal integer
$n = 0b1110011; # binary integer
$n = 01234; # octal integer
$n = 0x1234; # hexadecimal integer
$n = 12.34e-56; # exponential notation
$n = "-12.34e56"; # number specified as a string
$n = "1234"; # number specified as a string
</code></pre>
http://stackoverflow.com/questions/1078580/how-to-find-all-keys-in-a-hash-have-a-value-in-perl/1082313#10823130Answer by J.J. for How to find all Keys in a hash have a value in PerlJ.J.2009-07-04T14:37:50Z2009-07-04T14:37:50Z<p>Here's one more way, using <a href="http://perldoc.perl.org/functions/each.html" rel="nofollow">each</a>. TIMTOWDI</p>
<pre><code> while (my($key, $value) = each(%hash)) {
say "$key has no value!" if ( not defined $value);
}
</code></pre>
http://stackoverflow.com/questions/612892/how-to-deal-with-chronic-time-issues23How to Deal with chronic time issues?J.J.2009-03-04T23:03:28Z2009-05-23T05:04:27Z
<p>I have a developer on my staff that chronically overshoots deadlines, and estimates. On several projects the last week or two everyday I hear "It should be done by the end of the day". This developer does good work.</p>
<p>I have already spoke to him about his problems. He seems genuinely frustrated, and miffed about what to do to correct them.</p>
<p>My Questions are:</p>
<ol>
<li>What kinds of punishments for passing a deadline are effective?</li>
<li>What ways can I coerce this employee to police his actions (time estimates, etc.,) himself?</li>
</ol>
<p><strong>UPDATE</strong>:
Based on the responses; here's what I have figured out. </p>
<ol>
<li>Punishment is a bad idea.</li>
<li>It is natural for an employee to be unable to fix estimating problems without intervention. </li>
<li>Don't make deadlines unless there's company consequences (lost contract) for not being done by then.</li>
<li>Utilize available methods (Agile, Joel's checklist) to help the developer estimate better.</li>
</ol>
<p>Thanks for the links and information. Also thanks for updating my thinking.</p>
http://stackoverflow.com/questions/829447/how-to-find-functions-in-a-cpp-file-that-contain-a-specific-word/829675#829675-1Answer by J.J. for How to find functions in a cpp file that contain a specific wordJ.J.2009-05-06T13:51:26Z2009-05-06T13:51:26Z<p>Like Robert said Regex will help. In command mode start a regex search by typing the "/" character followed by your regex.</p>
<p>Ctags[1] may also be of use to you. It can generate a tag file for a project. This tag file allows a user to jump directly from a function call to it's definition even if it's in another file using "CTRL+]".</p>
http://stackoverflow.com/questions/191997/which-gantt-chart-project-management-tool-would-you-recommend-for-linux5Which Gantt chart/Project management tool would you recommend for linux?J.J.2008-10-10T15:52:59Z2009-04-19T02:29:10Z
<p>I need a Project management tool that works in Linux, and has Gantt charts.</p>
<ol>
<li>It doesn't have to be free, just not expensive.</li>
<li>I don't care how it stores the information I give it, as long as I can access it.</li>
<li>I must be able to <strong>print</strong> the Gantt charts.</li>
<li>Must work in Linux.</li>
</ol>
<p>With those requirements, what can you recommend?</p>
<p>TheObserver asked a windows specific version of this question <a href="http://stackoverflow.com/questions/151787/recommended-chartingreportingdashboard-tool">here</a>. </p>
<p>Thanks for the help everyone.</p>
http://stackoverflow.com/questions/762162/how-can-i-programmatically-create-a-screen-shot-of-a-given-web-site/762196#7621961Answer by J.J. for How can I programmatically create a screen shot of a given Web site?J.J.2009-04-17T21:03:40Z2009-04-17T21:03:40Z<p>I wrote a program in VB.NET that did what you specified, <strong>except for the screen size issue.</strong></p>
<p>I embedded a web control(look at the very bottom of all controls) onto my form, and tweaked it's settings(Hide scroll). I used a timer to wait on dynamic content, and then I used "copyFromScreen" to get the image.</p>
<p>My program had dynamic dimensions(settable via command line). I found that if I made my program larger than the screen, the image would just return black pixels for the off screen area. I did not research farther since my job was complete at that time.</p>
<p>Hope that gives you a good start. Sorry for any wrong wordings. I log onto windows to develop only once every couple of months.</p>
http://stackoverflow.com/questions/720646/why-is-perls-gdgraph-complaining-about-invalid-data-set/723093#7230930Answer by J.J. for Why is Perl's GD::Graph complaining about "Invalid data set"?J.J.2009-04-06T20:31:20Z2009-04-06T20:31:20Z<p>K. I tested and altered you code. The below code works. The array part that everyone mentioned was important, but not your only problem. The example in cpan, was of an anonymous array, so instead of passing @data 2 arrays, you just needed to pass 2 references to @data.</p>
<pre><code>#!/usr/bin/perl
#
use GD::Graph::bars;
my $size = @freq;
my @x_axis = qw(40 44 48 52 64 76 83 104 105 148 149 249 431 665 805 1420 1500);
my @y_axis = qw(16 1 1 6 1 1 1 1 1 1 1 1 1 1 1 2 5);
my $mygraph = GD::Graph::bars->new(500, 300); # line 67
$mygraph->set(x_label => 'Month',
y_label => 'Number of Hits',
title => 'Number of Hits in Each Month in 2002',
) or warn $mygraph->error;
my @data = (\@x_axis,\@y_axis); # the important part.
my $myimage = $mygraph->plot(\@data) or die $mygraph->error;
open(IMG, '>helping_graph.gif') or die $!;
binmode IMG;
print IMG $myimage->gif;
close IMG;
</code></pre>
http://stackoverflow.com/questions/713827/how-can-i-screen-scrape-with-perl/714245#7142450Answer by J.J. for How can I screen scrape with Perl?J.J.2009-04-03T14:47:13Z2009-04-03T14:47:13Z<p>I use <a href="http://search.cpan.org/~gaas/libwww-perl-5.825/lib/LWP/UserAgent.pm" rel="nofollow">LWP::UserAgent</a> for most of my screen scraping needs. You can also Couple that with <a href="http://search.cpan.org/~gaas/libwww-perl-5.825/lib/HTTP/Cookies.pm" rel="nofollow">HTTP::Cookies</a> if you need Cookies support.</p>
<p>Here's a simple example on how to get source.</p>
<pre><code>use LWP;
use HTTP::Cookies;
my $cookie_jar = HTTP::Cookies->new;
my $browser = LWP::UserAgent->new;
$browser->cookie_jar($cookie_jar);
$resp = $browser->get("https://www.stackoverflow.com");
if($resp->is_success) {
# Play with your source here
$source = $resp->content;
$source =~ s/^.*<table>/<table>/i; # this is just an example
print $source; # not a solution to your problem.
}
</code></pre>
http://stackoverflow.com/questions/444235/revision-control-locking-is-the-jury-still-out/444275#4442751Answer by J.J. for Revision control locking: Is the jury still out?J.J.2009-01-14T19:10:43Z2009-03-31T23:20:16Z<p>Here's my $0.02.</p>
<p>Locking is an old school of thought for textual Code. Once programmers use merging a couple of times they learn and usually like the power of it.</p>
<p>Valid cases for locks still exist.</p>
<ul>
<li>Graphics alterations. 99% of the time you cannot merge 2 peoples work on the same graphic.</li>
<li>Binary updates.</li>
<li>Sometimes code can be complex/simple enough to justify only 1 person working on it at a time. In this case it's a project management choice to use a feature.</li>
</ul>
http://stackoverflow.com/questions/611377/how-can-i-impress-people-with-perls-capabilities/611692#6116924Answer by J.J. for How can I impress people with Perl's capabilities?J.J.2009-03-04T17:49:53Z2009-03-04T17:49:53Z<p>One of the coolest things to me is using Perl for code generation. Especially when it comes other languages. I have wrote several small scripts to generate C++ classes, and Java code.</p>
<p>Back when I was a Perl neophyte. I wrote this piece of code, that generated scheme files based on our database. About 2 hours later I found out that I didn't need to do this for DBIx::Class. This is not great Perl code(Don't down vote me for it. It's just an example.), but it accurately generated like 200 scheme files for me.</p>
<pre><code>my @db = `mysql -u XXXXX -pXXXXX --skip-column-names -e "show databases;"`;
foreach my $db_name (@db) {
chomp($db_name);
my @tables = `mysql -u XXXXX -pXXXXX --skip-column-names -e "use $db_name; show tables;"`;
$_ =~ s/\n// foreach(@tables);
unless ( -e "$db_name.pm") {
open(DBFILE, '>', "$db_name.pm");
print DBFILE "package mysql::schemes::$db_name;\n";
print DBFILE "use base qw/DBIx::Class::Schema/;\n\n";
print DBFILE '__PACKAGE__->load_classes(qw/' . join(' ', @tables) . "/);\n\n";
print DBFILE "1;";
close(DBFILE);
}
mkdir $db_name unless ( -d $db_name or -e $db_name );
foreach my $table_name (@tables) {
my @columns = `mysql -u XXXX -pXXXX --skip-column-names -e "USE $db_name; desc \\\`$table_name\\\`;"`;
$_ =~ s/\n$// foreach(@columns);
my (@names, $primary_key);
foreach (@columns) {
my ($name, $type, $null, $key, $default) = split(/\t/, $_);
chomp($default);
push(@names, $name);
$primary_key = $name if($key ne '');
}
unless ( -e "$db_name/$table_name.pm" ) {
open(TBFILE, '>', "$db_name/$table_name.pm");
print TBFILE "package mysql::schemes::" . $db_name . "::" . $table_name . ";\n";
print TBFILE "use base qw/DBIx::Class/;\n\n";
print TBFILE "__PACKAGE__->load_components(qw/PK::Auto Core/);\n";
print TBFILE "__PACKAGE__->table('$table_name');\n";
print TBFILE "__PACKAGE__->add_columns(qw/" . join(' ', @names) . "/;\n";
print TBFILE "__PACKAGE__->set_primary_key('$primary_key');\n\n" unless($primary_key eq '');
print TBFILE "1;";
close(TBFILE);
}
}
}
</code></pre>
http://stackoverflow.com/questions/592194/filenames-and-linenumbers-for-the-matches-of-cat-and-grep/592222#5922220Answer by J.J. for Filenames and linenumbers for the matches of cat and grepJ.J.2009-02-26T20:09:21Z2009-02-26T20:36:40Z<p>Use "man grep" to see other features.</p>
<pre><code>for i in $(ls *.php); do grep -n --with-filename "google" $i; done;
</code></pre>
http://stackoverflow.com/questions/592172/how-often-do-you-reevaluate-and-upgrade-your-development-environment-and-dev-too/592313#5923132Answer by J.J. for How often do you reevaluate and upgrade your development environment and dev. tools?J.J.2009-02-26T20:32:50Z2009-02-26T20:32:50Z<p><strong>IDE's</strong>. I tend to stick with one I know will grow, and support my language. In my dev environment it's <a href="http://en.wikipedia.org/wiki/Integrated%5Fdevelopment%5Fenvironment#Attitudes%5Facross%5Fdifferent%5Fcomputing%5Fplatforms" rel="nofollow">vim</a>. It is actively developed, and has many many scripts(kinda like plugins) as well as documentation for DIY. Also leaning an IDE takes time, and becoming good at it, using it efficiently takes more time.</p>
<p><strong>Revision Control</strong>. I try to stay just below the bleeding edge. The benefits of new features are important. For example Subversion 1.4, only supported rudimentary merging. Subversion 1.5 has overhauled their merging system, and added <a href="http://svn.collab.net/repos/svn/tags/1.5.0/CHANGES" rel="nofollow">new features</a>.</p>
<p><strong>Task and project management</strong>. I tend to do that only every couple of years, and only if there is a good perceived benefit. Otherwise I will continue to upgrade my current system to the current stable release every couple of months.</p>
<p><strong>Libraries</strong>. They are a toss up. Since most everything I do does not end up in a shipped out product. I feel more free to upgrade often, but we tend to shy away from upgrading when backwards comparability is broken.</p>
<p>Hope my $0.02 was useful.</p>
http://stackoverflow.com/questions/591613/how-do-i-accurately-determine-the-location-of-a-visitor-to-my-website/591652#5916520Answer by J.J. for How do I accurately determine the location of a visitor to my website?J.J.2009-02-26T17:49:33Z2009-02-26T17:49:33Z<p>Just for the country region. <a href="http://www.maxmind.com/app/api" rel="nofollow">Geoip libraries</a> are useful.</p>
<p>There's even a command line program in linux.</p>
<p>Also you can grab enviornment variables with your PHP script.</p>
<p>Here's a Perl script I wrote a while back to <a href="http://directfreight.com/jeremy/discovery.pl" rel="nofollow">display</a> the variables. Nothing fancy.</p>
<pre><code>#!/usr/bin/perl
print 'Content-type: text/HTML' . "\n\n";
print "<body><center>";
print "<table border=1>";
print '<tr><td>' . $_ . "<td>" . $ENV{$_} . "<br>\n" foreach sort (keys(%ENV)) ;
</code></pre>
<p>You can see the browser</p>
http://stackoverflow.com/questions/566662/how-to-handle-people-who-lie-on-their-resume/566896#5668962Answer by J.J. for How to handle people who lie on their resumeJ.J.2009-02-19T19:58:52Z2009-02-19T19:58:52Z<ol>
<li>No. Only test them on the skills pertinent to the job.</li>
<li>If it is small embellishment, recommend them. If it is outrageous, don't.</li>
</ol>
<p>My reasoning</p>
<p>In <a href="http://rads.stackoverflow.com/amzn/click/1934356050" rel="nofollow">Pragmatic Thinking and Learning</a>( By Andy Hunt. One of the co-authors of <a href="http://rads.stackoverflow.com/amzn/click/020161622X" rel="nofollow">The Pragmatic Programmer</a>) Andy mentions a study where research determined that most people unknowingly exaggerate their skill set. They found that people really thought their skills were that good. If I remember right Andy point out more than one study that confirmed this. </p>
<p>Andy also points out to become a Guru in any particular skill, It takes most people 10 years. He referenced several famous people in several fields. This is why I like those 1-10 scales. I tend to put the number of years I have experience in a skill with some sort of weight one way or another. The problem is even though I like them, people that process applications think that I am not particularly knowledgeable.</p>
http://stackoverflow.com/questions/537078/is-there-a-perl-plugin-for-intellij/559864#5598641Answer by J.J. for Is there a Perl plugin for IntelliJ?J.J.2009-02-18T04:35:30Z2009-02-18T04:35:30Z<p>Currently I believe there is no Perl plugin for IntelliJ. </p>
<p>The IntelliJ website has <a href="http://www.jetbrains.com/idea/plugins/plugin_developers.html" rel="nofollow">several tutorials</a> on how to write plugins. They also have a special sections that is devoted to <a href="http://www.jetbrains.com/idea/plugins/developing_custom_language_plugins.html" rel="nofollow">developing language plugins</a>.</p>
<p>I have no idea how hard it would be, but you would definitely learn a lot. </p>
<p>I would guess that modifying an existing plugin would probably just create a mess, but that's just a guess.</p>
http://stackoverflow.com/questions/555429/what-comes-next-after-learning-perl/555457#5554575Answer by J.J. for What comes next after "Learning Perl"?J.J.2009-02-17T03:37:41Z2009-02-17T03:37:41Z<p>There is of course the next step. <a href="http://rads.stackoverflow.com/amzn/click/0596102062" rel="nofollow">Intermediate Perl</a>. This book will teach you some of the the things you mentioned as eluding you.</p>
http://stackoverflow.com/questions/435990/why-do-programmers-love-hate-objective-c/436258#4362580Answer by J.J. for Why do Programmers Love/Hate Objective-C?J.J.2009-01-12T17:36:28Z2009-02-12T04:17:39Z<p>I don't have much of a problem with the language.</p>
<p>I at first didn't like the Frameworks I had to work with. They all use <a href="http://en.wikipedia.org/wiki/CamelCase#Current_usage_in_computing" rel="nofollow">camel case</a>. Where as I use <a href="http://en.wikipedia.org/wiki/Naming_conventions_(programming)#Multiple-word_identifiers" rel="nofollow">underscore separated</a> words for my variable names. </p>
<p>But the more I got used to Objective-C and Cocoa the more I liked the clash. It helped me understand what was part of the framework and what was not.</p>
http://stackoverflow.com/questions/534334/dealing-with-dates/534346#5343461Answer by J.J. for Dealing with datesJ.J.2009-02-10T21:44:46Z2009-02-10T21:44:46Z<p>Here's <a href="http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html" rel="nofollow">many functions</a> that can help ya out.</p>
http://stackoverflow.com/questions/512222/is-it-a-good-idea-to-eliminate-compiler-warnings/512260#5122601Answer by J.J. for Is it a good idea to eliminate compiler warnings?J.J.2009-02-04T17:01:00Z2009-02-04T17:01:00Z<p>My opinion. Yes.</p>
<p>Like you said at the end. It helps make the real errors more prominent.</p>
<p>When you run a Perl cgi script that outputs warnings on an Apache Server, the warnings get logged in error.log. Why waste the space. Fix the warnings.</p>
<p>Also I think it's a learning experience to better understand the language, and compiler. I didn't realize dynamic scoping was even a feature of Perl until I started using strict. </p>
http://stackoverflow.com/questions/164574/keypoints-morphing/509121#5091210Answer by J.J. for Keypoints morphingJ.J.2009-02-03T22:09:09Z2009-02-03T22:09:09Z<p>An older piece of software by <a href="http://en.wikipedia.org/wiki/Gryphon_Software_Morph" rel="nofollow">Gryphon Software</a> could do image morphing. I saw an article about it from 1994. I couldn't find a company site, so they may be abandon ware now.</p>
<p>Her is a quote from a Wikipedia article about a film editing <a href="http://en.wikipedia.org/wiki/Dissolve_(film)" rel="nofollow">technique called Dissolve</a>.</p>
<blockquote>
<p>In non-linear video editing, a dissolve is done in software, by interpolating gradually between the RGB values of each pixel of the image.</p>
</blockquote>
<p>Hope that helps.</p>
http://stackoverflow.com/questions/507441/best-weather-apis/507474#5074741Answer by J.J. for Best Weather APIs?J.J.2009-02-03T15:09:59Z2009-02-03T15:09:59Z<p>I know of 1 company that has used <a href="http://www.programmableweb.com/api/noaa-weather-service" rel="nofollow">Weather.gov</a>'s in the past.</p>
http://stackoverflow.com/questions/507387/how-can-i-parse-command-line-switches-in-perl/507450#5074501Answer by J.J. for How can I parse command-line switches in Perl?J.J.2009-02-03T15:06:19Z2009-02-03T15:06:19Z<ul>
<li>Add a -d switch for your directory. My opinion is, "if a command is optional it should have a switch to enable it." </li>
<li>Also I would remove the switches(and their arguments) from the array as I read them, leaving just my "expression". If there's more than 1 element in that array, someone wrote something wrong.</li>
</ul>
http://stackoverflow.com/questions/505755/what-is-a-good-book-about-svn/505758#50575811Answer by J.J. for What is a good book about SVN?J.J.2009-02-03T01:43:28Z2009-02-03T02:11:48Z<p>Here's my favorite: <a href="http://svnbook.red-bean.com/" rel="nofollow">Version Control with Subversion</a></p>
http://stackoverflow.com/questions/501406/developing-in-a-hostile-environment/501432#5014322Answer by J.J. for Developing in a hostile environmentJ.J.2009-02-01T19:31:03Z2009-02-01T20:10:07Z<p>Anything that interferes with you doing your job is good to bring up in a meetings.</p>
<p>Ex:</p>
<ul>
<li>This Virus Scanner runs 4 times a day while I am at work. During that run my compile times take 5 times as long, and the use of my other development tools is brought down to a crawl.</li>
<li>The web filters are overzealous. I have attempted to access sites x, y, and z for extra development information, and have been unable. The time it took to find a good resources was doubled because of this.</li>
</ul>
<p>And so on.</p>
http://stackoverflow.com/questions/1835636/how-to-find-a-word-not-preceded-by-another-specific-word/1835754#1835754Comment by J.J. on How to find a word NOT preceded by another specific word?J.J.2009-12-04T14:18:29Z2009-12-04T14:18:29ZPersonally, when I find a pattern hard to match using regex; I need to go learn more regex, or get a refresher. I think that making an inflexible lookup table when it is not needed is no way to grow as a programmer.http://stackoverflow.com/questions/1846977/rpmbuild-errorComment by J.J. on rpmbuild error.....................J.J.2009-12-04T13:51:06Z2009-12-04T13:51:06ZThis should be on serverfault.http://stackoverflow.com/questions/1843932/is-lwpuseragent-not-thread-safeComment by J.J. on Is LWP::UserAgent not thread-safe?J.J.2009-12-04T00:43:47Z2009-12-04T00:43:47ZI would check Digest::MD5. Every time I use it I end up wrapping it in an eval.http://stackoverflow.com/questions/444920/programming-test-for-hiring-iphone-developers/445110#445110Comment by J.J. on Programming test for hiring iPhone developersJ.J.2009-09-28T21:11:12Z2009-09-28T21:11:12Z@Jonathan: How does it feel to pick on my post 9 months later? Do you really have a full understanding of my comprehension of a subject based on 2 sentences I wrote? Ok, what if you you did peg me? It has been 9 months! Who's to say I haven't become an expert in that time frame? Does your comment really add to this discussion? All I saw was you make me look bad/dumb to people who halfway agree with you, and made me feel like I was picked on.http://stackoverflow.com/questions/161872/hidden-features-of-perl/162842#162842Comment by J.J. on Hidden features of Perl?J.J.2009-09-09T17:23:34Z2009-09-09T17:23:34Z@Chris: It's true print cannot be overridden in this manner. But not that it cannot be overridden absolutely. Using some sub modules of B and some tricks you can find on <a href="http://perlmonks.com" rel="nofollow">perlmonks.com</a> you can override it.http://stackoverflow.com/questions/444235/revision-control-locking-is-the-jury-still-out/444275#444275Comment by J.J. on Revision control locking: Is the jury still out?J.J.2009-07-15T23:32:20Z2009-07-15T23:32:20Z@Stephan: Explain why they are not valid in depth please. Also what revision control package contains this indicator function that you speak of? I have used subversion almost exclusively and to the best of my knowledge there isn't an "indicator" action in it. http://stackoverflow.com/questions/793532/how-do-i-localise-variables-in-another-package-when-i-only-know-their-names-at-ru/793925#793925Comment by J.J. on How do I localise variables in another package when I only know their names at runtime?J.J.2009-04-27T16:27:10Z2009-04-27T16:27:10ZI believe that daotoad method is mentioned in "Mastering Perl", or "Advanced Perl".http://stackoverflow.com/questions/767776/apache-1-3-error-logging-perlComment by J.J. on Apache (1.3) Error Logging & PerlJ.J.2009-04-20T14:14:53Z2009-04-20T14:14:53ZYou changes a few things were? In your perl script, or in apache's configuration?http://stackoverflow.com/questions/767783/how-can-i-check-if-a-windows-device-driver-is-loaded-using-perl/768256#768256Comment by J.J. on How can I check if a Windows device driver is loaded using Perl?J.J.2009-04-20T14:13:18Z2009-04-20T14:13:18Z<a href="http://search.cpan.org/~jdb/Win32-0.39/Win32.pm" rel="nofollow">search.cpan.org/~jdb/Win32-0.39/Win32.pm</a> Link to the Win32::APIhttp://stackoverflow.com/questions/713827/how-can-i-screen-scrape-with-perl/714369#714369Comment by J.J. on How can I screen scrape with Perl?J.J.2009-04-03T18:22:14Z2009-04-03T18:22:14ZDavid: Can you expand on this. I always thought WWW::Mechanize was more for automated testing. What puts it a cut above?http://stackoverflow.com/questions/681557/xml-cannot-be-displayed-error-from-perl-cgi-script-using-mysql/681721#681721Comment by J.J. on "XML cannot be displayed" error from Perl CGI script using MySQLJ.J.2009-03-25T18:44:21Z2009-03-25T18:44:21Z@Nikki: "perl somefile.cgi" This will output raw HTML/text to your screen.http://stackoverflow.com/questions/682695/how-do-i-resolve/682709#682709Comment by J.J. on How do I resolve J.J.2009-03-25T18:40:00Z2009-03-25T18:40:00Z@Nikki: What bedwyr has wrote should be enough information to get you past this problem. If it isn't please explain in more detail what you are getting stuck on.http://stackoverflow.com/questions/612892/how-to-deal-with-chronic-time-issues/612945#612945Comment by J.J. on How to Deal with chronic time issues?J.J.2009-03-04T23:28:20Z2009-03-04T23:28:20ZYour first question. He is the latter. It seems to be a mix of careful and over engineer. I have addressed this with him. His over engineering seems to be the biggest part of it. He attempts to limit it, but still fails.http://stackoverflow.com/questions/612892/how-to-deal-with-chronic-time-issues/612896#612896Comment by J.J. on How to Deal with chronic time issues?J.J.2009-03-04T23:18:38Z2009-03-04T23:18:38ZI don't know much(If anything) about agile development. Can you expand on why this methodology is a viable solution?http://stackoverflow.com/questions/592194/filenames-and-linenumbers-for-the-matches-of-cat-and-grep/592222#592222Comment by J.J. on Filenames and linenumbers for the matches of cat and grepJ.J.2009-02-26T20:37:03Z2009-02-26T20:37:03ZYou right. Changed the code to work.