dland

1,376
Reputation
65 views

Registered User

Name dland
Member for 1 year
Seen 2 days ago
Website
Location At my desk
Age 45

Programmer, writer, carpenter. Fences with a foil.

Long-time Perl programmer and contributor. Author of several Perl modules, some of which are quite useful.

Fond of taking things apart and putting them back together again. Building, tinkering, repairing and repurposing things.

Nov
24
comment CSS: two colums (fixed/fluid) - same height
I doubt this works. The width=100% will punch the outer div below inner. You'll need more than this.
Nov
24
comment CSS: two colums (fixed/fluid) - same height
note that if the browser width is restricted, mainCol will wrap underneath leftCol, which may be undesirable
Nov
16
comment Why does Regexp::Assemble fail with these simple regexps?
When I assemble the above four patterns, I get (?:run p(?:ost|re)flight script for|(?:Configu|Prepa)ring volume) .+ . Notice how the module hoisted the 'p' out of the (post|pre) alternation?
Nov
16
answered Why does Regexp::Assemble fail with these simple regexps?
Nov
16
accepted Mulitple Sites with common files
Nov
13
answered Mulitple Sites with common files
Nov
13
comment Two HTML tables side by side, centered on the page
+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 <table>, <tr>, <td> elements for IE6. Seems to work well enough.
Nov
4
answered SQL query for retrieving connecting trains
Nov
3
comment Restricting an entire symfony admin generator page according to credentials
that's what I thought, too, except I tried 'default' as the top-level key. Neither works in any event.
Nov
2
answered Restricting an entire symfony admin generator page according to credentials
Nov
2
asked Restricting an entire symfony admin generator page according to credentials
Nov
2
comment Symfony: Options for admin URL
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.
Oct
21
comment Doctrine ORM: drop all tables without dropping database
@gpilotino: Don't Do That Then! Just build-schema, build-model etc. Or write a task to do what you need to do.
Oct
21
comment Using a ‘case when’ in a Doctrine select statement
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.
Oct
16
comment Using a ‘case when’ in a Doctrine select statement
done... in at least 15 characters :-/
Oct
14
asked Using a ‘case when’ in a Doctrine select statement
Oct
2
asked Detecting errors to decide whether to rollback or commit
Sep
28
comment Regexp/perl code for handling both dots and commas as valid decimal separators
That may be shorter, but by golly, it's hard on the eyes!
Sep
26
comment How can I remove non-unique lines from a large file with Perl?
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 "Have fun".
Sep
26
comment How can I remove non-unique lines from a large file with Perl?
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 %seen key. my $hashed_line = length($line) > 15 ? md5($line) : $line; will do the trick. See also Bit::Vector as a replacement to %keep_line_num to reduce the memory footprint.
Sep
26
answered Why is three-argument open calls with lexical filehandles a Perl best practice?
Sep
25
answered Beginner Regex: Multiple Replaces
Sep
20
awarded  Yearling
Sep
16
awarded  Disciplined
Sep
15
answered How do I read a file which is constantly updating?
Sep
13
answered How can I get the fourth line after matching a pattern in a log in Perl?
Sep
13
comment Selecting only authors who have articles?
The subselect should be written as select 1 from articles .... You don't want to pull anything back from the backend, you just want to know if something is there.
Sep
13
comment Are fluid websites worth making anymore?
@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.
Sep
11
comment postgres update a date field when a boolean field is set to true
with CREATE TRIGGER trg_update_foo_t BEFORE UPDATE ON foo FOR EACH ROW EXECUTE PROCEDURE trg_update_foo(); and we're in business.
Sep
11
comment How can I fit a curve to a histogram distribution?
This doesn't really, truly answer the question, but since it's the only response, you get the point :)
Sep
11
comment Creating a new rrd database based on an existing one
This doesn't really, truly answer the question, but since it's the only response, you get the point :)
Sep
11
asked postgres update a date field when a boolean field is set to true
Aug
25
comment How can I create a path with all of its subdirectories in one shot in Perl?
The underlying code is around two decades old, and programming fashions have changed a lot since then. You're using the old-style File::Path interface. The new interface allows you to catch all errors and deal with (or ignore) them as appropriate.
Aug
6
awarded  Nice Answer
Jul
27
awarded  Nice Answer
Jun
21
answered How do I get the output of curl into a variable in Perl if I invoke it using backtics?
Jun
10
answered Postgres and Indexes on Foreign Keys and Primary Keys
Jun
8
awarded  Popular Question