1
vote
3answers
46 views
Is there any limit to the characters we can put in HTML ‘keywords’ meta tag?
So the title says it all I guess...
I was wondering if there was a limit, according to the standards, that we should respect while entering keywords in the <meta name="keywords" /> tag inside …
2
votes
7answers
103 views
What does it mean to a programmer when their organisation is ISO 9001 registered?
When a dev shop (or any other organisation) is registered as ISO 9001 what impact can this have on a programmer's day-to-day experience? Are any special requirements made of a developer? Is an …
0
votes
1answer
28 views
Will O3D take flash’s place on the web?
O3D is a new google tech that enable 3D rendering within a browser (also 2D rendering), and if it is remotely like real 3D applications it is supposed to be capable of playing videos in the future!
…
16
votes
15answers
1k views
Why is `i = ++i + 1` unspecified behavior?
Consider the following C++ Standard ISO/IEC 14882:2003(E) citation (section 5, paragraph 4):
Except where noted, the order of
evaluation of operands of individual
operators and subexpressions …
3
votes
4answers
93 views
Standards for using inner classes for GUI?
Hi, I'm wondering about the standard practice with inner classes (in Java but I suppose it applies to all OO languages).
So I have a JFrame subclass ControllerWindow that contains a JPanel subclass …
0
votes
2answers
39 views
Standard change comments
I am looking for some direction as to a standard format for commenting changes in PHP. Continually while working with an assortment of developers on large scale projects, comments run wild and in most …
1
vote
1answer
92 views
Passing a pointer to a member function as a template argument. Why does this work?
I have some code that 100% works for the use case I have. I'm just wondering if anyone can explain how and why it works.
I have a template class that sits between some code that handles threading …
2
votes
4answers
141 views
How to convert Javascript to C#
I have got some javascript code and I'd like to convert this to C#. I have no idea of the best way to structure this or if there is an easy way to convert the code.
A sample of this code is shown …
0
votes
3answers
55 views
Are there any proposals to amend JSON to officially allow unquoted property names?
The following is technically invalid JSON:
{
color: "blue",
size: 14
}
because the property names "color" and "size" are required by the spec to be quoted, i.e.
{
"color": "blue",
"size": …
4
votes
11answers
142 views
Good articles on usability?
I'm looking to find any articles/books on usability. I'd like to get a handle on best practices when designing a UI, this can be anything from which user controls are more intuitive to a new user, to …
0
votes
4answers
34 views
Vertical alignment of empty inline-block elements
Consider the following html/css:
<style>
span
{
display:inline-block;
width:5em;
height:5em;
padding:1em;
}
</style>
a
<span style="background-color:blue;">b</span>
…
163
votes
44answers
7k views
How do you handle poor quality code from team members?
I know most people have code review and standards in place, but I work at a place with poor standards. I'm not saying that my code is flawless by any means, but I find the code my fellow members …
3
votes
5answers
120 views
Thoughts on Abandoning Proprietary Framework for A Larger Open Source Project
We have been going back and forth a lot around our office lately about abandoning a proprietary framework that was developed here a couple of years ago and move to something that is larger and …
3
votes
3answers
38 views
Focussing on Style Sheets and Cross Browser Compatibility.
Hello everyone,
Let me begin this topic by explaining my background experience with web design. I have always been more of a back end programmer, with PHP and SQL and things. However I do have a …
1
vote
2answers
36 views
What defines the availability of the DOM `document` property in the javascript global object?
I am a bit new to javascript and was trying to understand how the W3C DOM standard and javascript as defined by ECMAscript interoperate.
Specifically, as I understand it:
the ECMAscript standard …
