Dan

5,637
reputation
129 views

Registered User

name Dan
member for 1 year
seen yesterday
website
location
age
Dec
6
awarded  Mortarboard
Nov
25
revised How can I make Perl find my modules?
edited title
Nov
23
comment How do I retrieve the terminal width in Perl?
There's a pure-perl version. You shouldn't need a compiler to install it.
Nov
23
answered How do I retrieve the terminal width in Perl?
Nov
22
comment Is there something like Perl’s Win32::FileNotify for Linux or OS X?
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.
Nov
22
comment Moose: Expiring cached results of calculations when attribute values change?
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..
Nov
22
awarded  Good Answer
Nov
21
answered Moose: Expiring cached results of calculations when attribute values change?
Nov
18
comment Why do these different Perl sort subroutines give me different orders of elements?
What output do you actually want?
Nov
14
accepted How can I “use lib” the appropriate directory depending on installation location?
Nov
12
answered [jQuery] What is the rule? when do i use $(this) and when is “this” enough?
Nov
11
revised How can I “use lib” the appropriate directory depending on installation location?
added 343 characters in body; deleted 2 characters in body
Nov
11
answered How can I “use lib” the appropriate directory depending on installation location?
Nov
2
accepted Overloading Arithmetic Operators in JavaScript?
Oct
28
comment Overloading Arithmetic Operators in JavaScript?
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. + isn't an operator as such, it's a method. So in Ruby, a + b is actually a.+(b). 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 ;)
Oct
28
answered Overloading Arithmetic Operators in JavaScript?
Oct
27
answered <pre> tag in HTML with fixed width
Oct
27
accepted Request for comments: What should the syntax be to include code snippets in Markdown? (from external files)
Oct
27
answered Request for comments: What should the syntax be to include code snippets in Markdown? (from external files)
Oct
27
revised In Perl, how do you access a value from a reference in an array of hashrefs?
deleted 193 characters in body
Oct
27
comment In Perl, how do you access a value from a reference in an array of hashrefs?
Explicitly dereferencing like that removes ambiguity. Otherwise constructs like $$foo[1] become more likely to mislead you in 6 months when you're not sure if you meant ${$foo}[1], or '${$foo[1]}'. Uglier, I'll grant you ;)
Oct
27
comment Should I use common::sense or just stick with `use strict` and `use warnings`?
Undef warnings usually just mean I've forgotten to quality some string comparison with defined $foo && .. .. ;)
Oct
27
answered Selectively counting delimited field values and creating a hash using map
Oct
27
comment In Perl, how do you access a value from a reference in an array of hashrefs?
$$allDirArray is the same as ${$allDirArray}, the {} are optional (but often recommended, if only for readability). I'd prefer $allDirArray->[$i]{dir}, personally.
Oct
27
answered In Perl, how do you access a value from a reference in an array of hashrefs?
Oct
22
awarded  Enlightened
Oct
22
awarded  Nice Answer
Oct
2
accepted Insert a Link Using CSS
Sep
19
awarded  Yearling
Jul
15
awarded  Popular Question
Jul
9
awarded  Nice Answer
Jul
2
awarded  Nice Answer