Roger Pate
|
Registered User
|
[E387] No connect permission.
All original code samples I post on stackoverflow.com are dedicated to the public domain. If it breaks, you get to keep both pieces. |
|
10h |
comment |
Pros. / Cons. of Immutability vs. Mutability How is the last point on map/reduce/filter a pro for immutability? Seems that's just as true with mutable objects as immutable. |
|
10h |
answered | XArgs command on cygwin is mangling file paths |
|
11h |
comment |
why unsigned int 0xFFFFFFFF is equal to int -1? Mark: "Unsigned integers shall obey the laws of arithmetic modulo 2**n where n is the number of bits in the value representation of that particular size of integer." [3.9.1/4, C++03] |
|
11h |
comment |
How is each byte in an integer stored in CPU / memory? Otto: this is perfectly fine, as int is a POD type and that means you can memcpy into a char array. As to proper.. that's subjective. |
|
11h |
comment |
C++ creating image I can use a char image[width][height][bytes]; and know EXACTLY what's going on. Depending on "they will be optimized out anyway" seems to be the only black box here. And it's NOT easier to see what's going on, as it appears 'x' is dominant over 'y' (including in your initialization), but what you actually do is more like image[height][width][bytes]! This can lead to subtle errors. |
|
11h |
comment |
C++ creating image You also got the math wrong for the indices. |
|
11h |
comment |
C++ creating image When the sizes are known at compile-time, why do all this, which the compiler does for you automatically? |
|
12h |
answered | regex negation question |
|
1d |
accepted | Send selected text to a command line argument |
|
1d |
comment |
Send selected text to a command line argument Peter: if it's completely wrong, delete it. If it might be useful to someone, but doesn't answer this question: that's up to you, but should at least leave an explanation with it, if you don't delete. |
|
1d |
answered | Send selected text to a command line argument |
|
1d |
accepted | Jump Table Switch Case question |
|
1d |
awarded | ● Mortarboard |
|
2d |
comment |
Java: how to create a template class ? ShaChris23: the prevalent idiom in the C++ stdlib is to use duck typing: "if all the attempted uses work with the object, it has the interface expected" (std::reverse_iterator being a good, clear example), and this is similar to Python and [my understanding of] Go. It is still sometimes useful to make those restrictions yourself (or at least people ask for it :P), and you can use boost::enable_if, static asserts (with type traits to detect inheritance in this case), and similar for that. Concepts were supposed to help address this, but that's another story. |
|
2d |
revised |
Copy constructor for a binary tree C++ deleted 17 characters in body |
|
Dec 5 |
comment |
Is it possible to tell the branch predictor how likely it is to follow the branch? The full quote: "We should forget about small efficiencies, say about 97% of the time: premature optimization is the root of all evil. Yet we should not pass up our opportunities in that critical 3%. A good programmer will not be lulled into complacency by such reasoning, he will be wise to look carefully at the critical code; but only after that code has been identified." (emphasis mine) |
|
Dec 5 |
revised |
USB How do you create a bootable custom USB application? clean up; retag |
|
Dec 5 |
comment |
Random bytes with fread Two comments: isn't TCHAR the standard char/wchar_t switch on windows? (also: typedef std::basic_string<TCHAR> tstring;), and when you define a char array from a string literal, let the literal determine the size (TCHAR const fname[] = _T("f:/deleteme.bin");). msdn.microsoft.com/en-us/library/… |
|
Dec 5 |
comment |
What is the best HTML, CSS and JS reference you know, respectively? The csszengarden is a nice demonstration, but it makes a poor reference and is controversial wrt accessibility, semantic markup, and other issues; check out their FAQ. (It is still a nice demonstration for visual appeal though. :) |
|
Dec 5 |
comment |
Conditional compilation Note that modifying CXXFLAGS is how you pass options to the C++ compiler in make. |
|
Dec 5 |
revised |
Conditional compilation deleted 10 characters in body; edited tags |
|
Dec 4 |
comment |
C++ - Arguments for Exceptions over Return Codes The way you opened up the question in the last sentence seems, to me, that this would be better as a CW or should be closed as 'subjective and argumentative' (though I also like the discussion myself). |
|
Dec 4 |
comment |
C++ - Arguments for Exceptions over Return Codes Is it good SO etiquette to link to an applicable answer on a non-duplicate question? stackoverflow.com/questions/1744070/… |
|
Dec 4 |
comment |
Unix C++ simple server question: sending data back to browser Have you read Beej's Guide to Network Programming? beej.us/guide/bgnet |
|
Dec 4 |
accepted | initialize a C string with multiple quoted strings |
|
Dec 4 |
comment |
is it reasonable to protect drm’d content client side It's almost inevitable that some users will notice it, but also a trade-off you must make on a per-project basis. |
|
Dec 4 |
revised |
Regular expression to replace with XML node formatting |
|
Dec 3 |
comment |
std::list threading push_back, front, pop_front volatile is not a replacement for memory barriers and will not work when a real memory barrier is required. |
|
Dec 3 |
comment |
How to create a file in a different directory in C++? It is reliable, the issue is that fstream defaults to in|out (which will not create the file), while ofstream defaults to just out (which will create the file). |
|
Dec 3 |
comment |
How to create a file in a different directory in C++? Because in|out doesn't create the file if it doesn't exist. in|out|trunc, out|trunc, out|app, and out values for openmode will create it. |
|
Dec 3 |
comment |
How to create a file in a different directory in C++? Use tmpnam, tmpfile, or similar for temporary files. |
|
Dec 3 |
comment |
Is there a C++/win32 library function to convert a file path to a file:// URL? Did you mean urllib.pathname2url? Worst case is it doesn't look hard to translate that code: svn.python.org/view/python/… |
|
Dec 3 |
comment |
Is there a C++/win32 library function to convert a file path to a file:// URL? If you're not thinking about edge-cases you're not doing it right, and there are some for this question, though not too many. |
|
Dec 3 |
revised |
Regular expression to remove one parameter from query string fix test code |
|
Dec 3 |
revised |
Regular expression to remove one parameter from query string added 1061 characters in body; deleted 35 characters in body |
|
Dec 3 |
comment |
Regular expression to remove one parameter from query string Yes, I know, that's why I said my approach fails. :) |
|
Dec 3 |
accepted | Instantiating classes by name with factory pattern |
|
Dec 3 |
comment |
Translating python dictionary to C++d[*it] should be it->second |
|
Dec 3 |
comment |
Translating python dictionary to C++ You cannot use typename when the type is not a dependent name. |
|
Dec 3 |
revised |
Regular expression to remove one parameter from query string include test |
|
Dec 3 |
answered | fopen two processes |
|
Dec 3 |
revised |
Regular expression to remove one parameter from query string fix to be used in a replacement; remove second grouping since he didn't say to save the value |
|
Dec 3 |
comment |
Regular expression to remove one parameter from query string Additional edge cases: oopsfoo=123, foo, foo=---all being the only, first, last, and middle parameter. (so 12 total here) |
|
Dec 3 |
comment |
Regular expression to remove one parameter from query string Why is both not valid? Input: ?blah&foo=abc&blah |
|
Dec 3 |
comment |
15 Puzzle Solver A debugger doesn't remove bugs (ironically), it helps you find out why they occur, then you modify the logic so they don't. |
|
Dec 3 |
answered | Regular expression to remove one parameter from query string |
|
Dec 3 |
comment |
15 Puzzle Solver I'm sorry, but "find the bug, it's somewhere in these 300 lines, good luck!" isn't a real question. Try breaking it down into smaller pieces, write unit tests for each function, and then if you have specific questions, feel free to ask them. |
|
Dec 3 |
revised |
Force index use in Oracle deleted 99 characters in body; edited title; edited title |
|
Dec 3 |
comment |
Tab versus space indentation in C# At least 3 works as a compromise because no side "wins" and everyone is in the same boat---may sound silly, but it's good for morale on an issue that really, truly isn't significant. That said, have you looked at elastic tabstops? |
|
Dec 3 |
answered | Jump Table Switch Case question |
