Tagged Questions

3
votes
2answers
24 views

Should I worry about “window is not defined” JSLint strict mode error?

This won't pass JSLint in strict mode: "use strict"; (function (w) { w.alert(w); }(window)); The error--from jslint.com--looks like this: Problem at line 4 character 3: 'window' is not defined. …
7
votes
5answers
146 views

php best practices enforcement

I try to ensure that the code I write is of the best quality possible, so I strive to follow accepted sets of best practices. In perl, I try to follow the guidelines in the popular book "Perl Best …
3
votes
5answers
102 views

Why does defined sdf return true in this Perl example?

I tried this example in Perl. Can someone explain why is it true? if (defined sdf) { print "true"; } It prints true. sdf could be any name. In addition, if there is sdf function defined and …
2
votes
2answers
352 views

Is there a good *strict* date parser for Java?

Is there a good, strict date parser for Java? I have access to Joda-Time but I have yet to see this option. I found the "Is there a good date parser for Java" question, and while this is related it …
7
votes
1answer
165 views

Which (javascript) environments support ECMAscript 5 strict mode? (aka “use strict”)

ECMAScript 5 is in its final draft as I write this; It is due to include a strict mode which will prevent you from assigning to the global object, using eval, and other restrictions. (John Resig's …
0
votes
1answer
75 views

Should one use strict comparison in Strings?

I know that for instance, using: if (in_array('...'), array('.', '..', '...') === true) Over: if (in_array('...'), array('.', '..', '...') == true) Can increase performance and avoid some common …
0
votes
2answers
566 views

PHP 5 disable strict standards error

Hello. I need to setup my PHP script at the top to disable error reporting for strict standards. Can anybody help ?
0
votes
4answers
348 views

PHP5: Creating default object from empty value

I'm getting an error in my PHP code Strict Standards: Creating default object from empty value. The code I'm using is: $u = new User(); $user->id = $obj['user_id']; The error is appearing on the …
1
vote
5answers
397 views

css background color disappears with doctype

I'm trying to set background colours on a few different elements in an html page, but whenever I apply a doctype declaration the colours get ignored. Other styles seem unaffected. I'm sure I'm being …
1
vote
4answers
194 views

Help needed with DIV-layout for site

Hi I am trying to build a page with the following in it: Already have the following: one div for page to center the whole page with width 809px inside <div class="page"> is the following: …
0
votes
0answers
127 views

IE strict mode flicker on activex controls

I have a web page containing (amongst other things) several activex controls embedded in it. It's only ever rendered in IE, and it's in strict mode. If I highlight any text in the page (or rollover …
1
vote
1answer
158 views

Summary of ActionScript 3 strict mode

Where can I get a summary of differences between ActionScript 3.0 strict and standard mode? In other words, what are the things I can do in standard mode but not in strict mode?
1
vote
5answers
485 views

How to fix the size of a Java heap

Hello, everyone I know Java VM has "-XMx" and "-XMs" for setting the size of the heap. It also has a feature called "ergonomics", that can intelligently adjust the size of the heap. But, I have a …
11
votes
14answers
670 views

Is it worth the development time to output valid HTML?

Developing websites are time-consuming. To improve productivity, I would code a prototype to show to our clients. I don't worry about making the prototype comform to the standard. Most of the time, …
5
votes
2answers
7k views

How do I break out of a loop in Perl?

Hi, I'm trying to use a break statement in a for loop, but since I'm also using strict subs in my Perl code I'm getting an error saying: Bareword "break" not allowed while "strict subs" in use …