Peter Stuifzand

1,865
Reputation
143 views

Registered User

Name Peter Stuifzand
Member for 1 year
Seen 18 mins ago
Website
Location Netherlands
Age 26
Programmer from the Netherlands. Working at Stuifzand Software, creating web applications using Perl.
3m
answered String.comparison performance (with trim)
9m
answered gdb works from command line, but not from script
20h
awarded  Mortarboard
Dec
4
answered RegEx to remove commented portion of code/lines/Tags in HTML or XHTML page
Dec
4
answered How to stop Apache from listing the contents of my user directories
Dec
3
answered Not your usual MySQL4 + ODBC connection issue…
Dec
3
comment How do I align a label and a textarea?
The biggest reason that I use <p> is that it without styling already shows the way I want it. With <li> (and other) I need to have extra styling.
Dec
3
answered Handling of server-side HTTP 4nn/5nn errors in jQuery’s ajax requests
Dec
3
comment How do I align a label and a textarea?
I use the following html for parts of a form: <p><label>Description:<br><textarea></textarea></label></p>. This way, when you click the label element it will focus the textarea element. It's not optimal yet, but I'm getting some nice results with this.
Dec
3
comment Time of day script
I think the strtotime monday is the monday of this week, not the next monday.
Dec
3
answered Time of day script
Dec
3
answered StyleCop for other languages
Dec
3
comment How do I align a label and a textarea?
You should write stuff like that in your question.
Dec
3
answered How do I align a label and a textarea?
Dec
3
comment How do I align a label and a textarea?
Do you want the Description label in the middle?
Dec
2
comment How to prevent users from resizing the font on my web site?
What is the problem that you want to do that?
Dec
1
awarded  Peer Pressure
Dec
1
answered Inserting Chinese Meta Tags
Dec
1
revised Get url from html code using Regex
Added small Perl program
Dec
1
comment Get url from html code using Regex
Can you show an example of how this works?
Nov
30
comment Get url from html code using Regex
Correct, there are many pitfalls when using information from the web. On the other hand if I need to find the urls from one webpage on which I can see all possible problems (or find out by testing) I will use this regex (or variant) before using heavier tools. Still, this all depends on the situation and this looks like a Get it Done situation.
Nov
30
accepted Is using __PACKAGE__ inside my methods bad for inheritance?
Nov
30
revised Get url from html code using Regex
bug
Nov
30
comment Is using __PACKAGE__ inside my methods bad for inheritance?
If __PACKAGE__ is what you need, you should use that. It could be a problem and you should check if you get the results you expect.
Nov
30
answered What design pattern would you consider is most important to use?
Nov
30
answered Is using __PACKAGE__ inside my methods bad for inheritance?
Nov
30
revised Get url from html code using Regex
corrected spelling
Nov
30
comment MySQL database structure: more columns or more rows?
Instead of using a tag, he can create a new dictionary table (id, name) and use the id in the table. Takes less memory and is faster to check and join on.
Nov
30
comment Use of parameters for mysql_query
Never, ever, uses magic quotes. Code that relies on magic quotes is broken by default.
Nov
30
comment Use of parameters for mysql_query
Prepared statements are the best way in my opinion, because they don't mix data and SQL.
Nov
30
comment PHP File Upload, files disappearing from /tmp before move_uploaded_files
Not sure, I haven't test this. But from experience, everytime I forget enctype="mult...", I don't have any files. Checking this is easy. Use Live HTTP headers or similar and see if the file is sent.
Nov
30
answered Get url from html code using Regex
Nov
30
answered Get url from html code using Regex
Nov
30
answered PHP File Upload, files disappearing from /tmp before move_uploaded_files
Nov
30
comment PHP File Upload, files disappearing from /tmp before move_uploaded_files
Please post your HTML form. I think the problem is in your HTML.
Nov
30
comment php M or F (male or female)
You used the ternary operator in the wrong way. Don't use assignment in the second or third expression. As this will create many subtle bugs. Use something like $sex = .... ? $_POST['sex'] : false.
Nov
30
comment php M or F (male or female)
You should never check for == FALSE or == TRUE. The if in PHP knows how to check for true-ness. The problem is that there are many true values and just a few false ones. For example: "hello world" is also a true values in PHP, but 0 is not.
Nov
30
answered Vim Spell options
Nov
30
comment PHP - Remove part of string from another string
Sorry for being an ass, but the whole question reeks of bad design decisions that will become only worse and worse when time goes on. Also his six lines of code contain at least two bugs.
Nov
30
answered PHP - Remove part of string from another string
Nov
30
comment PHP - Remove part of string from another string
How does this work when the OP wants to use another function?
Nov
30
comment Question about a php switch
How does 1 correnspond to lemondew? I don't see it. What are you trying to do?
Nov
30
revised C++ dynamic allocated array
update
Nov
26
accepted C++ dynamic allocated array
Nov
25
comment Does number span exists in database
Is the from always equal to the previous to + 1?
Nov
25
revised C++ dynamic allocated array
Found another problem
Nov
25
answered C++ dynamic allocated array
Nov
25
answered SQL logic: two tables (group by?)
Nov
25
answered Best way to check if a character array is empty
Nov
25
comment C++, an “impossible” behavior
Yes, I saw that __tls bit in the assembler code, too. That could be the problem.