bart

1,296
Reputation
69 views

Registered User

Name bart
Member for 1 year
Seen 2 days ago
Website
Location BE
Age
Nov
9
answered Employer wants any non-technical staff to be able to modify content - easy solution?
Nov
5
comment Is SQL injection a risk today?
magic quotes "fix" the input to be Mysql compatible. It doesn't work on other databases... and if you directly use input data instead of going through the database, you'll suddenly start seeing extra mysterious backslashes...
Oct
28
comment Why doesn’t my CGI script’s “die” message display in the browser?
Try using use CGI::Carp qw(fatalsToBrowser); if only for testing purposes
Oct
4
comment if given a 15 digit number whats the best way to find the next palindrome?
Oh, I forgot: in the last case, flip the incremented first part and use that as the new last part.
Oct
4
comment if given a 15 digit number whats the best way to find the next palindrome?
There are so many bugs that I doubt your algorithm is even useful. 1. Flip the first part, and use as last part. If the result is larger than the original number, you're don. 2. If it's smaller, increment the middle part. 3. If the middle part was 9 (now 10), make it 0 and increment first part.
Sep
22
awarded  Yearling
Aug
23
answered How can I remove a file based on its creation date time in Perl?
Aug
10
comment How can I join two hashes in Perl without using a loop?
I expect this to be more efficient than the other reply, because that one recreates the hash also for the already existing items, while this one just adds keys for the new items. If there were many items in %a, compared to %b, the difference can be respectable.
Aug
7
revised How can I speed up a MySQL query with a large offset in the LIMIT clause?
added conclusion paragraph; added 1 characters in body
Aug
7
answered How can I speed up a MySQL query with a large offset in the LIMIT clause?
Aug
5
answered Is there a Perl module that works similarly to the Unix “which” command?
Aug
4
comment Is Markdown (with strip_tags) sufficient to stop XSS attacks?
"More safety"? Duh??
Aug
4
awarded  Civic Duty
Jul
25
comment Would you program better if programming languages were in your native language?
Why is this downvoted? It's an excellent example of why mixing up programming with natural language is a bad idea. The fact that you can do it simpler even in COBOL doesn't change that. A programming language should be very simple at the core, and not verbose, like this.
Jul
25
comment Would you program better if programming languages were in your native language?
Agreed with the OP, Dutch is far too complex to program in. English has the superficially simple syntax to make programming in it, work.
Jul
22
comment is Ruby here to stay?
As Ruby is already 13-14 years old, I don't think you need to worry about Ruby itself.
Jul
22
comment How do I merge/join mp3 files with c#
No problem if your audio player can handle VBR files, because that's exactly how VBR works.
Jul
21
accepted How do I merge/join mp3 files with c#
Jul
21
answered How do I merge/join mp3 files with c#
Jun
29
comment Why isn’t the ‘D’ language picking up?
I'm reading it differently: if you find that D steps on any IP rights, please tell Digital Mars. Well, "please"... You must tell Digital Mars.
Jun
29
comment Why isn’t the ‘D’ language picking up?
The current controversy of C#/Mono on Linux is a clear indicator of why one would prefer D over C#, and that is not even considering language features.
Jun
24
comment DLL as `src` of `<script>`
I wonder if the Javascript code is static (I guess, as there are no parameters), and if so, why they bother to dynamically generate it; or, at least: appear to do so.
Jun
14
answered Is there a PHP function to call all variables from a form?