User dland - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T15:57:17Z http://stackoverflow.com/feeds/user/18625 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1661899/restricting-an-entire-symfony-admin-generator-page-according-to-credentials 0 Restricting an entire symfony admin generator page according to credentials dland 2009-11-02T15:20:28Z 2009-11-19T00:13:41Z <p>I have a website with a large number of admin generators to take care of an assortment of tables. Within the realm of authenticated users, I want to be able to deny access, not just to individual actions or fields, but an entire admin module.</p> <p>There doesn't appear to be a global credentials parameter for <code>generator.yml</code>, and putting stuff in <code>security.yml</code> at the module level doesn't appear to have any effect.</p> <p>I've browsed the generated code and looked at <code>cache/front/dev/modules/autoFoo/actions/actions.class.php</code>, and at preExecute() in particular, but I don't know what to do.</p> <p>I suppose I have to overwrite preExecute() in my own actions.class.php file, but I'm a bit unsure about what needs to be one, e.g., when to call parent::preExecute() (if in fact I need to or not).</p> http://stackoverflow.com/questions/1739285/why-does-regexpassemble-fail-with-these-simple-regexps/1745495#1745495 3 Answer by dland for Why does Regexp::Assemble fail with these simple regexps? dland 2009-11-16T23:16:08Z 2009-11-16T23:16:08Z <p>I'm the author of R::A. This question comes up every couple of years. The idea is that you don't want to add complex parenthensised patterns. Add more, simpler patterns, e.g.</p> <pre><code>run preflight script for .+ run postflight script for .+ Configuring volume .+ Preparing volume .+ </code></pre> <p>Don't try and do the work of the module. For instance, your premature grouping has resulted int the trailing <code> .+</code> common to all patterns not being factored into one occurence in the regexp. The result is that you have introduced unnecessary backtracking. The more patterns you add, the worse it will be.</p> <p>Calling add() in a different order will produce the same resulting pattern (or else it's a bug I'd like to know about).</p> <p>Otherwise you can pretokenise the patterns yourself, and use insert() to insert the pattern lexemes directly into the internal trie structure used to build the pattern. (This will be much faster, because the lexer is very slow: it consumes more than half the runtime for assembling a pattern).</p> http://stackoverflow.com/questions/1730296/mulitple-sites-with-common-files/1730366#1730366 4 Answer by dland for Mulitple Sites with common files dland 2009-11-13T16:35:41Z 2009-11-13T16:35:41Z <p>I would have your 50 virtual hosts all using the same DocumentRoot. That way you guarantee that all sites will be using the same common files.</p> <p>To pick up different css and image directories, use the Alias directive to point to explict directories for each VirtualHost.</p> http://stackoverflow.com/questions/346940/two-html-tables-side-by-side-centered-on-the-page 2 Two HTML tables side by side, centered on the page dland 2008-12-06T22:55:41Z 2009-11-11T18:00:28Z <p>I have two tables on a page that I want to display side by side, and then center them within the page (actually within another div, but this is the simplest I could come up with):</p> <pre><code>&lt;style&gt; #outer { text-align: center; } #inner { text-align: left; margin: 0 auto; } .t { float: left; } table { border: 1px solid black; } #clearit { clear: left; } &lt;/style&gt; &lt;div id="outer"&gt; &lt;p&gt;Two tables, side by side, centered together within the page.&lt;/p&gt; &lt;div id="inner"&gt; &lt;div class="t"&gt; &lt;table&gt; &lt;tr&gt;&lt;th&gt;a&lt;/th&gt;&lt;th&gt;b&lt;/th&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td&gt;1&lt;/td&gt;&lt;td&gt;2&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td&gt;4&lt;/td&gt;&lt;td&gt;9&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td&gt;16&lt;/td&gt;&lt;td&gt;25&lt;/td&gt;&lt;/tr&gt; &lt;/table&gt; &lt;/div&gt; &lt;div class="t"&gt; &lt;table&gt; &lt;tr&gt;&lt;th&gt;a&lt;/th&gt;&lt;th&gt;b&lt;/th&gt;&lt;th&gt;c&lt;/th&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td&gt;1&lt;/td&gt;&lt;td&gt;2&lt;/td&gt;&lt;td&gt;2&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td&gt;3&lt;/td&gt;&lt;td&gt;5&lt;/td&gt;&lt;td&gt;15&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td&gt;8&lt;/td&gt;&lt;td&gt;13&lt;/td&gt;&lt;td&gt;104&lt;/td&gt;&lt;/tr&gt; &lt;/table&gt; &lt;/div&gt; &lt;/div&gt; &lt;div id="clearit"&gt;all done.&lt;/div&gt; &lt;/div&gt; </code></pre> <p>I understand that it's something to do with the fact that the tables are floated, but I'm at a loss as to understand what I'm missing. There are many web pages that describe something like the technique I show here, but in any event it doesn't work; the tables cling stubbornly to the left hand margin.</p> http://stackoverflow.com/questions/1673916/sql-query-for-retrieving-connecting-trains/1674056#1674056 3 Answer by dland for SQL query for retrieving connecting trains dland 2009-11-04T14:23:10Z 2009-11-04T14:23:10Z <p>This cannot be reduced to a simple SQL query. Or a complex one, for that matter :)</p> <p>You want to solve the <a href="http://en.wikipedia.org/wiki/Shortest%5Fpath%5Fproblem" rel="nofollow">Shortest Path Problem</a>.</p> <p>You will need to build a graph using your stations as vertices, and paths between vertices representing a possible journey from one station to another (Note that you will have many paths from one node to another, keyed by departure time). The weight of the each path is its (the journey's) duration.</p> <p>You then solve the shortest path problem using one of the algorithms suggested by the Wikipedia link, bearing in mind that you have to add the cost of waiting at station N until the departure time of the train to station N+1.</p> <p>Sounds like a fun hack!</p> http://stackoverflow.com/questions/1661899/restricting-an-entire-symfony-admin-generator-page-according-to-credentials/1662157#1662157 1 Answer by dland for Restricting an entire symfony admin generator page according to credentials dland 2009-11-02T16:03:28Z 2009-11-02T16:03:28Z <p>Answering my own question, with the results of some preliminary investigations, it would appear that:</p> <pre><code>class fooActions extends autoFooActions { public function preExecute() { if (!sfContext::getInstance()-&gt;getUser()-&gt;hasCredential('can_do_foo')) { $this-&gt;redirect('@homepage'); } parent::preExecute(); } } </code></pre> <p>...will at least prevent people for hacking URLs to get at the admin function. But I am led to believe that <a href="http://webmozarts.com/2009/07/01/why-sfcontextgetinstance-is-bad/" rel="nofollow"><code>sfContext::getInstance()</code> is evil</a>. Hence I'm still looking for the Right Way To Do It.</p> http://stackoverflow.com/questions/1565061/using-a-case-when-in-a-doctrine-select-statement 0 Using a 'case when' in a Doctrine select statement dland 2009-10-14T08:45:24Z 2009-10-18T18:51:14Z <p>I have a select query I'd like to perform with Doctrine:</p> <pre><code> $resultset = Doctrine_Query::create() -&gt;select("t.code, t.description, case when t.id_outcome = 1 then 1 else 0 end as in_progress") -&gt;from('LuOutcome t') -&gt;orderBy('t.rank') -&gt;fetchArray(); </code></pre> <p>And it barfs on the 'case'. The documentation does not mention that it's possible (or not).</p> <p>I'm wondering if Doctrine lacks the capacity to do so. If so, it's a rather major omission. Does anyone know of a work-around?</p> http://stackoverflow.com/questions/1509645/detecting-errors-to-decide-whether-to-rollback-or-commit 1 Detecting errors to decide whether to rollback or commit dland 2009-10-02T13:54:15Z 2009-10-02T16:16:30Z <p>I'm trying to be as lazy as possible by generating a series of SQL commands in a file to feed to <code>psql</code> for processing. In a nutshell, I'm loading a series of import tables from outside sources (already done, via COPY), and then in a final step, deleting/updating/inserting records into the primary tables (which is functionally also done).</p> <p>The only thing from preventing me from succeeding (and being able to do everything from a series of commands in a shell script) is the fact that sometimes the operation has referential integrity errors, and thus I have to roll back everything until the source can be identified and corrected.</p> <p>So is there any way of knowing, from within a script processed by <code>psql</code>, if an error has occurred and to perform a rollback? And if there were no errors, commit.</p> <p>I can always solve the problem by switching to a higher-level language, open a connection and run each statement and check for errors, but it's just all that more make-work code that I'd like to avoid if possible.</p> http://stackoverflow.com/questions/1479741/why-is-three-argument-open-calls-with-lexical-filehandles-a-perl-best-practice/1481648#1481648 4 Answer by dland for Why is three-argument open calls with lexical filehandles a Perl best practice? dland 2009-09-26T17:03:12Z 2009-09-26T17:03:12Z <p>One aspect to keep in mind is that the two-arg form is broken. Consider a file named ' abc' (that is, a file name with a leading blank). You cannot open the file:</p> <pre><code>open my $foo, ' abc' or die $!; open my $foo, '&lt; abc' or die $!; open my $foo, '&lt; abc' or die $!; # nothing works </code></pre> <p>The space gets dropped and so the file can no longer be found. Such a scenario is highly improbable, but definitely a problem. The three-arg form is immune to this:</p> <pre><code>open my $foo, '&lt;', ' abc' or die $!; # works </code></pre> <p><a href="http://www.perlmonks.org/index.pl?node%5Fid=131085" rel="nofollow">This thread</a> from perlmonks is as good a discussion as any of the issue. Just bear in mind that in 2001, the three-arg form was still considered <em>new</em>, and thus not suitable for portable code, since Perl programs would die with a syntax error if run on a 5.005 interpreter. This is no longer the case: perl 5.005 is beyond deprecated, it is obsolete.</p> http://stackoverflow.com/questions/1476290/beginner-regex-multiple-replaces/1476492#1476492 3 Answer by dland for Beginner Regex: Multiple Replaces dland 2009-09-25T10:14:01Z 2009-09-25T10:14:01Z <p>If the things you're looking for are regular expressions themselves, a direct lookup table as perl @Sinan Ünür won't work (as the string equality <code>123 eq '\d+'</code> fails).</p> <p>You can use <code>Regexp::Assemble</code> to get around this limitation:</p> <pre><code>use strict; use warnings; use Regexp::Assemble; my %replace = ( 'cat' =&gt; 'dog', '(?:tom|pot)atoes' =&gt; 'pasta', ); my $re = Regexp::Assemble-&gt;new-&gt;track(1)-&gt;add(keys %replace); my $str = 'My cat likes to eat tomatoes.'; while (my $m = $re-&gt;match($str)) { $str =~ s/$m/$replace{$m}/; } print $str, $/; $str = 'My cat likes to eat potatoes.'; while (my $m = $re-&gt;match($str)) { $str =~ s/$m/$replace{$m}/; } print $str, $/; </code></pre> <p>Both of these blocks produces <code>My dog likes to eat pasta.</code></p> http://stackoverflow.com/questions/1425223/how-do-i-read-a-file-which-is-constantly-updating/1427042#1427042 0 Answer by dland for How do I read a file which is constantly updating? dland 2009-09-15T13:02:22Z 2009-09-15T13:02:22Z <p>You talk about opening a file, and ask about <code>IO::Socket</code>. These aren't quite the same things, even if deep down you're going to be reading data of a file descriptor.</p> <p>If you can access the remote stream from a named pipe or FIFO, then you can just open it as an ordinary file. It will block when nothing is available, and return whenever there is data that needs to be drained. You may, or may not, need to bring <code>File::Tail</code> to bear on the problem of not losing data if the sender runs too far ahead of you.</p> <p>On the other hand, if you're opening a socket directly to the other server (which seems more likely), <code>IO::Socket</code> is not going to work out of the box as there is no <code>getline</code> method available. You would have to read and buffer block-by-block and then dole it out line by line through an intermediate holding pen.</p> <p>You could pull out the socket descriptor into an <code>IO::Handle</code>, and use <code>getline()</code> on that. Something like:</p> <pre><code>my $sock = IO::Socket::INET-&gt;new( PeerAddr =&gt; '172.0.0.1', PeerPort =&gt; 1337, Proto =&gt; 'tcp' ) or die $!; my $io = new IO::Handle; $io-&gt;fdopen(fileno($sock),"r") or die $!; while (defined( my $data = $io-&gt;getline() )) { chomp $data; # do something } </code></pre> <p>You may have to perform a handshake in order to start receiving packets, but that's another matter.</p> http://stackoverflow.com/questions/1415077/how-can-i-get-the-fourth-line-after-matching-a-pattern-in-a-log-in-perl/1417749#1417749 0 Answer by dland for How can I get the fourth line after matching a pattern in a log in Perl? dland 2009-09-13T13:30:01Z 2009-09-13T13:30:01Z <p>Looking at that sample, you might find it a lot easier to scan the file in paragraph mode:</p> <pre><code>#! /usr/bin/perl -w use strict; use warnings; $/ = ''; # slurp in paragraph mode. while (&lt;&gt;) { chomp; print "[$_]\n"; } </code></pre> <p>Once you encounter an "interesting" paragraph (remember, a regexp can match any part of string, even if it has newlines), then you can split it apart to deal with it line-by-line if necessary:</p> <pre><code>my @lines = split /\n/; </code></pre> <p>All in all, you should wind up with far less housekeeping code (which is always a bug magnet).</p> http://stackoverflow.com/questions/1410209/postgres-update-a-date-field-when-a-boolean-field-is-set-to-true 1 postgres update a date field when a boolean field is set to true dland 2009-09-11T10:43:07Z 2009-09-11T14:10:57Z <p>For the sake of the example, consider a table</p> <pre><code>create table foo ( contents text NOT NULL, is_active boolean NOT NULL DEFAULT false, dt_active date ) </code></pre> <p>I insert a record:</p> <pre><code>insert into foo (contents) values ('bar') </code></pre> <p>So far, so good. Later on, I now want to 'activate' the record:</p> <pre><code>update foo set is_active = true </code></pre> <p>What I would like to do when <code>is_active</code> is changed from <code>false</code> to <code>true</code>, is for <code>dt_active</code> is set to <code>now()</code>. For bonus points it would be nice if <code>is_active</code> is changed from <code>true</code> to <code>fals</code>e, dt_active is set to null, but I can live without that.</p> <p>I'd really like to push this housekeeping into the database, it would make the client code much cleaner (since many tables (and even column tuples within tables) could benefit from this technique).</p> <p>I'm stumped as to how to pull out the current record in the database in the trigger (I'm using plpgsql), in order to compare the "then" with the "now". Pointers to code examples or snippets greatly appreciated.</p> http://stackoverflow.com/questions/1015438/how-do-i-get-the-output-of-curl-into-a-variable-in-perl-if-i-invoke-it-using-back/1023737#1023737 0 Answer by dland for How do I get the output of curl into a variable in Perl if I invoke it using backtics? dland 2009-06-21T11:47:24Z 2009-06-21T11:47:24Z <p>What do you really want to do? Use <code>curl</code> at all costs, or grab the contents of a web page?</p> <p>A more perlish way of doing this (which relies on no external programs that may or may not be installed on the next machine where you need to do this) would be:</p> <pre><code>use LWP::Simple; my $content = get("http://stackoverflow.com/questions/1015438/") or die "no such luck\n"; </code></pre> <p>If you want to see why the GET failed, or grab multiple pages from the same site, you'll need to use a bit more machinery. <code>perldoc lwpcook</code> will get you started.</p> http://stackoverflow.com/questions/970562/postgres-and-indexes-on-foreign-keys-and-primary-keys/974201#974201 0 Answer by dland for Postgres and Indexes on Foreign Keys and Primary Keys dland 2009-06-10T07:48:53Z 2009-06-10T07:48:53Z <p>If you want to list the indexes of all the tables in your schema(s) from your program, all the information is on hand in the catalog:</p> <pre><code>select n.nspname as "Schema" ,t.relname as "Table" ,c.relname as "Index" from pg_catalog.pg_class c join pg_catalog.pg_namespace n on n.oid = c.relnamespace join pg_catalog.pg_index i on i.indexrelid = c.oid join pg_catalog.pg_class t on i.indrelid = t.oid where c.relkind = 'i' and n.nspname not in ('pg_catalog', 'pg_toast') and pg_catalog.pg_table_is_visible(c.oid) order by n.nspname ,t.relname ,c.relname </code></pre> <p>If you want to delve further (such as columns and ordering), you need to look at pg_catalog.pg_index. Using <code>psql -E [dbname]</code> comes in handy for figuring out how to query the catalog.</p> http://stackoverflow.com/questions/898621/how-do-i-build-perl-regular-expressions-dynamically/904558#904558 1 Answer by dland for How do I build Perl regular expressions dynamically? dland 2009-05-24T20:12:14Z 2009-05-24T20:12:14Z <p>If you want to build a potentially large regexp and don't want to bother debugging the parentheses, use a Perl module to build it for you!</p> <pre><code>use strict; use Regexp::Assemble; my $re = Regexp::Assemble-&gt;new-&gt;add(qw(avi flv mp3 mp4 wmv)); ... if ($file =~ /$re/) { # a match! } print "$re\n"; # (?:(?:fl|wm)v|mp[34]|avi) </code></pre> http://stackoverflow.com/questions/356759/a-mnemonic-for-the-order-of-css-margin-and-padding-shorthand-properties 1 A mnemonic for the order of CSS margin and padding shorthand properties dland 2008-12-10T16:56:52Z 2009-04-27T14:22:32Z <p>I can never remember the order of the shorthand property for setting the margin or padding in one declaration. That is:</p> <pre><code>margin-top: 2px; margin-bottom: 4px; margin-left: 3px; margin-right: 8px; </code></pre> <p>may be written as</p> <pre><code>margin: 2px 8px 4px 3px; </code></pre> <p>Yes I understand that one can visualise the order by thinking of a clock, starting at midday and moving clockwise. But I keep forgetting about that. I need to recall the order top, right, bottom, left textually.</p> <p>Hence, <strike>T B L R</strike> T R B L.</p> <p>Something like This [R-noun] [B-verb] [L-nouns] is perhaps the way to go but I feel myself lacking inspiration. If anyone has come across a useful mnemonic for this I'd love to hear it. Like a good meme, I'm sure once I get something lodged in my brain I will be unlikely to forget it.</p> <p><strong>NOTE</strong>: This question gave incorrect information - the order (as noted in some of the comments and answers) is <strong>Top Right Bottom Left</strong>. (heh, see what I mean? -- dland)</p> http://stackoverflow.com/questions/214045/why-specify-primary-foreign-key-attributes-in-column-names 3 Why specify primary/foreign key attributes in column names dland 2008-10-17T22:26:29Z 2009-01-19T13:08:45Z <p>A couple of recent questions discuss strategies for naming columns, and I was rather surprised to discover the concept of embedding the notion of foreign and primary keys in column names. That is</p> <pre><code>select t1.col_a, t1.col_b, t2.col_z from t1 inner join t2 on t1.id_foo_pk = t2.id_foo_fk </code></pre> <p>I have to confess I have never worked on any database system that uses this sort of scheme, and I'm wondering what the benefits are. The way I see it, once you've learnt the N principal tables of a system, you'll write several orders of magnitude more requests with those tables.</p> <p>To become productive in development, you'll need to learn which tables are the important tables, and which are simple tributaries. You'll want to commit an good number of column names to memory. And one of the basic tasks is to join two tables together. To reduce the learning effort, the easiest thing to do is to ensure that the column name is the same in both tables:</p> <pre><code>select t1.col_a, t1.col_b, t2.col_z from t1 inner join t2 on t1.id_foo = t2.id_foo </code></pre> <p>I posit that, as a developer, you don't need to be reminded that much about which columns are primary keys, which are foreign and which are nothing. It's easy enough to look at the schema if you're curious. When looking at a random</p> <pre><code>tx inner join ty on tx.id_bar = ty.id_bar </code></pre> <p>... is it all that important to know which one is the foreign key? Foreign keys are important only to the database engine itself, to allow it to ensure referential integrity and do the right thing during updates and deletes.</p> <p>What problem is being solved here? (I know this is an invitation to discuss, and feel free to do so. But at the same time, I <em>am</em> looking for an answer, in that I may be genuinely missing something).</p> http://stackoverflow.com/questions/420315/stacks-why-push-and-pop/420398#420398 0 Answer by dland for Stacks - why PUSH and POP? dland 2009-01-07T14:00:26Z 2009-01-07T14:00:26Z <p>As to stacks growing downwards in memory, remember that When dealing with hierarchical data structures (trees), most programmers are happy to draw one on a page with the base (or trunk) at the top of the page...</p> http://stackoverflow.com/questions/372668/code-golf-how-do-i-write-the-shortest-character-mapping-program/372745#372745 11 Answer by dland for Code Golf: How do I write the shortest character mapping program? dland 2008-12-16T21:14:43Z 2008-12-17T22:07:09Z <h2>Perl, 45 characters</h2> <pre><code>%e=split/[,|]/,pop;say+map$e{$_},split//,pop </code></pre> <p>duh! in Perl 5.10 you can use <code>say</code>! Unfortunately this needs parentheses, which fortunately can be replaced by a golfing trick, saving a character.</p> <h2>Perl, 47 characters</h2> <pre><code>%e=split/[,|]/,pop;print map$e{$_},split//,pop </code></pre> <p>Changes:</p> <ul> <li>use pop to pull the elements off the command line backwards (second arg first).</li> <li>If you're not running with warnings enabled, it doesn't matter if you print <code>undef</code> (when the encode table lacks a mapping).</li> <li>the final semicolon is optional.</li> </ul> <p><strike>Here's one in Perl, 59 characters:</p> <pre><code>%e=split/[,|]/,$ARGV[1];print map$e{$_}//'',split//,shift; </code></pre> <p></strike></p> <p>Ordinarily (just to kill the "Perl is line-noise" crowd) I would most likely write that as:</p> <pre><code>use strict; use warnings; my $str = shift or die "No string to be be encoded given\n"; my %encode = split /[,|]/, shift or die "No encoding string given\n"; print map {$encode{$_} // ''} split //, $str; </code></pre> <p>That still relies on a few handy Perl idioms that may not be obvious to non-Perl programmers, such as relying on a flattened list coming out of split to initialise the %encode hash with a series of key/value pairs, and the fact that split // breaks up a string character by character.</p> <p>The <code>$encode{$_} // ''</code> is a different beast. This is a new feature in Perl 5.10 which is backported from Perl 6, known as defined-or. This is used to get around the fact that the expression <code>0 || 'a'</code> gives 'a', not 0. This is because || evaluates (non-zero) truth rather than definedness. The resulting misfeature is that it would be impossible to encode something that maps to 0, you'd get the original character back.</p> http://stackoverflow.com/questions/352506/postgres-best-practice/354662#354662 3 Answer by dland for Postgres Best Practice dland 2008-12-09T23:54:34Z 2008-12-09T23:54:34Z <p>The most important Pg concept to understand is vacuuming. Understand how and when to do it, either automatic or manual. Yes, it seems a little baroque. It doesn't really have an analogue, although Oracle users will grasp the concept quickly. But it's the key to good Postgresql performance.</p> <p>Apart from that, use domains. (Think of C typedef declarations). Postgresql has a pretty good implementation. This helps you ensure you don't wind up accidentally performing joins between varchars and integers. But this is an SQL standard, nothing Pg-specific.</p> <p>Also note that out of the box, Postgresql isn't configured to use all the available resources a machine has to offer; its default configuration is very conservative. There are many settings that can be bumped up by a couple of orders of magnitude or more on a dedicated server. Just what needs to be tweaked depends on your workload.</p> http://stackoverflow.com/questions/341384/how-to-convert-an-interval-like-1-day-013000-into-253000/351317#351317 0 Answer by dland for How to convert an interval like "1 day 01:30:00" into "25:30:00"? dland 2008-12-08T23:19:32Z 2008-12-08T23:19:32Z <p>It can be done, but I believe that the only way is through the following monstrosity (assuming your time interval column name is "ti"):</p> <pre><code>select to_char(floor(extract(epoch from ti)/3600),'FM00') || ':' || to_char(floor(cast(extract(epoch from ti) as integer) % 3600 / 60), 'FM00') || ':' || to_char(cast(extract(epoch from ti) as integer) % 60,'FM00') as hourstamp from whatever; </code></pre> <p>See? I told you it was horrible :)</p> <p>It would have been nice to think that</p> <pre><code>select to_char(ti,'HH24:MI:SS') as hourstamp from t </code></pre> <p>would worked, but alas, the HH24 format doesn't "absorb" the overflow beyond 24. The above comes (reconstructed from memory) from some code I once wrote. To avoid offending those of delicate constitution, I encapsulated the above shenanigans in a view...</p> http://stackoverflow.com/questions/343138/retrieving-comments-from-a-postgres-db/351019#351019 0 Answer by dland for Retrieving Comments from a PostGres DB dland 2008-12-08T21:41:17Z 2008-12-08T21:41:17Z <p>I asked <a href="http://stackoverflow.com/questions/272438/setting-the-comment-of-a-column-to-that-of-another-column-in-postgresql">a similar question about Postgresql comments</a> last month. If you dig through that, you'll come across some Perl code over on my blog that automates the process of extracting a comment.</p> <p>To pull out the column names of a table, you can use something like the following:</p> <pre><code>select a.attname as "colname" ,a.attrelid as "tableoid" ,a.attnum as "columnoid" from pg_catalog.pg_attribute a inner join pg_catalog.pg_class c on a.attrelid = c.oid where c.relname = 'mytable' -- better to use a placeholder and a.attnum &gt; 0 and a.attisdropped is false and pg_catalog.pg_table_is_visible(c.oid) order by a.attnum </code></pre> <p>You can then use the tableoid,columnoid tuple to extract the comment of each column (see my question).</p> http://stackoverflow.com/questions/272438/setting-the-comment-of-a-column-to-that-of-another-column-in-postgresql 4 Setting the comment of a column to that of another column in Postgresql dland 2008-11-07T15:29:19Z 2008-12-08T21:08:56Z <p>Suppose I create a table in Postgresql with a comment on a column:</p> <pre><code>create table t1 ( c1 varchar(10) ); comment on column t1.c1 is 'foo'; </code></pre> <p>Some time later, I decide to add another column:</p> <pre><code>alter table t1 add column c2 varchar(20); </code></pre> <p>I want to look up the comment contents of the first column, and associate with the new column:</p> <pre><code>select comment_text from (what?) where table_name = 't1' and column_name = 'c1' </code></pre> <p>The (what?) is going to be a system table, but after having looked around in pgAdmin and searching on the web I haven't learnt its name.</p> <p>Ideally I'd like to be able to:</p> <pre><code>comment on column t1.c1 is (select ...); </code></pre> <p>but I have a feeling that's stretching things a bit far. Thanks for any ideas.</p> <p>Update: based on the suggestions I received here, I wound up writing a program to automate the task of transferring comments, as part of a larger process of changing the datatype of a Postgresql column. You can read about that <a href="http://wirespeed.wordpress.com/2008/11/07/alter-column-type-postgres/" rel="nofollow">on my blog</a>.</p> http://stackoverflow.com/questions/346940/two-html-tables-side-by-side-centered-on-the-page/347506#347506 0 Answer by dland for Two HTML tables side by side, centered on the page dland 2008-12-07T12:01:48Z 2008-12-07T12:01:48Z <p>Unfortunately, all of these solutions rely on specifying a fixed width. Since the tables are generated dynamically (statistical results pulled from a database), the width can not be known in advance.</p> <p>The desired result can be achieved by wrapping the two tables within another table:</p> <pre><code>&lt;table align="center"&gt;&lt;tr&gt;&lt;td&gt; ... the two tables ... &lt;/td&gt;&lt;/tr&gt;&lt;/table&gt; </code></pre> <p>and the result is a perfectly centered pair of tables that responds fluidly to arbitrary widths and page (re)sizes (and the align="center" table attribute could be hoisted out into an outer div with margin autos).</p> <p>I conclude that there are some layouts that can only be achieved with tables.</p> http://stackoverflow.com/questions/228978/how-can-i-reduce-duplication-in-constants/229550#229550 8 Answer by dland for How can I reduce duplication in constants? dland 2008-10-23T12:36:24Z 2008-10-27T20:21:16Z <blockquote> <p>Using separate "use constant" blocks does workaround this problem, but that adds a lot of unneeded code.</p> </blockquote> <p>Does it really?</p> <pre><code>use constant BASE_PATH =&gt; "/etc/app1"; use constant { LOG4PERL_CONF_FILE =&gt; BASE_PATH . "/log4perl.conf", CONF_FILE1 =&gt; BASE_PATH . "/config1.xml", CONF_FILE2 =&gt; BASE_PATH . "/config2.xml", CONF_FILE3 =&gt; BASE_PATH . "/config3.xml", CONF_FILE4 =&gt; BASE_PATH . "/config4.xml", CONF_FILE5 =&gt; BASE_PATH . "/config5.xml", }; </code></pre> <p>I don't see a lot of problems with this. You have specified the base path in one point only, thereby respecting the DRY principle. If you assign BASE_PATH with an environment variable:</p> <pre><code>use constant BASE_PATH =&gt; $ENV{MY_BASE_PATH} || "/etc/app1"; </code></pre> <p>... you then have a cheap way of reconfiguring your constant without having to edit your code. What's there to not like about this?</p> <p>If you really want to cut down the repetitive "BASE_PATH . " concatenation, you could add a bit of machinery to install the constants yourself and factor that away:</p> <pre><code>use strict; use warnings; use constant BASE_PATH =&gt; $ENV{MY_PATH} || '/etc/apps'; BEGIN { my %conf = ( FILE1 =&gt; "/config1.xml", FILE2 =&gt; "/config2.xml", ); for my $constant (keys %conf) { no strict 'refs'; *{__PACKAGE__ . "::CONF_$constant"} = sub () {BASE_PATH . "$conf{$constant}"}; } } print "Config is ", CONF_FILE1, ".\n"; </code></pre> <p>But at this point I think the balance has swung away from Correct to Nasty :) For a start, you can no longer grep for CONF_FILE1 and see where it is defined.</p> http://stackoverflow.com/questions/236195/how-can-i-fit-a-curve-to-a-histogram-distribution 3 How can I fit a curve to a histogram distribution? dland 2008-10-25T10:18:59Z 2008-10-27T18:07:39Z <p>Someone asked me a question via e-mail about integer partitions the other day (as I had released a Perl module, Integer::Partition, to generate them), that I was unable to answer.</p> <p>Background: here are all the integer partitions of 7 (the sum of each row equals 7).</p> <pre><code>7 6 1 5 2 5 1 1 4 3 4 2 1 4 1 1 1 3 3 1 3 2 2 3 2 1 1 3 1 1 1 1 2 2 2 1 2 2 1 1 1 2 1 1 1 1 1 1 1 1 1 1 1 1 </code></pre> <p>Now if we look at the lengths of each partition and count how many there are of each length:</p> <pre><code>1 1 2 3 3 4 4 3 5 2 6 1 7 1 </code></pre> <p>... we see one partition has a length of 1 (7), one has a length of 7 (1 1 1 1 1 1 1). There are 4 partitions that have a length of 3: (5 1 1), (4 2 1), (3 3 1), (3 2 2).</p> <p>For larger numbers of N, if you graph the distribution of partition lengths, an asymetric curve emerges, skewed towards the origin. If you're curious, graph the following partition length counts for N=40.</p> <p>1 20 133 478 1115 1945 2738 3319 3589 3590 3370 3036 2637 2241 1861 1530 1236 995 790 627 490 385 297 231 176 135 101 77 56 42 30 22 15 11 7 5 3 2 1 1</p> <p>If you're interested in generating these distribution counts, here's the code I used:</p> <pre><code>#! /usr/local/bin/perl use strict; use warnings; use Integer::Partition; my $n = shift || 1; while (1) { my $start = time; my $i = Integer::Partition-&gt;new($n); my %size; while (my $p = $i-&gt;next) { $size{scalar @$p}++; } open my $out, '&gt;&gt;', "bucket-count.out"; for my $s (sort {$a &lt;=&gt; $b} keys %size) { print $out "$n\t$s\t$size{$s}\n"; } close $out; my $delta = time - $start; print "$n\t$delta secs\n"; ++$n; } </code></pre> <p>(note: on my computer, N=90 takes about 10 minutes to generate).</p> <p>So my question is: what equation can be used to match the observed distribution curve? Is it a Gauss (can a Gaussian distribution be asymetric?) or Poisson distribution, or something else?</p> <p>How do I solve it for N? If I remember my maths from high-school, I can determine the peak by solving when the derivative intersects 0. How do I produce the derivative? I've searched the web but all I get back are abstruse mathematical papers. I just need some code :)</p> http://stackoverflow.com/questions/230065/what-are-some-code-coverage-tools-for-perl/236132#236132 3 Answer by dland for What are some code coverage tools for Perl? dland 2008-10-25T08:59:47Z 2008-10-25T08:59:47Z <p>Moritz discusses how modules built with Module::Build can use Devel::Cover easily.</p> <p>For modules using ExtUtils::MakeMaker, an extension module exists to invoke the same functionality. Adding the following code before the call to WriteMakefile():</p> <pre><code>eval "use ExtUtils::MakeMaker::Coverage"; if( !$@ ) { print "Adding testcover target\n"; } </code></pre> <p>... will allow one to run the command 'make testcover' and have Devel::Cover perform its magic.</p> http://stackoverflow.com/questions/214059/how-can-i-write-a-wrapper-around-ngrep-that-highlights-matches/214782#214782 4 Answer by dland for How can I write a wrapper around ngrep that highlights matches? dland 2008-10-18T08:57:37Z 2008-10-18T08:57:37Z <p>This seems to do the trick, at least comparing two windows, one running a straight ngrep (e.g. ngrep whatever) and one being piped into the following program (with ngrep whatever | ngrephl target-string).</p> <pre><code>#! /usr/bin/perl use strict; use warnings; $| = 1; # autoflush on my $keyword = shift or die "No pattern specified\n"; my $cache = ''; while (read STDIN, my $ch, 1) { if ($ch eq '#') { $cache =~ s/($keyword)/\e[31m$1\e[0m/g; syswrite STDOUT, "$cache$ch"; $cache = ''; } else { $cache .= $ch; } } </code></pre> http://stackoverflow.com/questions/173527/creating-a-new-rrd-database-based-on-an-existing-one 2 Creating a new rrd database based on an existing one dland 2008-10-06T07:59:53Z 2008-10-10T06:54:13Z <p>I have some old rrdtool databases, for which the exact creation recipe has long been since lost. I need to create a new database with the same characteristics as the current ones. I've dumped a couple of old databases and pored over the contents but I'm not sure how to interpret the metadata. I think it appears in the following stanzas</p> <pre><code>&lt;cf&gt; AVERAGE &lt;/cf&gt; &lt;pdp_per_row&gt; 360 &lt;/pdp_per_row&gt; &lt;!-- 1800 seconds --&gt; &lt;xff&gt; 5.0000000000e-01 &lt;/xff&gt; </code></pre> <p>There are four such stanzas, which correspond to the way I recall the round-robin cascading was set up. Has anyone already done this, or can give me pointers as to how to clone a new empty rrd database from an existing one? Or show me where I missed this in the documentation.</p> http://stackoverflow.com/questions/1784841/css-two-colums-fixed-fluid-same-height/1784937#1784937 Comment by dland on CSS: two colums (fixed/fluid) - same height dland 2009-11-24T17:12:05Z 2009-11-24T17:12:05Z I doubt this works. The width=100% will punch the outer div below inner. You'll need more than this. http://stackoverflow.com/questions/1784841/css-two-colums-fixed-fluid-same-height/1785705#1785705 Comment by dland on CSS: two colums (fixed/fluid) - same height dland 2009-11-24T17:03:47Z 2009-11-24T17:03:47Z note that if the browser width is restricted, mainCol will wrap underneath leftCol, which may be undesirable http://stackoverflow.com/questions/1739285/why-does-regexpassemble-fail-with-these-simple-regexps/1745495#1745495 Comment by dland on Why does Regexp::Assemble fail with these simple regexps? dland 2009-11-16T23:19:11Z 2009-11-16T23:19:11Z When I assemble the above four patterns, I get <code>(?:run p(?:ost|re)flight script for|(?:Configu|Prepa)ring volume) .+</code> . Notice how the module hoisted the 'p' out of the (post|pre) alternation? http://stackoverflow.com/questions/346940/two-html-tables-side-by-side-centered-on-the-page/1717001#1717001 Comment by dland on Two HTML tables side by side, centered on the page dland 2009-11-13T16:21:24Z 2009-11-13T16:21:24Z +1 for posting to an old question! In the meantime, I also found a solution using display: table-cell, which as you can imagine fails miserably on IE6. I finally threw in the towel and added some evil IE6 comment hackery to emit &lt;table&gt;, &lt;tr&gt;, &lt;td&gt; elements for IE6. Seems to work well enough. http://stackoverflow.com/questions/1661899/restricting-an-entire-symfony-admin-generator-page-according-to-credentials/1664555#1664555 Comment by dland on Restricting an entire symfony admin generator page according to credentials dland 2009-11-03T14:33:34Z 2009-11-03T14:33:34Z that's what I thought, too, except I tried 'default' as the top-level key. Neither works in any event. http://stackoverflow.com/questions/747111/symfony-options-for-admin-url/747135#747135 Comment by dland on Symfony: Options for admin URL dland 2009-11-02T15:11:42Z 2009-11-02T15:11:42Z In a big app, this approach is doomed to failure (says he, looking at his scars). Too much maintenance to ensure that relative and absolute URLs go where they should. http://stackoverflow.com/questions/1405381/doctrine-orm-drop-all-tables-without-dropping-database/1585735#1585735 Comment by dland on Doctrine ORM: drop all tables without dropping database dland 2009-10-21T13:01:12Z 2009-10-21T13:01:12Z @gpilotino: Don't Do That Then! Just build-schema, build-model etc. Or write a task to do what you need to do. http://stackoverflow.com/questions/1565061/using-a-case-when-in-a-doctrine-select-statement/1585709#1585709 Comment by dland on Using a 'case when' in a Doctrine select statement dland 2009-10-21T12:57:10Z 2009-10-21T12:57:10Z Bad idea. Looping through a resultset in code to perform fixups is a sign that you haven't asked your database to do enough. I find this is a common trait among PHP developers. Whether it looks tricky is besides the point: the case statement in SQL is very useful, and it's a pity that Doctrine doesn't recognise it. http://stackoverflow.com/questions/1565061/using-a-case-when-in-a-doctrine-select-statement Comment by dland on Using a 'case when' in a Doctrine select statement dland 2009-10-16T21:45:50Z 2009-10-16T21:45:50Z done... in at least 15 characters :-/ http://stackoverflow.com/questions/1487629/regexp-perl-code-for-handling-both-dots-and-commas-as-valid-decimal-separators/1487663#1487663 Comment by dland on Regexp/perl code for handling both dots and commas as valid decimal separators dland 2009-09-28T19:45:34Z 2009-09-28T19:45:34Z That may be shorter, but by golly, it's hard on the eyes! http://stackoverflow.com/questions/1471002/how-can-i-remove-non-unique-lines-from-a-large-file-with-perl/1471027#1471027 Comment by dland on How can I remove non-unique lines from a large file with Perl? dland 2009-09-26T17:18:57Z 2009-09-26T17:18:57Z pavium, don't worry about offending a Perl guru. It's a good way to learn, and if people comment, it's not you, it's your code. Not the same thing. One of the Perl mottos is &quot;Have fun&quot;. http://stackoverflow.com/questions/1471002/how-can-i-remove-non-unique-lines-from-a-large-file-with-perl/1472023#1472023 Comment by dland on How can I remove non-unique lines from a large file with Perl? dland 2009-09-26T17:15:55Z 2009-09-26T17:15:55Z This will be a win as long as the lines being hashed are 16 characters or greater. If the line length is less than 16, use the line itself instead as a <code>%seen</code> key. my $hashed_line = length($line) &gt; 15 ? md5($line) : $line; will do the trick. See also <code>Bit::Vector</code> as a replacement to <code>%keep&#95;line&#95;num</code> to reduce the memory footprint. http://stackoverflow.com/questions/1421144/how-can-i-get-list-of-mirrors-in-newest-cpan-pm/1421705#1421705 Comment by dland on How can I get list of mirrors in newest CPAN.pm? dland 2009-09-15T12:11:02Z 2009-09-15T12:11:02Z In that case you want <code>o conf init urllist</code> http://stackoverflow.com/questions/1417646/selecting-only-authors-who-have-articles/1417667#1417667 Comment by dland on Selecting only authors who have articles? dland 2009-09-13T13:15:22Z 2009-09-13T13:15:22Z The subselect should be written as <code>select 1 from articles ...</code>. You don't want to pull anything back from the backend, you just want to know if something is there. http://stackoverflow.com/questions/1413602/are-fluid-websites-worth-making-anymore/1413617#1413617 Comment by dland on Are fluid websites worth making anymore? dland 2009-09-13T12:33:37Z 2009-09-13T12:33:37Z @Paul, I went through web traffic statistics at $work in about May 2009, and I saw around IE6 at around 45%: corporate users visiting a corporate site. There's a lot of IE6 still out there, alas.