jalf
|
Registered User
|
|
10h |
awarded | ● Nice Answer |
|
11h |
comment |
best distributed version control for a small group project on windows? Git's Windows support is kinda sketchy though, isn't it? Bazaar and Mercurial have more focus on Windows support as far as I know. (And neither VSS or TFS are distributed, which is what the OP asked for) |
|
13h |
comment |
Does it make sense to implement iterators for containers which has no obvious end - e.g. trees? @Eclipse: More than that, the STL, according to its designer, was originally intended to support many more iterator types: As in this case, preorder, inorder and postorder iterators for tree structures (such as std::map), and row/column iterators for matrices and many others. The only reason the C++ standard library generally only has one type of iterators per container (not counting reverse iterators) is simply time pressure and the added work it'd have meant for the standardization committee. But yes, defining multiple iterator types is fine according to the philosophy behind the STL. |
|
13h |
comment |
C++ Array vs vector Yes. Checked iterators do not affect the time taken for heap allocations, which was what your post claimed. Of course other aspects of std::vector cause the slowdown in a debug build, but it is certainly not the single call to new. |
|
14h |
accepted | Two static libs, two different vector implementations, what would the linker do? |
|
14h |
comment |
Why should a .NET struct be less than 16 bytes? One probably answer for the precise number is that a 16-byte structure is still small enough to fit on the CPU's memory bus, or to be copied as part of a SIMD instruction. Larger structures become more complex to copy around or read/write. |
|
15h |
answered | Two static libs, two different vector implementations, what would the linker do? |
|
16h |
comment |
Wide to narrow characters But it does nothing more than invoke the implicit conversion from wchar_t to char, which is basically an assignment of the integer value. It only works for the characters that exist in both encodings, and have the same representation in both. |
|
19h |
awarded | ● Good Question |
|
20h |
comment |
Is there better way to write do-while(0) construct to avoid compiler warnings? Yeah, it is widely used, but it's only really necessary in a few border cases that I tend to avoid anyway. In sane code, regular braces as shown here will usually suffice |
|
21h |
comment |
What could this curious combination of “while” and “delete” mean? That is beautiful! :p I'm going to write all my destructors like that from now on. |
|
21h |
comment |
Is there any method for multipling matrices having O(n) complexity? Please try to use proper english to make it easy for others to understand you. "Why", not "y", "are", not "r", "you", not "u". Are you really so lazy that those two extra characters per word cause you physical pain? |
|
21h |
comment |
Wide to narrow characters That depends on what kind of conversion you'd like to do. It's obvious that characters that exist in ASCII can be narrowed down easily, but what about characters that don't exist in the character set used by char? Or which have different encodings? Do you care about those? Basically, do you want correct conversion, or just something that works for english characters? |
|
21h |
comment |
C++ Array vs vector How is this compiled? Are optimizations enabled? And which compiler are you using? |
|
21h |
comment |
C++ Array vs vector I highly doubt it takes 700ms to perform a single heap allocations. |
|
1d |
comment |
C/C++ IDEs that come with/without the compiler dev-cpp is an abomination and is only useful if you think bugs and missing features are a major selling point. |
|
1d |
comment |
Is it good practice to NULL a pointer after deleting it? What do you mean by "your own wrapper"? Why shouldn't you use RAII for that wrapper? It is a band-aid in that it fixes errors that only occur because you didn't fix the underlying problem (that the variable is still in scope) |
|
1d |
accepted | Boost Test Fixture object clearing between tests. |
|
1d |
answered | Boost Test Fixture object clearing between tests. |
|
1d |
comment |
C++: shallow/deep copy of std::map Assigning one std::map to another does copy all member elements. That's not a shallow copy. |
|
1d |
comment |
C++: shallow/deep copy of std::map It's not so much an anti-pattern as it's simply not meaningful. Each class defines one way in which it can be copied. The copy constructor and assignment operator of a class define whether the members of the class are copied. It's not like Java where x = y performs a shallow (reference) copy. In C++, it invokes the assignment operator, which copies the object itself. (Unless x and y are pointers) |
|
1d |
comment |
Coming from C to C++ Why? The CW-Mafia really needs to get a grip on reality one of these days. If a question is CW'ed, it means that no one who answers get any rep for their efforts. That makes sense for joke threads where an answer says nothing about the author's programming skills or contributions to SO. But in this question, why shouldn't a good answer be rewarded? CW makes sense when answers have no value. Even if a question is open-ended, like this one, answers can still be good or bad, and deserve to be repped up or down. |
|
2d |
awarded | ● Popular Question |
|
2d |
comment |
What is a good example to show to a non-programmer to explain what programming “looks like”? I'm not trying to motivate an intro programmer though. I'm trying to give a non-programmer a mental image of what programming is and nothing else. ;) |
|
2d |
revised |
What is a good example to show to a non-programmer to explain what programming “looks like”? added 62 characters in body |
|
2d |
comment |
What is a good example to show to a non-programmer to explain what programming “looks like”? Haha, if she does that, she can take over debugging of the race condition I've been chasing for the last week... That'll teach her! ;) |
|
2d |
comment |
What is a good example to show to a non-programmer to explain what programming “looks like”? @Breton, ThePosey, I think you're reading too much into this. Check my edit. I don't want to turn her into a programmer or anything. But when I tell her I've spent all day programming, she obviously wants some kind of mental image of what that means. Have I been staring at green numbers and letters scrolling past Matrix-style all day? Is it just black magic? Or is it something that ordinary people could learn if they wanted to? |
|
2d |
comment |
What is a good example to show to a non-programmer to explain what programming “looks like”? Yeah, I'd say insertion sort is a more normal human algorithm (although as Neil pointed out, we can usually look at larger batches than 2 cards at a time to find the largest card. But once we have the largest one, we usually do something like insertion sort.) |
|
2d |
comment |
What is a good example to show to a non-programmer to explain what programming “looks like”? Yeah, that might actually be the best approach. Just let her take a look at some of the actual code I'm currently working with |
|
2d |
revised |
What is a good example to show to a non-programmer to explain what programming “looks like”? added 645 characters in body |
|
2d |
comment |
What is a good example to show to a non-programmer to explain what programming “looks like”? In many cases I'd agree, but in this case, I think it's the geeky stuff that's most relevant. Her question was not "how do you write a program", but simply "what does it look like? Are you just staring at a screen full of numbers?" I think the best answer is to show some actual code, show that there's actual meaning and structure hidden in it. What it actually means is less relevant. It doesn't matter if she can read the code, but if she can recognize that it's made up of a few english words (if, while), and small mathematical expressions (x = y+z) gives a basic frame of reference. |
|
2d |
revised |
What is a good example to show to a non-programmer to explain what programming “looks like”? added 1426 characters in body |
|
2d |
awarded | ● Nice Question |
|
2d |
comment |
What is a good example to show to a non-programmer to explain what programming “looks like”? Yeah but what I want is really to give her an idea of what it means when I say I'm programming. What am I looking at, if not just tables of raw numbers or 1's and 0's? |
|
2d |
comment |
What is a good example to show to a non-programmer to explain what programming “looks like”? But is this representative of real-world source code? Where are the helper functions? Where's the notion of writing different bits of code that work together to produce the desired result? Quicksort feels more like a party trick, a way to impress a beginning programmer with how recursion can solve all your problems. |
|
2d |
comment |
What is a good example to show to a non-programmer to explain what programming “looks like”? It's not really about "impressing" though, but just about giving them an idea of what code "looks like". Something that basically goes "call library A. Pass result to library B" probably isn't ideal. |
|
2d |
asked | What is a good example to show to a non-programmer to explain what programming “looks like”? |
|
2d |
awarded | ● Strunk & White |
|
2d |
revised |
One more time: LNK2005 (now ok) and LNK2019 (ok) added 8 characters in body |
|
2d |
revised |
no std namespace added 12 characters in body |
|
2d |
comment |
no std namespace There is no "answer above". The answers are shown ordered by rep. If people upvote your answer, it is placed at the top, and then your answer suddenly makes no sense. Refer to other answers by name instead. |
|
2d |
comment |
Python, Threads, the GIL, and C++ It's hardly as brief as possible. I just removed four paragraph of content-less filler text. When writing long, complicated questions, try to stick to the point. No jokes or cute little asides or anything else that might distract. And give us the question early, rather than making us read half a novel before we even get an idea of what you're asking. Question first, then fill in all the details. Make it easy for us to answer, or at least to know if we're going to be able to answer. |
|
2d |
revised |
Python, Threads, the GIL, and C++ Removed filler text |
|
2d |
comment |
getopt for Visual Studio CRT? For those who are not familiar with it (but do know the MSVC++ CRT), it may be helpful to explain what the function does. Can be hard to say if there's an equivalent otherwise. :) |
|
2d |
comment |
When to use inline funtion and when not to use it ? Yes, but the point is that it is not "a slight indication", but rather a way to get your code to compile and link successfully where it would otherwise result in an error. That is the purpose of the inline keyword. |
|
2d |
comment |
Boost Libraries Support for MS VC++ 10.0 What is the actual question? It should simply work. What exactly do you need to know? (And by the way, thee is no VC++ 2010 Express yet. There is a 2008 Express, and a VS2010 Beta (which is not the Express edition) |
|
2d |
revised |
Boost Libraries Support for MS VC++ 10.0 edited body; edited title |
|
Dec 19 |
answered | C++/CLI: why should I use it? |
|
Dec 19 |
revised |
C++ Vector vs Array (Time) added 4 characters in body |
|
Dec 18 |
awarded | ● Nice Answer |
