User - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T00:46:55Z http://stackoverflow.com/feeds/user/11318 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/106555/how-to-find-the-amount-of-physical-memory-occupied-by-a-hash-in-perl/106588#106588 5 Answer by bentilly for How to find the amount of physical memory occupied by a hash in Perl? bentilly 2008-09-20T00:39:40Z 2009-09-16T00:25:43Z <p>You can install <a href="http://search.cpan.org/perldoc?Devel%3A%3ASize" rel="nofollow">Devel::Size</a> to find out the memory taken by any construct in Perl. However do be aware that it will take a large amount of intermediate memory, so I would not use it against a large data structure. I would certainly not do it if you think you may be about to run out of memory.</p> <p>BTW there are a number of good modules on CPAN to do caching in memory and otherwise. Rather than roll your own I would suggest using one of them instead. For instance try <a href="http://search.cpan.org/perldoc?Tie%3A%3ACache%3A%3ALRU" rel="nofollow">Tie::Cache::LRU</a> for an in-memory cache that will only go up to a specified number of keys.</p> http://stackoverflow.com/questions/119323/nested-for-loops-in-different-languages 12 Nested for loops in different languages bentilly 2008-09-23T05:59:31Z 2009-02-02T21:25:53Z <p>Here is a fairly common problem. We have an array of arrays. We'd like to call some function for every combination of elements from the different arrays. Conceptually we'd like to do something like this:</p> <pre><code>for my $x (1, 2) { for my $y ('a', 'b') { for my $z ('A', 'B') { print "$x $y $z\n"; } } } </code></pre> <p>except that we don't want to have to write out a different number of loops if we have a different number of elements. In other words we want to be able to implement the above as something like:</p> <pre><code>nested_for( sub {print "@_\n"}, [1, 2], ['a', 'b'], ['A', 'B'] ); </code></pre> <p>and get the same result. (Exact syntax may vary by language.)</p> <p>One solution per post, please.</p> <h2>Index of Solutions</h2> <p>(with at least +1 vote)</p> <ul> <li><strong><a href="#120285" rel="nofollow">APL</a></strong> by Christian D</li> <li><strong><a href="#119383" rel="nofollow">D</a></strong> by BCS</li> <li><strong>Haskell</strong> <ul> <li><a href="#120171" rel="nofollow">by Rodrigo Queiro</a></li> <li><a href="#120989" rel="nofollow">for both heterogenous and homogenous lists</a> by Apocalisp</li> </ul></li> <li><strong><a href="#119902" rel="nofollow">Java</a></strong> by einarwh.myopenid.com</li> <li><strong><a href="#119466" rel="nofollow">JavaScript</a></strong> by Kent Fredric</li> <li><strong>Lisp</strong> <ul> <li><a href="#120027" rel="nofollow">by levy</a></li> <li><a href="#120128" rel="nofollow">a newbie attempt</a> by Chris Jester-Young</li> </ul></li> <li><strong><a href="#119356" rel="nofollow">Nemerle</a></strong> by Cody Brocious</li> <li><strong>Perl</strong> <ul> <li><a href="#119334" rel="nofollow">by bentilly.blogspot.com</a></li> <li><a href="#124401" rel="nofollow">with Algorithm::Loops</a> by runrig.myopenid.com</li> <li><a href="#124413" rel="nofollow">Perl 6 version</a> by Eevee</li> </ul></li> <li><strong>Python</strong> <ul> <li><a href="#119374" rel="nofollow">by Alexander Kojevnikov</a></li> <li><a href="#120382" rel="nofollow">with generators</a> by Torsten Marek</li> </ul></li> <li><strong>Ruby</strong> <ul> <li><a href="#119379" rel="nofollow">two solutions by Kent Fredric</a> (including a variant with mapping)</li> <li><a href="#119359" rel="nofollow">by bentilly.blogspot.com</a> on behalf of Christoph Rippel</li> <li><a href="#119413" rel="nofollow">by Kevin Conner</a></li> <li><a href="#119452" rel="nofollow">permutative/generative version</a> by Kent Fredric</li> </ul></li> </ul> http://stackoverflow.com/questions/105226/is-perl-still-a-viable-language-for-web-development/105350#105350 28 Answer by bentilly for Is Perl still a viable language for web development? bentilly 2008-09-19T20:32:36Z 2008-12-24T15:06:45Z <p>Yes, Perl is still a very viable web language. I know a number of Perl startups that are doing quite well, thank you very much. And as a job market, while Perl is behind PHP, there are more Perl jobs than Ruby and Python combined. See <a href="http://blog.timbunce.org/2008/02/12/comparative-language-job-trend-graphs/" rel="nofollow">Comparative Language job trend graphs</a> for proof.</p> <p>A standard Perl stack would be to use Catalyst for an MVC framework, with <a href="http://search.cpan.org/dist/Rose-DB-Object/" rel="nofollow">Rose::DB::Object</a> or <a href="http://search.cpan.org/dist/DBIx-Class/" rel="nofollow">DBIx::Class</a> for an ORM solution, and any of a number of templating solutions, with <a href="http://search.cpan.org/dist/Template-Toolkit/" rel="nofollow">Template Toolkit</a> being one of the most popular.</p> http://stackoverflow.com/questions/119707/what-is-the-biggest-drawback-of-your-favorite-database/123747#123747 1 Answer by bentilly for What is the biggest drawback of <your favorite database>? bentilly 2008-09-23T20:45:16Z 2008-09-23T20:45:16Z <p><strong>Database</strong> Oracle</p> <p><strong>Problem</strong> Temp table definitions are not private</p> <p><strong>Description</strong> Many databases (eg Postgres and Sybase) allow you to create temp tables on the fly, insert into them, add indexes if you want, then query from them. Oracle has temp tables, but the temp table definitions exist in a global name space. Therefore the temp table has to be created by a DBA, you need to synchronize between the table definition they used and your code, and if two pieces of code want similar (but not identical) table definitions, they need to use different names. These differences make temp tables far less convenient for developers.</p> <p>Yes, I understand the benefits for the query optimizer of having global definitions. However for me the lack of convenience makes Oracle's temp tables virtually useless for me, while I use them very intensively in Postgres.</p> http://stackoverflow.com/questions/118919/what-is-the-strangest-weirdest-program-youve-ever-made/122643#122643 67 Answer by bentilly for What is the strangest/weirdest program you've ever made? bentilly 2008-09-23T18:01:17Z 2008-09-23T18:01:17Z <p>This one wasn't me, but it was my friend Scott Anderson. He had a problem. He had 7 cats, who all thought it great fun to climb the Christmas tree. Which destroyed the tree. He taught them not to do it when he was around, but he was generally asleep at 2 AM so that didn't protect the key.</p> <p>He therefore bought a motion sensor and (after some experimentation) wrote a program so that when it sensed motion it would run the vacuum cleaner for 30 seconds. After a week of random, "WHIRR!" "Mrow!" and then a mad cat dash, often resulting in thumps of collisions, the cats learned that the Christmas tree was <strong>not</strong> to be trifled with.</p> <p>Bonus points for when his wife forgot the system was there and was caught trying to sneak presents under the tree!</p> http://stackoverflow.com/questions/122334/what-is-the-reasoning-behind-a-badge-for-private-beta-users/122373#122373 0 Answer by bentilly for What is the reasoning behind a badge for private beta users? bentilly 2008-09-23T17:12:37Z 2008-09-23T17:12:37Z <p>Badges are to recognize people who have done something that contributed to this site. Participating in the private beta certainly qualifies.</p> <p>As for unfair, who cares? Is there any shortage of badges available? Do you doubt that there won't be more created over time? If you were active earlier, you could get that badge while someone else couldn't. If you remain active, you can get the badge they come up with in 6 months while the other person couldn't.</p> <p>Besides the badge system is supposed to be silly fun. You should take it in the spirit with which it was intended.</p> http://stackoverflow.com/questions/119707/what-is-the-biggest-drawback-of-your-favorite-database/122024#122024 0 Answer by bentilly for What is the biggest drawback of <your favorite database>? bentilly 2008-09-23T16:09:58Z 2008-09-23T16:09:58Z <p><strong>Database</strong> Postgres</p> <p><strong>Defect</strong> No analytic queries</p> <p><strong>Description</strong></p> <p>Analytic queries, introduced by Oracle, are part of the SQL 2003 standard. Unfortunately Postgres hasn't implemented them yet.</p> http://stackoverflow.com/questions/121387/sql-fetch-the-row-which-has-the-max-value-for-a-column/121873#121873 3 Answer by bentilly for SQL - fetch the row which has the Max value for a column bentilly 2008-09-23T15:47:54Z 2008-09-23T15:47:54Z <p>I don't have Oracle to test it, but the most efficient solution is to use analytic queries. It should look something like this:</p> <pre><code>SELECT DISTINCT UserId , MaxValue FROM ( SELECT UserId , FIRST (Value) Over ( PARTITION BY UserId ORDER BY Date DESC ) MaxValue FROM SomeTable ) </code></pre> <p>I suspect that you can get rid of the outer query and put distinct on the inner, but I'm not sure. In the meantime I know this one works.</p> <p>If you want to learn about analytic queries, I'd suggest reading <a href="http://www.orafaq.com/node/55" rel="nofollow">http://www.orafaq.com/node/55</a> and <a href="http://www.akadia.com/services/ora_analytic_functions.html" rel="nofollow">http://www.akadia.com/services/ora_analytic_functions.html</a>. Here is the short summary.</p> <p>Under the hood analytic queries sort the whole dataset, then process it sequentially. As you process it you partition the dataset according to certain criteria, and then for each row looks at some window (defaults to the first value in the partition to the current row - that default is also the most efficient) and can compute values using a number of analytic functions (the list of which is very similar to the aggregate functions).</p> <p>In this case here is what the inner query does. The whole dataset is sorted by UserId then Date DESC. Then it processes it in one pass. For each row you return the UserId and the first Date seen for that UserId (since dates are sorted DESC, that's the max date). This gives you your answer with duplicated rows. Then the outer DISTINCT squashes duplicates.</p> <p>This is not a particularly spectacular example of analytic queries. For a much bigger win consider taking a table of financial receipts and calculating for each user and receipt, a running total of what they paid. Analytic queries solve that efficiently. Other solutions are less efficient. Which is why they are part of the 2003 SQL standard. (Unfortunately Postgres doesn't have them yet. Grrr...)</p> http://stackoverflow.com/questions/119323/nested-for-loops-in-different-languages/119494#119494 1 Answer by bentilly for Nested for loops in different languages bentilly 2008-09-23T07:07:38Z 2008-09-23T07:07:38Z <p>Cheating Perl version. (Sometimes useful in golf.)</p> <pre><code>print "$_\n" for glob "{1,2}\\ {a,b}\\ {A,B}" </code></pre> http://stackoverflow.com/questions/119360/who-are-the-authorative-thinkers-for-each-problem-domain-in-software/119423#119423 7 Answer by bentilly for Who are the authorative thinkers for each 'problem domain' in Software? bentilly 2008-09-23T06:39:31Z 2008-09-23T06:39:31Z <p>For algorithms, I'd nominate <a href="http://www-cs-faculty.stanford.edu/~uno/" rel="nofollow">Donald Knuth</a> for fairly obvious reasons.</p> http://stackoverflow.com/questions/119353/what-is-the-meaning-of-programmer/119394#119394 12 Answer by bentilly for What is the meaning of "programmer"? bentilly 2008-09-23T06:31:01Z 2008-09-23T06:31:01Z <p>I'm reminded of when Larry Wall was discussing scripting versus programming and said, "Perl scripting is the same thing as Perl programming, but the ones who call it programming do it better."</p> <p>To me being a programmer is really a mindset. Do you try to learn how your tool works? Are you aware of where the hidden costs are in developing software? (Hint: They mostly show up in maintenance.) Do you consciously try to reduce those costs? Have you developed skills that could help you learn another programming language? Do you try to improve the quality of your code over time?</p> <p>If you can honestly answer "yes" to all of these things, then you're a programmer. If you answer yes to most but not all then you're likely a programmer, but probably not a very good one.</p> http://stackoverflow.com/questions/119323/nested-for-loops-in-different-languages/119359#119359 1 Answer by bentilly for Nested for loops in different languages bentilly 2008-09-23T06:17:10Z 2008-09-23T06:17:10Z <p>Here is a Ruby answer due to <a href="http://blade.nagaokaut.ac.jp/cgi-bin/scat.rb/ruby/ruby-talk/8901" rel="nofollow">Christoph Rippel</a></p> <pre><code>def each (arg,*more_args) ( [] != more_args ) ? arg.each {|l| each(*more_args) {|r| yield [l]+ r }} : arg.each { |r| yield [r] } end each( 1..2, 'a'..'b', 'A'..'B') { |args| puts args.join(" ") } </code></pre> http://stackoverflow.com/questions/119323/nested-for-loops-in-different-languages/119334#119334 4 Answer by bentilly for Nested for loops in different languages bentilly 2008-09-23T06:06:44Z 2008-09-23T06:06:44Z <p>To get things going, here is a Perl solution:</p> <pre><code>nested_for( sub {print "@_\n";}, [1, 2], ['a', 'b'], ['A', 'B'] ); sub nested_for { ret_iter(@_)-&gt;(); } sub ret_iter { my $fn = shift; my $range = pop; my $sub = sub {$fn-&gt;(@_, $_) for @$range}; return @_ ? ret_iter($sub, @_) : $sub; } </code></pre> http://stackoverflow.com/questions/119207/what-does-yield-called-out-of-block-mean-in-ruby/119236#119236 7 Answer by bentilly for What does 'yield called out of block' mean in Ruby? bentilly 2008-09-23T05:06:35Z 2008-09-23T05:21:56Z <p>The problem is that the times method expects to get a block that it will yield control to. However you haven't passed a block to it. There are two ways to solve this. The first is to not use times:</p> <pre><code>mySet = (1..numOfCuts).map{ rand(seqLength) } </code></pre> <p>or else pass a block to it:</p> <pre><code>mySet = [] numOfCuts.times {mySet.push( rand(seqLength) )} </code></pre> http://stackoverflow.com/questions/118289/how-do-i-parse-a-string-with-getoptlonggetoptions/118339#118339 6 Answer by bentilly for How do I parse a string with GetOpt::Long::GetOptions? bentilly 2008-09-23T00:05:50Z 2008-09-23T05:20:51Z <p>Instead of splitting on whitespace, use the built-in glob function. In addition to splitting on whitespace, that will do the standard command line expansions, then return a list. (For instance * would give a list of files, etc.) I would also recommend local-izing @ARG on general principle.</p> <p><strike>Other than that, that's the only way you can do it without rewriting GetOptions.</strike> (Clearly I need to read the documentation more carefully.)</p> http://stackoverflow.com/questions/118919/what-is-the-strangest-weirdest-program-youve-ever-made/119151#119151 6 Answer by bentilly for What is the strangest/weirdest program you've ever made? bentilly 2008-09-23T04:34:34Z 2008-09-23T04:34:34Z <p>I decided to use the <a href="http://stackoverflow.com/questions/97637/good-explanation-of-combinators-for-non-mathematicians">Y-combinator</a> pattern to reduce factorial in JavaScript down to the Peano axioms. That is I wrote factorial as a recursive function in terms of multiplication which was written recursively in terms of addition which was written recursively in terms of the functions +1 and -1. For some reason I got too much recursion when calculationg 8!. Pity.</p> <p>The code is kind of long so I'll just provide a <a href="http://z.iwethey.org/forums/render/content/show?contentid=196923" rel="nofollow">link</a>.</p> <p>Oddly enough my attempts at nice indentation don't seem to have made it very readable. Since I'm using a functional technique, maybe it would be better translated into Lisp?</p> <p>Again the code is long, so I'll just provide another <a href="http://z.iwethey.org/forums/render/content/show?contentid=197108" rel="nofollow">link</a>.</p> <p>Hmmm. People might not prefer it, but MIT Lisp proved it was better at recursion than JavaScript. It handled 8! successfully and failed at 9!. Should we consider this proof that Scheme is a better language than JavaScript? Or should we prefer Ruby for looking at the Ruby translation and deciding that no program could legitimately have that many braces open at once?</p> <p>Obviously this is not a useful factorial algorithm. In the factorial thread I posted a <a href="http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages#90589">far more efficient</a> version of factorial.</p> http://stackoverflow.com/questions/118288/sql-coding-style-guide/118363#118363 12 Answer by bentilly for SQL coding style guide bentilly 2008-09-23T00:15:04Z 2008-09-23T00:15:04Z <p>Style is the original programming holy war. However here is my style</p> <pre><code>SELECT f.foo , b.bar , CASE WHEN f.foo = 'hello' THEN 'goodbye' ELSE b.bar END as something_calculated , some_long_expression FROM fooz f JOIN baz b ON f.baz_id = b.id WHERE b.bar IS NOT NULL AND f.foo &lt;&gt; 'something random' </code></pre> <p>I have reasons for virtually every part of this style. For example the leading commas in the SELECT make it easier for me to later on add a column. The indentation of the CASE statement allows me to stay within 80 columns and make my code skimmable. I like the way that a 2 space indent with the AND makes the WHERE expressions line up. And so on and so forth. (I care about this because my job essentially boils down to, "Write a ton of very complex SQL statements for reports, and maintain those reports.")</p> <p>Ironically one of the exceptions to the rule that I have reasons for things I do is the capital key words. I only do that out of established habit.</p> http://stackoverflow.com/questions/110124/tips-for-getting-started-with-sql/110204#110204 2 Answer by bentilly for Tips for getting started with SQL? bentilly 2008-09-21T03:52:52Z 2008-09-22T23:40:32Z <p>If you can, you really want to find someone who knows how to use it, and pick their brains. That's because there are a lot of important principles (eg 3rd normal form) which will are a lot easier to learn through discussion rather than from books.</p> <p>If you want to teach yourself, you should learn the syntax for doing basic selects, joins, updates, deletes, and group by queries. You should also learn the "Swiss army knife" of selects, the CASE statement. Too many people don't. Many of the tutorials recommended in this thread will do that. Then you need to try to solve SQL problems. I'm sure that <a href="http://rads.stackoverflow.com/amzn/click/1558604537" rel="nofollow">Joe Celko's SQL Puzzles and Answers</a> is a good source of them, though it may be a little advanced.</p> <p>This will let you actually write SQL. But you still need to learn how to organize a database. Which for most purposes means that you really need to learn what 3rd normal form looks like. You don't have to be able to give a formal definition of it, just recognize it when you see it, and know how to adjust something to be in that format.</p> <p>Lots of references will explain it, but you won't know if you're reading them correctly. This is where it really, <em>really</em> helps to have access to someone who can look at a table layout and tell you, "That's right" vs "That's wrong, here's what needs to be changed." Failing all else, you could post a question here with a proposed layout. But a back and forth discussion with a live person would still be preferable IMO.</p> http://stackoverflow.com/questions/116888/like-in-case-statement-not-evaluating-as-expected/118231#118231 0 Answer by bentilly for Like in CASE statement not evaluating as expected bentilly 2008-09-22T23:32:48Z 2008-09-22T23:32:48Z <p>What a cute bug. I think I know the cause. If I'm right, then you'll get the results you expect from:</p> <pre><code>SELECT CASE WHEN fldField like 'YYY ' -- 7 spaces THEN 'OTH' ELSE 'XXX' END as newField from tmpTable </code></pre> <p>The bug is that varchar(10) is behaving like char(10) is supposed to. As for why it doesn't, you'll need to understand the old trivia question of how two strings with no metacharacters can be = but not LIKE each other.</p> <p>The issue is that a char(10) is internally supposed to be space padded. The like operator does <em>not</em> ignore those spaces. The = operator is supposed to in the case of chars. Memory tells me that Oracle ignores spaces for strings in general. Postgres does some tricks with casting. I have not used SQL*Server so I can't tell you how it does it.</p> http://stackoverflow.com/questions/117262/what-is-postgresql-explain-telling-me-exactly/118122#118122 6 Answer by bentilly for What is PostgreSQL explain telling me exactly? bentilly 2008-09-22T22:59:21Z 2008-09-22T22:59:21Z <p>It executes from most indented to least indented, and I believe from the bottom of the plan to the top. (So if there are two indented sections, the one farther down the page executes first, then when they meet the other executes, then the rule joining them executes.)</p> <p>The idea is that at each step there are 1 or 2 datasets that arrive and get processed by some rule. If just one dataset, that operation is done to that data set. (For instance scan an index to figure out what rows you want, filter a dataset, or sort it.) If two, the two datasets are the two things that are indented further, and they are joined by the rule you see. The meaning of most of the rules can be reasonably easily guessed (particularly if you have read a bunch of explain plans before), however you can try to verify individual items either by looking in the documentation or (easier) by just throwing the phrase into Google along with a few keywords like EXPLAIN.</p> <p>This is obviously not a full explanation, but it provides enough context that you can usually figure out whatever you want. For example consider this plan from an actual database:</p> <pre><code>v3orders=&gt; explain analyze select a.attributeid, a.attributevalue, b.productid from orderitemattribute a, orderitem b where a.orderid = b.orderid and a.attributeid = 'display-album' and b.productid = 'ModernBook'; ------------------------------------------------------------------------------------------------------------------------------------------------------------ Merge Join (cost=125379.14..125775.12 rows=3311 width=29) (actual time=841.478..841.478 rows=0 loops=1) Merge Cond: (a.orderid = b.orderid) -&gt; Sort (cost=109737.32..109881.89 rows=57828 width=23) (actual time=736.163..774.475 rows=16815 loops=1) Sort Key: a.orderid Sort Method: quicksort Memory: 1695kB -&gt; Bitmap Heap Scan on orderitemattribute a (cost=1286.88..105163.27 rows=57828 width=23) (actual time=41.536..612.731 rows=16815 loops=1) Recheck Cond: ((attributeid)::text = 'display-album'::text) -&gt; Bitmap Index Scan on (cost=0.00..1272.43 rows=57828 width=0) (actual time=25.033..25.033 rows=16815 loops=1) Index Cond: ((attributeid)::text = 'display-album'::text) -&gt; Sort (cost=15641.81..15678.73 rows=14769 width=14) (actual time=14.471..16.898 rows=1109 loops=1) Sort Key: b.orderid Sort Method: quicksort Memory: 76kB -&gt; Bitmap Heap Scan on orderitem b (cost=310.96..14619.03 rows=14769 width=14) (actual time=1.865..8.480 rows=1114 loops=1) Recheck Cond: ((productid)::text = 'ModernBook'::text) -&gt; Bitmap Index Scan on id_orderitem_productid (cost=0.00..307.27 rows=14769 width=0) (actual time=1.431..1.431 rows=1114 loops=1) Index Cond: ((productid)::text = 'ModernBook'::text) Total runtime: 842.134 ms (17 rows) </code></pre> <p>Try reading it for yourself and see if it makes sense.</p> <p>What I read is that the database first scans the id_orderitem_productid index, using that to find the rows it wants from orderitem, then sorts that dataset using a quicksort (the sort used will change if data doesn't fit in RAM), then sets that aside.</p> <p>Next it scans orditematt_attributeid_idx to find the rows it wants from orderitemattribute and then sorts that dataset using a quicksort.</p> <p>It then takes the two datasets and merges them. (A merge join is a sort of "zipping" operation where it walks the two sorted datasets in parallel, emitting the joined row when they match.)</p> <p>As I said, you work through the plan inner part to outer part, bottom to top.</p> http://stackoverflow.com/questions/116423/how-can-my-application-benefit-from-temporary-tables/116715#116715 5 Answer by bentilly for How can my application benefit from temporary tables? bentilly 2008-09-22T18:46:37Z 2008-09-22T18:52:09Z <p>First a disclaimer - my job is reporting so I wind up with far more complex queries than any normal developer would. If you're writing a simple CRUD (Create Read Update Delete) application (this would be most web applications) then you really don't want to write complex queries, and you are probably doing something wrong if you need to create temporary tables.</p> <p>That said, I use temporary tables in Postgres for a number of purposes, and most will translate to MySQL. I use them to break up complex queries into a series of individually understandable pieces. I use them for consistency - by generating a complex report through a series of queries, and I can then offload some of those queries into modules I use in multiple places, I can make sure that different reports are consistent with each other. (And make sure that if I need to fix something, I only need to fix it once.) And, rarely, I deliberately use them to force a specific query plan. (Don't try this unless you really understand what you are doing!)</p> <p>So I think temp tables are great. But that said, it is <em>very</em> important for you to understand that databases generally come in two flavors. The first is optimized for pumping out lots of small transactions, and the other is optimized for pumping out a smaller number of complex reports. The two types need to be tuned differently, and a complex report run on a transactional database runs the risk of blocking transactions (and therefore making web pages not return quickly). Therefore you generally don't want to avoid using one database for both purposes.</p> <p>My guess is that you're writing a web application that needs a transactional database. In that case, you shouldn't use temp tables. And if you do need complex reports generated from your transactional data, a recommended best practice is to take regular (eg daily) backups, restore them on another machine, then run reports against that machine.</p> http://stackoverflow.com/questions/109880/is-there-a-perl-solution-for-lazy-lists-this-side-of-perl-6/109908#109908 4 Answer by bentilly for Is there a Perl solution for lazy lists this side of Perl 6? bentilly 2008-09-21T01:09:58Z 2008-09-21T09:38:10Z <p>There is at least one special case where for and foreach have been optimized to not generate the whole list at once. And that is the range operator. So you have the option of saying:</p> <pre><code>for my $i (0..$#list) { my $item = some_function($list[$i]); ... } </code></pre> <p>and this will iterate through the array, transformed however you like, without creating a long list of values up front.</p> <p>If you wish your map statement to return variable numbers of elements, you could do this instead:</p> <pre><code>for my $i (0..$#array) { for my $item (some_function($array[$i])) { ... } } </code></pre> <p>If you wish more pervasive laziness than this, then your best option is to learn how to use closures to generate lazy lists. MJD's excellent book <em>Higher Order Perl</em> can walk you through those techniques. However do be warned that they will involve far larger changes to your code.</p> http://stackoverflow.com/questions/110600/making-the-most-of-below-average-team-members/110623#110623 2 Answer by bentilly for Making the most of below-average team members bentilly 2008-09-21T09:24:09Z 2008-09-21T09:24:09Z <p>Why are these members below average?</p> <p>If they are below average because they are inexperienced, then try to arrange a mentoring experience for them. If they are below average because they are incompetent, the best option really is to fire them. Bad programmers frequently contribute negative productivity. You can't trust anything they do, and fixing their mistakes takes more work from others than you can get in useful work out of them.</p> <p>If firing is not a politically acceptible option, then the first thing to try is to hope you can improve them. Make them read books, get mentored, etc. If that isn't working out, then do your best to find them something useless to do where they don't take up too much time and don't do harm. For instance locate a repetitive task that is within their abilities. (eg Running integration tests.) Or a task you can ignore. (eg Writing documentation for internal use, that you're sure nobody else will actually look at. Just be sure to have someone else write documentation for anything that is important.)</p> http://stackoverflow.com/questions/110522/how-can-you-measure-your-skills-as-a-programmer/110577#110577 2 Answer by bentilly for How can you measure your skills as a programmer? bentilly 2008-09-21T08:58:53Z 2008-09-21T08:58:53Z <p>I knew someone who used that interview question for years. He said that the best programmers tended to rate themselves around a 7. In particular people who rated themselves a 10 was usually that confident of their abilities because they had never <strong>met</strong> a really good programmer. But having never met one, who would they have ever learned any real skills from? There are, of course, exceptions. But if you're tuned into the community, you'll probably know who the exceptions are.</p> <p>This phenomena, incidentally, is not limited to programming. I've found it true in a number of kinds of things. People who self-rate themselves 10 out of 10 usually are not very good. People who are very good at X are good because they have found other people who are good at X, and therefore are going to compare themselves to a more difficult peer group and will not generally self-rate at a 10. I have found this true for values of X as far afield as playing ping-pong or chess.</p> http://stackoverflow.com/questions/110344/algorithm-to-calculate-the-number-of-divisors-of-a-given-number/110564#110564 12 Answer by bentilly for Algorithm to calculate the number of divisors of a given number bentilly 2008-09-21T08:47:26Z 2008-09-21T08:47:26Z <p>There are a <strong>lot</strong> more techniques to factoring than the sieve of Atkin. For example suppose we want to factor 5893. Well its sqrt is 76.76... Now we'll try to write 5893 as a product of squares. Well (77*77 - 5893) = 36 which is 6 squared, so 5893 = 77*77 - 6*6 = (77 + 6)(77-6) = 83*71. If that hadn't worked we'd have looked at whether 78*78 - 5893 was a perfect square. And so on. With this technique you can quickly test for factors near the square root of n much faster than by testing individual primes. If you combine this technique for ruling out large primes with a sieve, you will have a much better factoring method than with the sieve alone.</p> <p>And this is just one of a large number of techniques that have been developed. This is a fairly simple one. It would take you a long time to learn, say, enough number theory to understand the factoring techniques based on elliptic curves. (I know they exist. I don't understand them.)</p> <p>Therefore unless you are dealing with small integers, I wouldn't try to solve that problem myself. Instead I'd try to find a way to use something like the <a href="http://www.cs.sunysb.edu/~algorith/implement/pari/implement.shtml" rel="nofollow">PARI</a> library that already has a highly efficient solution implemented. With that I can factor a random 40 digit number like 124321342332143213122323434312213424231341 in about .05 seconds. (Its factorization, in case you wondered, is 29*439*1321*157907*284749*33843676813*4857795469949. I am quite confident that it didn't figure this out using the sieve of Atkin...)</p> http://stackoverflow.com/questions/110442/how-do-you-build-a-culture-of-collaboration-in-your-team/110497#110497 4 Answer by bentilly for How do you build a culture of collaboration in your team? bentilly 2008-09-21T07:47:37Z 2008-09-21T07:47:37Z <p>The first question to ask is why people don't use the wiki. For instance if you have consultants working for you, then sharing knowledge with consultants from other companies is against their professional interest. You simply aren't going to get them to do it.</p> <p>Assuming that that is not the case, I'm going to guess that inertia has a lot to do with it. When you're staring at a blank wiki page, it is kind of daunting. When added to the fact that people don't like writing documentation in general, you're going to have a lot of inertia.</p> <p>One way to get over that inertia hump is to be really specific on when things must go into the wiki. For instance you might say, "The next time someone has to reinstall our development environment, keep a log of everything you had to do, and all of the questions you had to get answered, in the wiki." Make sure that happens. The time <strong>after</strong> that, make sure that the person doing the reinstall reads the wiki. Writing stuff in the wiki is not a lot of work for the first person, and what is written will be great for the second.</p> <p>Another good example is that you could have an incident log in the wiki. Any time there is a problem on production, after it is resolved you need to log that it happened, when it happened, what happened, what the cause was, and what the fix was. After a while that log will prove its worth.</p> <p>Once these practices are established, they are easy to maintain and people are likely to start finding their own uses for the wiki. But you have to get people using it, and get a critical mass of useful information in there before people start to feel that it is useful.</p> http://stackoverflow.com/questions/110458/what-percentage-of-my-time-will-be-spent-in-user-input-verfication-during-web-dev/110486#110486 1 Answer by bentilly for What percentage of my time will be spent in user input verfication during web development? bentilly 2008-09-21T07:34:34Z 2008-09-21T07:34:34Z <p>I'm glad you're taking care to protect yourself. Too many don't.</p> <p>However as others have said, a better choice of architecture will make your problems go away. Using prepared statements (most languages should have support for that) will make SQL injection attacks go away. Plus with many databases they will result in significantly better performance. Handling cross-site scripting attacks is more tricky. But the basic strategy has to be to decide how you will escape user input, decide where you will escape it, and always do it in the same place. Don't fall into the trap of thinking that more is better! Consistently doing it in one way in one place will suffice, and will avoid your having to figure out which of the multiple levels of escaping are causing a specific bug.</p> <p>Or course learning how to create and maintain a sane architecture takes experience. And moreover, it takes reflecting on your bad experiences. So pay attention to your current pain points (it looks like you are), and think about what you could have done differently to avoid them. If you have a mentor, talk with your mentor. That won't always help you so much with this project, but it will with the next.</p> http://stackoverflow.com/questions/110113/which-software-expert-do-you-have-as-a-role-model/110224#110224 3 Answer by bentilly for Which software expert do you have as a role model? bentilly 2008-09-21T04:08:57Z 2008-09-21T04:08:57Z <p>Without a doubt, Steve McConnell. I've read most of his <a href="http://www.stevemcconnell.com/books.htm" rel="nofollow">books</a>, and they range from decent to classic. Most of them are classics. My two favorites are <em>Code Complete</em> (either edition) and <em>Software Estimation</em>.</p> http://stackoverflow.com/questions/107019/how-do-you-know-if-you-are-a-bad-programmer-or-how-do-you-tell-someone-they-are/107144#107144 0 Answer by bentilly for How do you know if you are a bad programmer? Or how do you tell someone they are? bentilly 2008-09-20T04:50:18Z 2008-09-20T04:50:18Z <p>If you think you're good, you're almost certainly bad.</p> <p>That's because our desire to keep a positive self-image makes it hard for us to hear criticism of that which we tie our self-worth to. If your self-worth is tied to being a good programmer, then that means you have just become resistant to learning your faults, and therefore will never become a <strong>better</strong> programmer. No matter what your native talent and ability, if you are compared with someone who is constantly improving, you will be left in the dust. But that person, in order to keep improving, has to remain aware of their shortfalls and therefore is unlikely to develop a big ego.</p> <p>Furthermore the same tendency means that providing others with well-meaning advice is frequently going to cause them to get very upset. As a result you would be well-advised to not offer others advice unless you have good cause due to the setting (eg a formal code review) or past interactions to know that the advice is not going to cause problems.</p> <p>That is an <em>extremely</em> condensed version of a <a href="http://www.perlmonks.org/index.pl?node_id=270083" rel="nofollow">meditation</a> that I wrote some time ago on another site. If you wish to learn more about the basic problem I would suggest searching for material on cognitive dissonance. I first learned about it in a programming context from <a href="http://rads.stackoverflow.com/amzn/click/0932633420" rel="nofollow">The Psychology of Computer Programming</a>.</p> http://stackoverflow.com/questions/106298/stack-overflow-problem/106375#106375 3 Answer by bentilly for Stack overflow problem! bentilly 2008-09-19T23:27:53Z 2008-09-19T23:27:53Z <p>Somehow you are using a lot of stack. Possible causes include that you're creating the routing table on the stack, you're passing it on the stack, or else you're generating lots of calls (eg by recursively processing the whole thing).</p> <p>In the first two cases you should create it on the heap and pass around a pointer to it. In the third case you'll need to rewrite your algorithm in an iterative form.</p> http://stackoverflow.com/questions/119323/nested-for-loops-in-different-languages/124413#124413 Comment by on Nested for loops in different languages 2008-09-24T00:29:57Z 2008-09-24T00:29:57Z The difference is that the sub arguments could be a data structure that comes from some external source outside of your code entirely. http://stackoverflow.com/questions/119323/nested-for-loops-in-different-languages/124413#124413 Comment by on Nested for loops in different languages 2008-09-23T23:07:11Z 2008-09-23T23:07:11Z Sorry, the point is to build a function that stays the same if ayou change the number of arrays. Using the cross operator your code for 3 arrays is different from 4 arrays. http://stackoverflow.com/questions/121387/sql-fetch-the-row-which-has-the-max-value-for-a-column/121873#121873 Comment by on SQL - fetch the row which has the Max value for a column 2008-09-23T19:51:21Z 2008-09-23T19:51:21Z I agree it is painfully verbose. However isn't that generally the case with SQL? And you're right that the solution is non-deterministic. There are multiple ways to deal with ties, and sometimes each is what you want. http://stackoverflow.com/questions/122634/mathematics-algorithmic-resources-projecteuler-net-puzzles/122652#122652 Comment by on Mathematics / Algorithmic Resources: ProjectEuler.net puzzles 2008-09-23T19:45:33Z 2008-09-23T19:45:33Z Hint on #78, there is a well-known recurrence for p in terms of pentagonal numbers. You will probably have to look it up. That will make calculating it much, much faster. http://stackoverflow.com/questions/121387/sql-fetch-the-row-which-has-the-max-value-for-a-column/121450#121450 Comment by on SQL - fetch the row which has the Max value for a column 2008-09-23T18:17:39Z 2008-09-23T18:17:39Z Huh, I just double-checked the documentation and you are right. I've been bitten by the default window in the presence of an ORDER BY enough that I didn't realize that the default is different with no ORDER BY. I switched my vote. http://stackoverflow.com/questions/121387/sql-fetch-the-row-which-has-the-max-value-for-a-column/121873#121873 Comment by on SQL - fetch the row which has the Max value for a column 2008-09-23T18:11:51Z 2008-09-23T18:11:51Z The question statement says nothing about returning the date. You can do that either by adding another FIRST(Date) or else just by querying the Date and changing the outer query to a GROUP BY. I'd use the first and expect the optimizer to calculate both in one pass. http://stackoverflow.com/questions/98222/whats-the-greatest-wtf-moment-youve-witnessed-from-someone-who-has-done-the-i/98480#98480 Comment by on What's the greatest "WTF" moment you've witnessed from someone who has done the impossible? 2008-09-23T18:07:29Z 2008-09-23T18:07:29Z You'd wager wrong then. That line let's you move logic from where you do work to the setup of the format functions. If you know the technique, maintenance is easy. If you don't know it, a rewrite won't help. http://stackoverflow.com/questions/119707/what-is-the-biggest-drawback-of-your-favorite-database/119720#119720 Comment by on What is the biggest drawback of <your favorite database>? 2008-09-23T16:12:06Z 2008-09-23T16:12:06Z SLONY fills this hole reasonably well. http://stackoverflow.com/questions/121387/sql-fetch-the-row-which-has-the-max-value-for-a-column/121435#121435 Comment by on SQL - fetch the row which has the Max value for a column 2008-09-23T15:53:04Z 2008-09-23T15:53:04Z I voted your analytic query solution down because it was wrong. While efficient is a design goal, it comes after correctness. See my analytic solution instead. http://stackoverflow.com/questions/121387/sql-fetch-the-row-which-has-the-max-value-for-a-column/121450#121450 Comment by on SQL - fetch the row which has the Max value for a column 2008-09-23T15:51:52Z 2008-09-23T15:51:52Z Sorry, but I don't think this is right. The default window in Oracle is from the first row in the partition to the current one. This may or may not include the maximum date. Secondly using analytic queries and a self-join defeats the purpose of analytic queries. http://stackoverflow.com/questions/119360/who-are-the-authorative-thinkers-for-each-problem-domain-in-software/119685#119685 Comment by on Who are the authorative thinkers for each 'problem domain' in Software? 2008-09-23T15:18:10Z 2008-09-23T15:18:10Z I did the same thing so I deleted my post and then re-created it. http://stackoverflow.com/questions/119323/nested-for-loops-in-different-languages/119383#119383 Comment by on Nested for loops in different languages 2008-09-23T06:32:53Z 2008-09-23T06:32:53Z For those of us who don't want to dig up a D compiler, would you mind testing it? Thanks. http://stackoverflow.com/questions/119323/nested-for-loops-in-different-languages/119347#119347 Comment by on Nested for loops in different languages 2008-09-23T06:21:49Z 2008-09-23T06:21:49Z It is not a matter of taste that sometimes you don't want to have to rewrite your code if you have more levels of nesting. Recursion is merely one possible technique to accomplish that. http://stackoverflow.com/questions/119207/what-does-yield-called-out-of-block-mean-in-ruby/119236#119236 Comment by on What does 'yield called out of block' mean in Ruby? 2008-09-23T05:43:52Z 2008-09-23T05:43:52Z I don't think I can give a better explanation of blocks than the one in <a href="http://www.rubycentral.com/book/tut_containers.html" rel="nofollow">rubycentral.com/book/tut_containers.html/&hellip;</a> (which is a chapter of Programming Ruby). http://stackoverflow.com/questions/119207/what-does-yield-called-out-of-block-mean-in-ruby/119236#119236 Comment by on What does 'yield called out of block' mean in Ruby? 2008-09-23T05:22:26Z 2008-09-23T05:22:26Z Oops, fixed. And I was just trying to fix the API error, not the logic error.