Tagged Questions

1
vote
2answers
29 views

Browser behavior on 403 Forbidden error

My server returns a 403 forbidden error when a user tries to access a resource that they do not have access to. Along with the header the server also writes a small message describ …
2
votes
5answers
137 views
+250

What are the boundaries or scope definitions of HTML5 development?

From reading the mailing lists and looking at the specification I cannot tell what the limits of HTML5 are as a software or programmatic technology. I have seen where they have at …
2
votes
1answer
26 views

Is ISO 9241 (Ergonomics of Human System Interaction) relevant in the industry?

Are standards like ISO 9241 "Ergonomics of Human System Interaction" of any relevance in the industry? Are there examples of certified software products? And would you do a certifi …
1
vote
4answers
191 views

Is this valid C++?

struct SomeStruct { int a; int b; }; SomeStruct someFn( int init ) { SomeStruct ret = { init, init }; //... return ret; } void someFn2( SomeStruct* pStruct ) { // .. …
162
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 …
4
votes
2answers
154 views

HTML 5 - Sneaky stuff

HTML 5 is the new W3C definition for HTML and will likely represent the direction the internet goes as people find the next killer apps that work in it. There are the much publici …
5
votes
4answers
309 views

Do pointers to string literals remain valid after a function returns?

Is the pointer returned by the following function valid? const char * bool2str( bool flg ) { return flg ? "Yes" : "No"; } It works well in Visual C++ and g++. What does C++ …
2
votes
6answers
160 views

Visual C++ standards compliance

Hey, I was wondering if, and to what degree, does Microsoft's Visual C++ compiler conform to the current C (C90/C99) and C++ (ISO/IEC 14882:2003) standards. Unfortunately I'm only …
2
votes
4answers
64 views

Windows Standard File Locations

Could somebody point me to a document which lists all the standard file locations in windows and what one should and shouldn't use them for. Something like User Application Data …
3
votes
6answers
152 views

What is the point of `void func() throw(type)` ?

I know this is a valid c++ program. What is the point of the throw in the function declarement? AFAIK it does nothing and isnt used for anything. #include <exception> void f …
0
votes
2answers
41 views

Is there a way to store and manipulate a span of time that takes month lengths, leap years, etc. into account?

I was just about to write this myself, but I know this has to exist and I'm just managing to avoid all the Google keywords that would lead me right to it. I would be looking for s …
3
votes
2answers
172 views

Rules to Develop a Delphi Windows 7 App

Where can I find the best set of rules to follow for developing a Delphi application for Windows 7?
0
votes
1answer
21 views

Should a colon character be escaped in TEXT values in iCalendar (rfc2445)?

My understanding from reading the specification (http://www.ietf.org/rfc/rfc2445.txt) is that the ":" character should not be escaped in text values like DESCRIPTION. From the RFC …
3
votes
4answers
109 views

how can I write an ANSI C console screen buffer?

I'm working on making an ASCII based game, and everywhere I look people are saying to use Console.Write() from MSDN, which is dandy and all if you're using Windows, but I'm not. A …
3
votes
3answers
154 views

Potential problem with C standard malloc’ing chars.

When answering a comment to another answer of mine here, I found what I think may be a hole in the C standard (c1x, I haven't checked the earlier ones and yes, I know it's incredib …

1 2 3 4 5 15 next
15 30 50 per page