Kev

2,342
Reputation
291 views

Registered User

Name Kev
Member for 1 year
Seen 2 days ago
Website
Location Canada
Age 25
I'm a small-time programmer doing my best to be useful.
2h
awarded  Mortarboard
2d
revised Should setting `checkbox.checked = false` not clear the HTML attribute too?
cleaned up code example
2d
comment Should setting `checkbox.checked = false` not clear the HTML attribute too?
Sorry, I had tried to express that in the question. I expect setting the .checked property to have an effect on the HTML attribute (especially since it has an effect on the UI.) But the HTML attribute does not change, no matter what it's initially set to. This seems pretty inconsistent.
2d
revised Should setting `checkbox.checked = false` not clear the HTML attribute too?
edited tags
2d
comment Should setting `checkbox.checked = false` not clear the HTML attribute too?
Tried it. Doesn't seem to change the outcome. Also according to developer.mozilla.org/en/XUL/checkbox , the checked property is a boolean type.
2d
asked Should setting `checkbox.checked = false` not clear the HTML attribute too?
Dec
3
comment What’s wrong with this simple query using NOT IN?
+1 for the doc link. Thanks.
Dec
3
comment What’s wrong with this simple query using NOT IN?
+1 for the alternate idea.
Dec
3
comment What’s wrong with this simple query using NOT IN?
Not directly, it'd have to be where not exists (select radio_bin from radio where radio.radio_bin = radio_bin.id).
Dec
3
comment What’s wrong with this simple query using NOT IN?
I do have one, as indicated in the question, but this does fix it.
Dec
3
comment What’s wrong with this simple query using NOT IN?
But if you mean radio.radio_bin this is correct.
Dec
3
comment What’s wrong with this simple query using NOT IN?
There are no null `radio_bin.id`s. It's a serial PK.
Dec
3
asked What’s wrong with this simple query using NOT IN?
Dec
1
revised Command-line syntax-checking mod_perl scripts
added 83 characters in body
Dec
1
asked Command-line syntax-checking mod_perl scripts
Nov
29
awarded  Popular Question
Nov
24
accepted Spinning javascript menu
Nov
20
comment Year end budget - what development software should be considered?
You didn't by chance have a hand in the Candian health care system recently, did you?
Nov
20
revised In Perl, how do I create a hash whose keys come from a given array?
merged comment with answer
Nov
20
comment Where can I find code profiling and/or code coverage modules that work with mod_perl2?
Although it says it supports win32 and modperl2, I don't think it supports both at the same time. It crashes Apache immediately after starting, every time.
Nov
16
revised Software for multiple copy/paste?
edited tags
Nov
16
comment What is the proper syntax for storing an array into a Perl hash?
Also beware that this will be modifying the original array, not a copy of it.
Nov
16
comment What is the proper syntax for storing an array into a Perl hash?
I think you'd need to reference it in the first place though too, right? Like ->new(\@array1, \@array2)?
Nov
10
awarded  Popular Question
Nov
6
asked Perl equivalent of (Postgre)SQL BETWEEN operator?
Nov
4
comment server side db programming: why?
Ah, okay, that's true about the guarantee. I don't see lack of parameters or recursion as drawbacks--that's when you'd call a regular procedure (if you really needed to) from a trigger. In PostgreSQL they can be set-based ("statement-level" they say), aren't that expensive, and have a set firing order. I think using both is more flexible and powerful than limiting yourself to one or the other.
Nov
2
comment server side db programming: why?
I don't understand this fear of bad triggers.
Nov
2
comment server side db programming: why?
It doesn't mean the same--without a trigger there's no guarantee a 3rd-party app will follow the business rules. Which drawbacks would you say are significant?
Oct
30
answered server side db programming: why?
Oct
30
comment PostgreSQL analog of SQL Server index
No, not as a comment--click the edit link above it and change the question to include more details.
Oct
30
comment PostgreSQL analog of SQL Server index
Well, there's always postgresql.org/docs/8.4/…
Oct
29
comment Closing all connections to a particular database without downing the whole service
I don't have control over the restore part itself (there might be vendor-specific stuff that happens in the backup/restore process...otherwise I'm not sure why they'd create a proprietary utility), but I'll try those two in succession to see if it boots everyone. Thanks!
Oct
29
asked Closing all connections to a particular database without downing the whole service
Oct
28
comment Is there a way to word-wrap text in a div?
Good observation and solution.
Oct
28
awarded  Nice Answer
Oct
28
comment Asking for opinions : One sequence for all tables
"We have concluded in earlier discussions"--internal discussion or something on SO?
Oct
28
revised Asking for opinions : One sequence for all tables
spellchecked
Oct
28
answered Postgres vs Firebird
Oct
28
accepted Where does the Perl Package Manager get its ‘areas’ data from on Win32?
Oct
28
comment Visitors to site get a file download instead of web page?
Nice, four seconds faster than me. :P
Oct
28
answered Visitors to site get a file download instead of web page?
Oct
27
revised Where do you keep your code?
edited body
Oct
27
comment getting jQuery UI’s datepicker to always open in a certain direction?
No prob. I hope there is a better solution out there for you...
Oct
27
answered getting jQuery UI’s datepicker to always open in a certain direction?
Oct
27
comment getting jQuery UI’s datepicker to always open in a certain direction?
They already have _checkOffset, called from _showDatePicker, for this very purpose...strange... ( jquery-ui.googlecode.com/svn/tags/… ). Have you caught this behaviour in action with Firebug open? Maybe some random error is occurring. (This is why I stopped using jQuery, myself...)
Oct
25
awarded  Nice Question
Oct
23
accepted SQL query to get all values a enum can have
Oct
23
revised How to avoid keyboard layout automatically changing on windows
fixed grammar; edited tags
Oct
23
revised What problems have you solved using artificial neural networks?
fixed grammar
Oct
23
comment SQL query to get all values a enum can have
If you have the same enum in more than one schema, this might need to be narrowed down a bit. If that's the case, see postgresql.org/docs/current/… for details.