User Dan - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T01:25:17Z http://stackoverflow.com/feeds/user/17121 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1782107/how-do-i-retrieve-the-terminal-width-in-perl/1782127#1782127 3 Answer by Dan for How do I retrieve the terminal width in Perl? Dan 2009-11-23T09:49:24Z 2009-11-23T09:49:24Z <p><a href="http://search.cpan.org/perldoc?Term%3A%3ASize%3A%3AAny" rel="nofollow">Term::Size::Any</a> looks to be what you're after.</p> http://stackoverflow.com/questions/1775572/moose-expiring-cached-results-of-calculations-when-attribute-values-change/1775598#1775598 9 Answer by Dan for Moose: Expiring cached results of calculations when attribute values change? Dan 2009-11-21T14:14:49Z 2009-11-21T14:14:49Z <p>If I understand you correctly, you can use <a href="http://search.cpan.org/~flora/Moose-0.93/lib/Moose/Manual/Attributes.pod#Triggers" rel="nofollow">triggers</a> to clear attributes when one is set. Here's an example:</p> <pre><code>has 'foo' =&gt; ( is =&gt; 'rw', trigger =&gt; sub{ my ($self) = @_; $self-&gt;clear_bar; } ); has 'bar' =&gt; ( is =&gt; 'rw', clearer =&gt; 'clear_bar', lazy =&gt; 1, default =&gt; sub{ my ($self) = @_; return calculate_bar( ... ); } ); </code></pre> <p>So, any writes to <code>foo</code> via <code>$obj-&gt;foo($newvalue)</code> will cause <code>bar</code> to be cleared, and recreated on next access.</p> http://stackoverflow.com/questions/1723180/jquery-what-is-the-rule-when-do-i-use-this-and-when-is-this-enough/1723210#1723210 2 Answer by Dan for [jQuery] What is the rule? when do i use $(this) and when is "this" enough? Dan 2009-11-12T15:49:21Z 2009-11-12T15:49:21Z <p><code>$(this)</code> adds the extra JQuery "sugar" to the element and then returns it. So the rule is simply that you only need to use <code>$(this)</code> if you want to call JQuery methods on it, and it hasn't already been passed through <code>$(..)</code>.</p> http://stackoverflow.com/questions/1712307/how-can-i-use-lib-the-appropriate-directory-depending-on-installation-location/1717939#1717939 2 Answer by Dan for How can I "use lib" the appropriate directory depending on installation location? Dan 2009-11-11T20:44:42Z 2009-11-11T20:50:37Z <p><a href="http://search.cpan.org/perldoc?FindBin%3A%3Alibs" rel="nofollow">FindBin::libs</a> is excellent for that. I've used it for a while in a large system with no problems at all.</p> <p>The default invocation looks like it'll work for you, simply:</p> <pre><code>use FindBin::libs; </code></pre> <p>This will search for all the <code>./lib</code> dirs in all the parent directories of the current file's dir and <code>use lib</code> them. So, for example, if your script lives in <code>/home/w/myapp_live/scripts/defurblise_widgets.pl</code> (and <code>use()</code>es FindBin::libs), it will look for:</p> <pre><code>/home/w/myapp_live/scripts/lib /home/w/myapp_live/lib /home/w/lib /home/lib /lib # (presumably!) </code></pre> <p>Any that it finds with be added to you <code>@INC</code> with <code>use lib</code>.</p> <p>But, if that's not quite what you need, it's a very flexible module. I'd be surprised if you can't find a way to make it do what you want.</p> http://stackoverflow.com/questions/1634341/overloading-arithmetic-operators-in-javascript/1634678#1634678 1 Answer by Dan for Overloading Arithmetic Operators in JavaScript? Dan 2009-10-28T01:22:22Z 2009-10-28T01:22:22Z <p>As far as I'm aware, Javascript (at least as it exists now) doesn't support operator overloading.</p> <p>The best I can suggest is a class method for making new quota objects from several others. Here's a quick example of what I mean:</p> <pre><code>// define an example "class" var NumClass = function(value){ this.value = value; } NumClass.prototype.toInteger = function(){ return this.value; } // Add a static method that creates a new object from several others NumClass.createFromObjects = function(){ var newValue = 0; for (var i=0; i&lt;arguments.length; i++){ newValue += arguments[i].toInteger(); } return new this(newValue) } </code></pre> <p>and use it like:</p> <pre><code>var n1 = new NumClass(1); var n2 = new NumClass(2); var n3 = new NumClass(3); var combined = NumClass.createFromObjects(n1, n2, n3); </code></pre> http://stackoverflow.com/questions/1634203/pre-tag-in-html-with-fixed-width/1634247#1634247 0 Answer by Dan for <pre> tag in HTML with fixed width Dan 2009-10-27T23:19:40Z 2009-10-27T23:19:40Z <pre><code>pre{ white-space:pre-wrap; } </code></pre> <p>..does what you want in Firefox and Chrome - wraps the lines but preserves whitespace. But unfortunately IE doesn't seem to support it (although I haven't looked in IE8 yet).</p> <p>Edit: IE8 <a href="http://msdn.microsoft.com/en-us/library/ms531182%28VS.85%29.aspx" rel="nofollow">supports it</a>.</p> http://stackoverflow.com/questions/1632717/request-for-comments-what-should-the-syntax-be-to-include-code-snippets-in-markd/1633353#1633353 1 Answer by Dan for Request for comments: What should the syntax be to include code snippets in Markdown? (from external files) Dan 2009-10-27T20:08:27Z 2009-10-27T20:08:27Z <p>I'd be more inclined to come up with a general means to extend Markdown syntax, and then use that to provide support for an include function. So for example you could define syntax like (I'm not really suggesting this particular syntax, just an example):</p> <pre><code>[[command: arg arg arg...]] </code></pre> <p>..where <code>command</code> refers to a command that the markdown parser doesn't understand, but can call back to something else to process it. Then you can build an include function that will work with markdown, but not actually be part of it. Something like:</p> <pre><code>[[include: src/foo/bar.md]] </code></pre> <p>Oh and if you do this, I'd probably not provide a means to include a partial file, at least not by using line numbers - as it means you have to go back and edit all the include calls if you change the length of the document, which actually makes reuse harder (if you could come up with a way to tag sections, that might work better).</p> http://stackoverflow.com/questions/1627945/in-perl-how-do-you-access-a-value-from-a-reference-in-an-array-of-hashrefs/1628203#1628203 5 Answer by Dan for In Perl, how do you access a value from a reference in an array of hashrefs? Dan 2009-10-27T00:56:53Z 2009-10-27T05:03:51Z <p>The error message suggests you're actually trying to use the string "<code>HASH(0x100878050)</code>" as a hashref. So I suspect you've somehow managed to stringify your hashes (ie, you used them as strings, and Perl turned them into strings for you). One way this can happen is if you assign a hashref to a hash key (hash keys can only be strings), or by quoting variables in an assignment like this <code>$array[0] = "$hashref"</code>.</p> <p>So inside <code>${$allDirArray}[$i]</code> is a string containing "HASH(0x100878050)", literally that, in a string. Not a hash.</p> <p>Best bet to confirm this is probably to dump the data structure. You can do this with <a href="http://search.cpan.org/perldoc?Data%3A%3ADumper" rel="nofollow">Data::Dumper</a>:</p> <pre><code>use Data::Dumper; print Dumper($allDirArray); </code></pre> http://stackoverflow.com/questions/1623108/selectively-counting-delimited-field-values-and-creating-a-hash-using-map/1628237#1628237 0 Answer by Dan for Selectively counting delimited field values and creating a hash using map Dan 2009-10-27T01:09:51Z 2009-10-27T01:09:51Z <p>If there's any chance you can perform this processing as the file is read, then I'd do it. Something like this:</p> <pre><code>my %year_count; while (my $line = &lt;$fh&gt;){ chomp $line; my ($year, $num) = split /\|/, $line; if ($num &gt; $year_count{$year} || !defined $year_count{$year}) $year_count{$year} = $num; } } </code></pre> <p>if you want to use an array, map isn't really the best choice (since you're not transforming the list, you're processing it down to something different). To be honest the most sensible array-processing would probably be the same as the above, but in a foreach instead:</p> <pre><code>my %year_count; foreach my $line (@info){ my ($year, $num) = split /\|/, $line; if ($num &gt; $year_count{$year} || !defined $year_count{$year}) $year_count{$year} = $num; } } </code></pre> http://stackoverflow.com/questions/164432/what-real-life-bad-habits-has-programming-given-you/164535#164535 333 Answer by Dan for What real life bad habits has programming given you? Dan 2008-10-02T20:51:17Z 2009-06-20T21:12:40Z <p>It's ruined my ability to read normal English without wanting to hurt someone.</p> <p>Punctuation now infuriates me. For example:</p> <pre>She asked around (quietly.)</pre> <p>Is apparently the correct way to write a sentence that ends in a bracketed phrase. But my brain refuses to accept it.</p> <p>Also, unterminated quote characters (which is, I'm told, perfectly acceptable when quoting larger passages) make me want to stab people in the eyes.</p> http://stackoverflow.com/questions/130404/javascript-data-formatting-pretty-printer 4 JavaScript data formatting/pretty printer Dan 2008-09-24T22:46:53Z 2009-06-03T21:36:00Z <p>I'm trying to find a way to 'pretty print' a JavaScript data structure in a human-readable form for debugging. </p> <p>I have a rather big and complicated data structure being stored in JS and I need to write some code to manipulate it. In order to work out what I'm doing and where I'm going wrong, what I really need is to be able to see the data structure in its entirety, and update it whenever I make changes through the UI.</p> <p>All of this stuff I can handle myself, apart from finding a nice way to dump a JavaScript data structure to a human-readable string. JSON would do, but it really needs to be nicely formatted and indented. I'd usually use Firebug's excellent DOM dumping stuff for this, but I really need to be able to see the entire structure at once, which doesn't seem to be possible in Firebug.</p> <p>Any suggestions welcome, thanks in advance.</p> http://stackoverflow.com/questions/471681/how-do-i-fork-properly-with-modperl2 2 How do I fork properly with mod_perl2? Dan 2009-01-23T02:31:58Z 2009-01-23T03:16:53Z <p>Hi there. I'm having trouble forking a long-running process from some code running under mod_perl2. </p> <p>Everything works for the most part, but it seems that the forked process is holding open handles to Apache's logfiles - this means Apache won't restart while the process is running (I get a 'failed to open logfiles' message).</p> <p>Here's the code I'm using:</p> <pre><code>use POSIX; # required for setsid # Do not wait for child processes to complete $SIG{CHLD} = 'IGNORE'; # fork (and make sure we did!) defined (my $kid = fork) or die "Cannot fork: $!\n"; if ($kid) { return (1, $kid); }else { # chdir to /, stops the process from preventing an unmount chdir '/' or die "Can't chdir to /: $!"; # dump our STDIN and STDOUT handles open STDIN, '/dev/null' or die "Can't read /dev/null: $!"; open STDOUT, '&gt;/dev/null' or die "Can't write to /dev/null: $!"; # redirect for logging open STDERR, '&gt;', $log_filename or die "Can't write to log: $!"; # Prevent locking to apache process setsid or die "Can't start a new session: $!"; # execute the command exec( $cmd, @args ); die "Failed to exec"; } </code></pre> <p>Back in the mod_perl1 days, I recall using <code>$r-&gt;cleanup_for_exec</code> to solve this problem, but it doesn't seem to be supported under mod_perl2. (Edit: <a href="http://perl.apache.org/docs/2.0/user/porting/compat.html#C__r_E_gt_cleanup_for_exec_" rel="nofollow">Apparently</a> it's not required any more..)</p> <p>Any advice on how to correctly start a long-running process from mod_perl2 without these problems would be greatly appreciated!</p> http://stackoverflow.com/questions/388187/whats-the-best-way-to-make-a-deep-copy-of-a-data-structure-in-perl/388289#388289 3 Answer by Dan for What's the best way to make a deep copy of a data structure in Perl? Dan 2008-12-23T06:08:03Z 2008-12-23T06:08:03Z <p><a href="http://search.cpan.org/~rdf/Clone-0.30/Clone.pm" rel="nofollow">Clone</a> is probably what you want for that. At least, that's what all the code I've seen uses.</p> http://stackoverflow.com/questions/230467/are-regex-tools-like-regexbuddy-a-good-idea/230690#230690 4 Answer by Dan for Are regex tools (like RegexBuddy) a good idea? Dan 2008-10-23T17:43:50Z 2008-10-23T17:43:50Z <p>Regular expressions are just one of the many tools available to you. I don't generally agree with the oft-cited Zawinski quote, as with any technology or technique, there are both good and bad ways to apply them.</p> <p>Personally, I see things like RegexBuddy and the free <a href="http://www.weitz.de/regex-coach/" rel="nofollow">Regex Coach</a> primarily as learning tools. There are certainly times when they can be helpful to debug or understand existing regexes, but generally speaking, if you've written your regex using a tool, then it's going to be very hard to maintain it.</p> <p>As a Perl programmer, I'm very familiar with both good and bad regular expressions, and have been using even complicated ones in production code successfully for many years. Here are a few of the guidelines I like to stick to that have been gathered from various places:</p> <ul> <li><strong>Don't use a regex when a string match will do.</strong> I often see code where people use regular expressions in order to match a string case-insensitively. Simply lower- or upper-case the string and perform a standard string comparison.</li> <li><strong>Don't use a regex to see if a string is one of several possible values.</strong> This is unnecessarily hard to maintain. Instead place the possible values in an array, hash (whatever your language provides) and test the string against those.</li> <li><strong>Write tests!</strong> Having a set of tests that specifically target your regular expression makes development significantly easier, particularly if it's a vaguely complicated one. Plus, a few tests can often answer many of the questions a maintenance programmer is likely to have about your regex.</li> <li><strong>Construct your regex out of smaller parts.</strong> If you really need a big complicated regex, build it out of smaller, testable sections. This not only makes development easier (as you can get each smaller section right individually), but it also makes the code more readable, flexible and allows for thorough commenting.</li> <li><strong>Build your regular expression into a dedicated subroutine/function/method.</strong> This makes it very easy to write tests for the regex (and <em>only</em> the regex). it also makes the code in which your regex is used easier to read (a nicely named function call is considerably less scary than a block of random punctuation!). Dropping huge regular expressions into the middle of a block of code (where they can't easily be tested in isolation) is extremely common, and usually very easy to avoid.</li> </ul> http://stackoverflow.com/questions/218912/linux-command-like-cat-to-read-a-specified-quantity-of-characters/218940#218940 14 Answer by Dan for Linux command (like cat) to read a specified quantity of characters Dan 2008-10-20T15:59:09Z 2008-10-20T15:59:09Z <p><code>head</code> works too:</p> <pre><code>head -c 100 file # returns the first 100 bytes in the file </code></pre> <p>..will extract the first 100 bytes and return them. </p> <p>What's nice about using <code>head</code> for this is that the syntax for <code>tail</code> matches:</p> <pre><code>tail -c 100 file # returns the last 100 bytes in the file </code></pre> http://stackoverflow.com/questions/216212/how-do-you-maintain-development-code-and-production-code/216265#216265 6 Answer by Dan for How do you maintain development code and production code? Dan 2008-10-19T10:43:40Z 2008-10-20T15:52:57Z <p>For what it's worth, this is how we do it. </p> <p>Most development is performed in trunk, although experimental features or things that might break the system significantly tend to get their own branch. This works out pretty well as it means every developer always has the latest version of everything in their working copy.</p> <p>It does mean that it's important to keep trunk in vaguely working order, as it's perfectly possible to completely break it. In practice that doesn't happen often, and is rarely a significant problem.</p> <p>For a production release, we branch trunk, stop adding new features, and work on bugfixing and testing the branch (regularly merging back into trunk) until it's ready for release. At which point we do a final merge into trunk to make sure everything is in there, and then release.</p> <p>Maintenance can then be performed on the release branch as necessary, and those fixes can be easily merged back into trunk.</p> <p>I don't claim this to be a perfect system (and it still has some holes - I don't think our release management is a tight enough process yet), but it works well enough.</p> http://stackoverflow.com/questions/218883/html-links-and-usability/218898#218898 1 Answer by Dan for HTML Links and Usability Dan 2008-10-20T15:49:59Z 2008-10-20T15:49:59Z <p>Generally speaking, links should be underlined (and blue!). If you don't want to underline them, that's fine, as long as they're identifiable.</p> <p>Underlining text that <em>isn't</em> a link is <em>far</em> worse than not underlining links.</p> http://stackoverflow.com/questions/218623/why-use-monospace-fonts-in-your-ide/218749#218749 22 Answer by Dan for Why use monospace fonts in your IDE? Dan 2008-10-20T15:06:25Z 2008-10-20T15:27:31Z <p>I've never even considered coding in a proportional font before. So in the interests of science I just switched my editor over to give it a go. </p> <p>Here are a few observations after fixing a couple of easy tickets:</p> <ul> <li>Code seems extremely dense. Most of my code is around 80 columns, rarely over 100. A proportional fonts squishes it down to a tiny strip on the left hand side of my editor. Maybe useful if you're short screen space, but it seems unnecessarily compact.</li> <li>The 'texture' of the code is lost. It's hard to tell what kind of structure I'm looking at - it's just a big slab of text that needs to be read almost character-by-character.</li> <li>It's <strong>very</strong> easy to miss the <code>!</code> operator in <code>if (!foo)</code>. (if (!foo), see!)</li> <li>Punctuation characters are very badly defined. Many are hard to tell apart (<code>{}[]()</code> vs {}[]())</li> <li>Some punctuation characters are much larger than others, inferring emphasis where none is intended (<code>$@%</code> vs $@%)</li> <li>Some characters are <em>very</em> narrow, and very hard to identify (<code>'"!;:,.</code> vs '"!;:,.)</li> <li>Some numbers and letters are very similar (<code>0Oo iIl</code> vs 0Oo iIl)</li> <li>I am <em>extremely</em> reliant on syntax highlighting, without it it's nearly impossible to do things like confirm quotes are balanced, etc.</li> <li>Alignment (apart from simple indenting) is completely broken. You can sort of wing it by throwing in extra spaces, but because of the proportional nature of the fonts, the lines may not line up exactly - <strong>code looks messier</strong>.</li> <li>Regular expressions are.. interesting!</li> </ul> <p>There <strong>are</strong> some positive points, though. Admittedly I've only been using it for a little while, but there are certainly some aspects that work a little better with proportional fonts:</p> <ul> <li>'words' are easier to read - spelling errors (eg spelling a variable incorrectly) jump out at you.</li> <li>I feel better about using longer, more descriptive variable names (maybe because they scan better, maybe because the horizontal size of the text is compressed)</li> <li>It seems slightly easier to <strong>read</strong> code like this. It's easier for my brain to 'tokenise' each word and understand its meaning. Although because the punctuation characters are harder to read it's still hard going - but maybe that will change given a bit of time to get used to it</li> </ul> <p>I'll update this answer again tomorrow (assuming I can make it through an entire day like this!)</p> http://stackoverflow.com/questions/208791/what-is-your-most-wanted-non-existent-or-underdeveloped-open-source-project/208906#208906 20 Answer by Dan for What is your most wanted non-existent or underdeveloped open source project? Dan 2008-10-16T14:57:29Z 2008-10-16T14:57:29Z <p>A big red button that makes IE6 go away and never come back :)</p> http://stackoverflow.com/questions/208791/what-is-your-most-wanted-non-existent-or-underdeveloped-open-source-project/208875#208875 10 Answer by Dan for What is your most wanted non-existent or underdeveloped open source project? Dan 2008-10-16T14:51:03Z 2008-10-16T14:51:03Z <p>Something simple and slick that bridges the gap between MSWord and Latex.</p> http://stackoverflow.com/questions/207256/how-do-i-match-part-of-a-string-only-if-it-is-not-preceded-by-certain-characters/207262#207262 5 Answer by Dan for How do I match part of a string only if it is not preceded by certain characters? Dan 2008-10-16T02:50:12Z 2008-10-16T02:55:40Z <p>Assuming your regex engine supports negative lookaheads, try this:</p> <pre><code>((?!SIGSEC)\w{3}(?:SEC|PRI)) </code></pre> <p>Edit: A commenter pointed out that .NET does support negative lookaheads, so this should work fine (thanks, Charlie).</p> http://stackoverflow.com/questions/207198/is-it-common-to-have-no-control-over-your-work-computer/207216#207216 15 Answer by Dan for Is it common to have no control over your work computer? Dan 2008-10-16T02:21:22Z 2008-10-16T02:21:22Z <p>Extremely common. </p> <p>I used to think it was unnecessarily draconian, but having seen the states people let their computers get into I can see why the practice is so common.</p> <p>However it is rather a shame when policies like these are extended to technical staff who really should be capable of managing their own machine.</p> http://stackoverflow.com/questions/206997/jquery-javascript-ie-hover-doesnt-cover-select-box-options/207168#207168 3 Answer by Dan for JQuery/Javascript: IE hover doesn't cover select box options? Dan 2008-10-16T01:51:08Z 2008-10-16T01:58:00Z <p>Apparently IE doesn't consider the drop down bit part of the select element. It's doable, but it takes a bit of cheating with expando properties and blur/focus events to enable and disable the 'hide' effect to stop it kicking in when the mouse enters the drop-down part of the element.</p> <p>Have a go with this:</p> <pre><code>$(function() { var expand = function(){ $(this).width(600) } var contract = function(){ if (!this.noHide) $(this).width(50) } var focus = function(){ this.noHide = true } var blur = function(){ this.noHide = false; contract.call(this) } $('#TheSelect') .hover(expand, contract) .focus(focus) .click(focus) .blur(blur) .change(blur) }); </code></pre> <p>(Apologies if this isn't how one is supposed to use jQuery - I've never used it before :))</p> http://stackoverflow.com/questions/200810/how-can-i-do-access-control-via-an-sql-table 4 How can I do access control via an SQL table? Dan 2008-10-14T11:39:51Z 2008-10-14T12:36:50Z <p>I'm trying to create an access control system. </p> <p>Here's a stripped down example of what the table I'm trying to control access to looks like:</p> <pre><code>things table: id group_id name 1 1 thing 1 2 1 thing 2 3 1 thing 3 4 1 thing 4 5 2 thing 5 </code></pre> <p>And the access control table looks like this:</p> <pre><code>access table: user_id type object_id access 1 group 1 50 1 thing 1 10 1 thing 2 100 </code></pre> <p>Access can be granted either by specifying the id of the 'thing' directly, or granted for an entire group of things by specifying a group id. In the above example, user 1 has been granted an access level of 50 to group 1, which should apply unless there are any other rules granting more specific access to an individual thing.</p> <p>I need a query that returns a list of things (ids only is okay) along with the access level for a specific user. So using the example above I'd want something like this for user id 1:</p> <pre><code>desired result: thing_id access 1 10 2 100 3 50 (things 3 and 4 have no specific access rule, 4 50 so this '50' is from the group rule) 5 (thing 5 has no rules at all, so although I still want it in the output, there's no access level for it) </code></pre> <p>The closest I can come up with is this:</p> <pre><code>SELECT * FROM things LEFT JOIN access ON user_id = 1 AND ( (access.type = 'group' AND access.object_id = things.group_id) OR (access.type = 'thing' AND access.object_id = things.id) ) </code></pre> <p>But that returns multiple rows, when I only want one for each row in the 'things' table. I'm not sure how to get down to a single row for each 'thing', or how to prioritise 'thing' rules over 'group' rules.</p> <p>If it helps, the database I'm using is PostgreSQL.</p> <p>Please feel free to leave a comment if there's any information I've missed out. </p> <p>Thanks in advance!</p> http://stackoverflow.com/questions/200810/how-can-i-do-access-control-via-an-sql-table/200969#200969 0 Answer by Dan for How can I do access control via an SQL table? Dan 2008-10-14T12:36:50Z 2008-10-14T12:36:50Z <p>Tony:</p> <p>Not a bad solution, I like it, seems to work. Here's your query after minor tweaking:</p> <pre><code>SELECT things.*, coalesce ( ( SELECT access FROM access WHERE user_id = 1 AND type = 'thing' AND object_id = things.id ), ( SELECT access FROM access WHERE user_id = 1 AND type = 'group' AND object_id = things.group_id ) ) AS access FROM things; </code></pre> <p>And the results look correct:</p> <pre><code> id | group_id | name | access ----+----------+---------+-------- 1 | 1 | thing 1 | 10 2 | 1 | thing 2 | 100 3 | 1 | thing 3 | 50 4 | 1 | thing 4 | 50 5 | 2 | thing 5 | </code></pre> <p>I do <em>completely</em> take the point about it not being an ideal schema. However, I am stuck with it to some extent.</p> <p><hr /></p> <p>Josef:</p> <p>Your solution is very similar to the stuff I was playing with, and my instincts (such as they are) tell me that it should be possible to do it that way. Unfortunately it doesn't produce completely correct results:</p> <pre><code> id | group_id | name | max ----+----------+---------+----- 1 | 1 | thing 1 | 50 2 | 1 | thing 2 | 100 3 | 1 | thing 3 | 50 4 | 1 | thing 4 | 50 5 | 2 | thing 5 | </code></pre> <p>The access level for 'thing 1' has taken the higher 'group' access value, rather than the more specific 'thing' access value of 10, which is what I'm after. I don't think there's a way to fix that within a <code>GROUP BY</code>, but if anyone has any suggestions I'm more than happy to be proven incorrect on that point.</p> http://stackoverflow.com/questions/200470/style-sheet-images-arent-reloaded-by-firefox-or-safari/200495#200495 0 Answer by Dan for Style sheet images aren't reloaded by Firefox or Safari Dan 2008-10-14T09:23:27Z 2008-10-14T09:23:27Z <p>I know this probably isn't what you want to hear, but it's considerably more likely that Firefox is following the standard and IE is doing something slightly odd (and you just happen to rely on it ;)).</p> <p>The caching behaviour depends on what caching headers are being sent with your images. If you're in a position to post the headers (or a URL to one of the images), then we'll be able to tell you more specifically what's going on.</p> http://stackoverflow.com/questions/196938/how-do-i-extract-a-specific-line-using-perl/198965#198965 2 Answer by Dan for How do I extract a specific line using Perl? Dan 2008-10-13T20:42:19Z 2008-10-13T20:42:19Z <p>I'm <em>really</em> not sure what you're asking, but it looks like you're having trouble with some perl basics. If this is the case then you might want to check out <a href="http://learn.perl.org/" rel="nofollow">some of these excellent books</a>. (One of which - <a href="http://www.perl.org/books/beginning-perl/" rel="nofollow">Beginning Perl</a> - is available online for free).</p> <p>Here's an extremely simple script that will extract specific lines from a file (it only looks big because I commented it heavily). I'm not entirely convinced it's what you want, but it might give you a starting point.</p> <pre><code>#!/usr/bin/perl use warnings; use strict; # The filename we want to read in my $filename = 'somefile.txt'; # Here's an array of line numbers we're interested in my @interesting_lines = (1, 3, 5, 7, 9); # Convert the line numbers into a hash lookup table so we can perform a fast # lookup. This scales up quite nicely to large lists without lookups slowing. my %is_interesting_line = map { $_ =&gt; 1 } @interesting_lines; # The array and hash assignment above could be written directly as a hash # like this: # my %is_interesting_line = ( # 1 =&gt; 1, # 3 =&gt; 1, # 5 =&gt; 1, # 7 =&gt; 1, # 9 =&gt; 1, # ); # Variable to hold the current line number my $line_number = 1; # Open the file for reading open my $fh, '&lt;', $filename or die "Failed to open file '$filename': $!"; # Loop through each line of the file in turn in a while loop. Using a while # loop here rather than a for loop or something means that we're only ever # loading a single line at a time into memory (so we can process files larger # than the available system memory) while (my $line = &lt;$fh&gt;){ # Remove any trailing end-of-line character chomp $line; # Check to see if the current line number is in our hash lookup table if ($is_interesting_line{$line_number}){ print "line $line_number is: $line\n"; } # Increment the line number ready for the next line $line_number++; } close $fh; </code></pre> <p>Good luck ;)</p> http://stackoverflow.com/questions/196754/what-does-selectselects-10-do-in-perl/196768#196768 36 Answer by Dan for What does "select((select(s),$|=1)[0])" do in Perl? Dan 2008-10-13T05:14:43Z 2008-10-13T05:23:39Z <p>It's a nasty little idiom for setting autoflush on a filehandle other than STDOUT. </p> <p><code>select()</code> takes the supplied filehandle and (basically) replaces STDOUT with it, and it returns the old filehandle when it's done. </p> <p>So <code>(select($s),$|=1)</code> redirects the filehandle (remember <code>select</code> returns the old one), and sets autoflush (<code>$| = 1</code>). It does this in a list (<code>(...)[0]</code>) and returns the first value (which is the result of the <code>select</code> call - the original STDOUT), and then passes <em>that</em> back into another <code>select</code> to reinstate the original STDOUT filehandle. Phew.</p> <p>But now you understand it (well, maybe ;)), do this instead:</p> <pre><code>use IO::Handle; $fh-&gt;autoflush; </code></pre> http://stackoverflow.com/questions/178320/do-you-validate-your-url-variables/178323#178323 4 Answer by Dan for Do you validate your URL variables? Dan 2008-10-07T13:03:03Z 2008-10-07T13:03:03Z <p>As with any user input it is <strong>extremely</strong> important to check to make sure it is what you expect it is. So yes!</p> http://stackoverflow.com/questions/177660/best-language-for-a-non-programmer-tech-support-person-to-learn/177680#177680 13 Answer by Dan for Best language for a non-programmer tech support person to learn Dan 2008-10-07T08:56:07Z 2008-10-07T10:05:57Z <p>A good first choice for a new programmer is probably <a href="http://www.ruby-lang.org/en/" rel="nofollow">Ruby</a>.</p> <p>I mention this not only because it seems to be an extremely simple language to learn (I picked up the basics in a few days without really trying), but also because it has a lot of extremely high quality <a href="http://www.ruby-lang.org/en/documentation/" rel="nofollow">learning material</a> (more than I have seen for any language in a long time - if you haven't seen it, you really should check out <a href="http://poignantguide.net/ruby/" rel="nofollow">Why's Poignant Guide</a>.)</p> <p>You can <a href="http://tryruby.hobix.com/" rel="nofollow">let her try Ruby</a> on her own, too, to see how she likes it.</p> <p>If she doesn't like Ruby, then Python would probably be my next choice, but the documentation can be a little dry in places. I'd definitely stick with a dynamic scripting language though, as they're very quick and easy to learn and you can "get stuff done" with the minimum of fuss. </p> <p>I'd definitely go with Ruby first, simply because the learning material is of incredibly high quality.</p> http://stackoverflow.com/questions/1782107/how-do-i-retrieve-the-terminal-width-in-perl/1782127#1782127 Comment by Dan on How do I retrieve the terminal width in Perl? Dan 2009-11-23T10:43:29Z 2009-11-23T10:43:29Z There's a pure-perl version. You shouldn't need a compiler to install it. http://stackoverflow.com/questions/1776745/is-there-something-like-perls-win32filenotify-for-linux-or-os-x/1778606#1778606 Comment by Dan on Is there something like Perl's Win32::FileNotify for Linux or OS X? Dan 2009-11-22T16:36:35Z 2009-11-22T16:36:35Z This! File::ChangeNotify is what Catalyst's development server uses to initiate a restart when a file changes. It's got nice, fast file watcher classes for Linux, BSD and Win32 (I recently contributed the KQueue watcher for *BSD :)), and a fallback that polls files for changes. It's pretty heavily used by people working with Catalyst, so I imagine it's pretty stable. http://stackoverflow.com/questions/1775572/moose-expiring-cached-results-of-calculations-when-attribute-values-change/1776650#1776650 Comment by Dan on Moose: Expiring cached results of calculations when attribute values change? Dan 2009-11-22T16:32:24Z 2009-11-22T16:32:24Z Hm. I have problems getting my head around using Memoize to cache object data. What happens if every instance of this class has different values? Memoize will cache them forever regardless of the fact they're no longer useful when the object is destroyed, right? Which means in a persistent app (and that's really the only sensible place to use Moose) you're potentially going to grow a huge, useless cache. No? Of course, you can mess about expiring stuff manually (I think!), but that's way more complexity over the Moose/lazy example above, for little gain.. http://stackoverflow.com/questions/1754441/why-do-these-different-perl-sort-subroutines-give-me-different-orders-of-elements Comment by Dan on Why do these different Perl sort subroutines give me different orders of elements? Dan 2009-11-18T10:02:09Z 2009-11-18T10:02:09Z What output do you actually want? http://stackoverflow.com/questions/1634341/overloading-arithmetic-operators-in-javascript/1634407#1634407 Comment by Dan on Overloading Arithmetic Operators in JavaScript? Dan 2009-10-28T01:25:28Z 2009-10-28T01:25:28Z Static typing? That's one way, possibly, but it#s by no means the only way. For example Ruby does operator overloading in an interesting manner. <code>+</code> isn't an operator as such, it's a method. So in Ruby, <code>a + b</code> is actually <code>a.+(b)</code>. So overloading operators is merely a case of defining a method for the operator you want to overload. Just a shame it doesn't work in JS ;) http://stackoverflow.com/questions/1627945/in-perl-how-do-you-access-a-value-from-a-reference-in-an-array-of-hashrefs/1627957#1627957 Comment by Dan on In Perl, how do you access a value from a reference in an array of hashrefs? Dan 2009-10-27T05:01:11Z 2009-10-27T05:01:11Z Explicitly dereferencing like that removes ambiguity. Otherwise constructs like <code>$$foo[1]</code> become more likely to mislead you in 6 months when you're not sure if you meant <code>${$foo}[1]</code>, or '${$foo[1]}'. Uglier, I'll grant you ;) http://stackoverflow.com/questions/1625839/should-i-use-commonsense-or-just-stick-with-use-strict-and-use-warnings/1625893#1625893 Comment by Dan on Should I use common::sense or just stick with `use strict` and `use warnings`? Dan 2009-10-27T01:14:07Z 2009-10-27T01:14:07Z Undef warnings usually just mean I've forgotten to quality some string comparison with <code>defined $foo &amp;&amp; ..</code> .. ;) http://stackoverflow.com/questions/1627945/in-perl-how-do-you-access-a-value-from-a-reference-in-an-array-of-hashrefs/1627957#1627957 Comment by Dan on In Perl, how do you access a value from a reference in an array of hashrefs? Dan 2009-10-27T01:01:04Z 2009-10-27T01:01:04Z <code>$$allDirArray</code> is the same as <code>${$allDirArray}</code>, the <code>{}</code> are optional (but often recommended, if only for readability). I'd prefer <code>$allDirArray-&gt;[$i]{dir}</code>, personally. http://stackoverflow.com/questions/164432/what-real-life-bad-habits-has-programming-given-you/164556#164556 Comment by Dan on What real life bad habits has programming given you? Dan 2009-04-07T16:11:59Z 2009-04-07T16:11:59Z Downmodded to keep you at 512 ;) http://stackoverflow.com/questions/471681/how-do-i-fork-properly-with-modperl2/471690#471690 Comment by Dan on How do I fork properly with mod_perl2? Dan 2009-01-23T02:52:29Z 2009-01-23T02:52:29Z Yeah problem is that apache process goes on to serve other requests when it's finished this one, killing it's STDERR breaks its logging, and I suspect killing its STDIN stops it from communicating with the parent proc. Anyway - I tried and it doesn't fix the problem ;) http://stackoverflow.com/questions/471681/how-do-i-fork-properly-with-modperl2/471690#471690 Comment by Dan on How do I fork properly with mod_perl2? Dan 2009-01-23T02:41:46Z 2009-01-23T02:41:46Z That'd completely break Apache.. The parent process still has to produce a response (and send it via STDOUT) for the client.. http://stackoverflow.com/questions/108141/how-do-i-work-effectively-with-very-messy-legacy-code/108197#108197 Comment by Dan on How do I work effectively with VERY messy legacy code Dan 2008-11-15T16:11:48Z 2008-11-15T16:11:48Z @Scott: either test the end result without looking into the implementation too closely, or write the test how it <i>should</i> work and let it fail until the code has been refactored. http://stackoverflow.com/questions/116032/do-you-check-your-field-and-table-names-against-reserved-word-lists/116033#116033 Comment by Dan on Do you check your field- and table names against reserved word lists ? Dan 2008-11-15T16:06:00Z 2008-11-15T16:06:00Z That only matters when you're writing literal SQL, most of the time that is best avoided http://stackoverflow.com/questions/230467/are-regex-tools-like-regexbuddy-a-good-idea/230648#230648 Comment by Dan on Are regex tools (like RegexBuddy) a good idea? Dan 2008-10-23T17:44:51Z 2008-10-23T17:44:51Z Perl is one of the few languages that makes working with regular expressions relatively painless. http://stackoverflow.com/questions/218623/why-use-monospace-fonts-in-your-ide/218675#218675 Comment by Dan on Why use monospace fonts in your IDE? Dan 2008-10-20T21:46:44Z 2008-10-20T21:46:44Z Your justification is &quot;it's small&quot;? Of all the features of Comic Sans, its &quot;smallness&quot; is rarely one gets it chosen often over other fonts. Plus, it makes you look like you're 12. If I worked with you, I would have definitely laughed at you for that by now :)