David Thornley
|
Registered User
|
|
|
6h |
comment |
Block Control+Alt+Delete An unsupervised test is an unsupervized test. You don't even know that it's the actual student on the computer, not to mention other resources and other computers. Not to mention that fiddling with system internals like that is likely to mess up somebody's computer. Got liability insurance for that? This is a Bad Idea. |
|
1d |
comment |
help overloading << and >> to display two values Probably, but this is how you do it no matter what. |
|
1d |
comment |
Does Google’s Go language compute complicated algorithms faster than C++ and C#? Language speed is hardly a well-defined concept. It depends on the implementation, the skill of the programmer, and exactly what you're using it for, among other things. Go (which probably has only one implementation to date) may well be faster than most Java implementations, which doesn't mean the language is faster than Java. There are a lot of C++ implementations, and some may be faster than the current Go implementation and some slower. |
|
1d |
accepted | Need advice on new development system and OS |
|
Nov 25 |
comment |
Dark side of open source projects Good answer. Also, do your best to be a net contributor. Submit patches in the form they want (including doc patches), ready to check in. Follow the project standards. |
|
Nov 25 |
comment |
Dark side of open source projects @Justin: Ah, you've been browsing through Sourceforge projects, haven't you? |
|
Nov 25 |
comment |
Looking for a good book on how to code more efficiently in .net c# Effective C++ is a wonderful book. I'd be afraid that somebody copying the title like that would fail to live up to the original. |
|
Nov 25 |
comment |
What language will protect my source code? Actually, they wouldn't bother decompiling it, since raw hex machine code is much more readable than a few languages I could name. Actually, if you coded that in a language like Intercal, it would be automatically obfuscated. |
|
Nov 25 |
comment |
What language will protect my source code? The difference with my locks is that, if somebody wants to break in, they have to pick my locks (probably not too difficult), and they have to be there. With something like this, it takes one person to figure out what you've done and publish it on the net. Imagine how locks would work if one person, working remotely, could jam every lock in the country so they wouldn't lock. |
|
Nov 25 |
comment |
What is the performance penalty of operator overloading STL Why would you think operator overloading would cause a performance penalty? I'm puzzled by this. Also, the standard questions: Are you sure you have a performance problem? Check your measurements. Where does the profiler say the problem is? What's your baseline performance, and what's your target, and what's your plan for measuring? We don't cotton much to micro-optimizers in these here parts. |
|
Nov 25 |
comment |
Reading text file into an array of lines in C Why does it require two passes? Allocate space for the array, as much as you think you'll need, using malloc(). Start with the buffer. For each '\n', substitute 0, and put the address of the next char into the array. Keep track of the array size; if it's going to overflow, realloc() it. |
|
Nov 25 |
answered | Is it bad practice to change state inside of an if statement? |
|
Nov 25 |
comment |
Is it bad practice to change state inside of an if statement? Why not multiple return statements, and why have an unnecessary variable? |
|
Nov 25 |
answered | converting natural language to haiku? |
|
Nov 25 |
comment |
What’s the worst security hole you’ve ever seen? Tell you what. If you can get onto my account at home, you can get to my Firefox files, and then you can get all my non-critical passwords. I think that's safe enough. |
|
Nov 25 |
comment |
What’s the worst security hole you’ve ever seen? Of course, this means that you've maliciously done something to get them to send merchandise to you fraudulently if you actually do this, and told "them" your address. |
|
Nov 25 |
comment |
Are there resources about logistics? And neither "transport scheduling" nor "logistics" are programming topics. There are doubtless interesting programming problems in it, but to be relevant here you'd have to find one and ask it specifically. |
|
Nov 25 |
comment |
What is the best variable/function name you have ever encountered? You know, you have edited this so that most of it belongs on MetaStackOverflow if anywhere. |
|
Nov 25 |
comment |
Looking for some refactoring advice Right, forgot this was an array - and std::string would probably be better. |
|
Nov 25 |
comment |
C++ short-circuiting of booleans @Ed: Tests are not a substitute for standards and documentation. |
|
Nov 25 |
comment |
How to avoid press enter with any getchar() However, output is part of the problem. The questioner wants to have the program read keys as they are pressed and print immediately on the screen. That's both an input and an output issue. |
|
Nov 25 |
comment |
Implicit type conversions in expressions int to double I'd use 0.0, just to stay in the habit, although it really doesn't matter in that case. |
|
Nov 25 |
answered | Can coordinates of constructable points be represented exactly? |
|
Nov 25 |
answered | Looking for some refactoring advice |
|
Nov 25 |
answered | c++ vector of class object pointers |
|
Nov 25 |
answered | C++ message passing doubts |
|
Nov 25 |
comment |
Are there any open-source military/war strategy simulating engines/frameworks? What's the purpose? Are you writing a game? I'd think the number of people who have use for the real thing is kinda limited. Bear in mind that simulations where actual weapons matter are of limited accuracy, as people matter more than stuff, and the limitations of people are more important than limitations of stuff. |
|
Nov 25 |
answered | How to avoid press enter with any getchar() |
|
Nov 25 |
comment |
What is your single favorite development tool? The question is whether they're better than vim/g++/gdb/gprof. VS 2008 is very nice for C# development, a lot clunkier for C++. |
|
Nov 25 |
comment |
What is your single favorite development tool? Would the vending machine that dispenses cans of caffeinated beverage for a small fee count here? |
|
Nov 25 |
comment |
Programming languages that compile to native code and have the batteries included Speaking as a Common Lisp fan, while most serious implementations do compile to native code, the libraries were somewhat lacking last I saw. |
|
Nov 25 |
comment |
Compile issues based on different platforms @jalf: We know he neglected to tell us already. |
|
Nov 25 |
answered | Compile issues based on different platforms |
|
Nov 25 |
comment |
Compile issues based on different platforms And what is this "different platform"? It looks to me like it might come from .NET, which is on the PC. Which compilers are you using? Do you get that message on compilation or (which looks more likely) on running? |
|
Nov 25 |
answered | How to write an enumeration of all computable functions? |
|
Nov 25 |
comment |
Simple reduction (NP completeness) Unfortunately, I don't have my copy of Garey and Johnson here, and don't remember what some of those problems are. If you'd edit your question to give quick definitions, it might help people find them. (Example: 3-SAT: Given a set of boolean variables, and a set of clauses that OR together three variables, some of which may be negated, can you assign truth values to the variables such that all the clauses are true?) |
|
Nov 25 |
comment |
Simple reduction (NP completeness) Thing is, what Garey and Johnson is really useful for in this is a massive compendium of NP-complete problems. Frequently your problem will be in there (I'd assume the professor would have checked this), and otherwise it's a great source of problems to try to reduce to what you've got. In this case, the student gets five problems to choose from, which is already a lot easier to handle than the hundreds (literally) in G&J. |
|
Nov 24 |
comment |
Strange C++ errors with code that has min()/max() calls. Which, frankly, is asking for trouble. In C++, use using std::swap and write your own swap when you can do better than the default. In C, at the very lease write #define min(a,b) ((a) < (b) ? (a) : (b)) and MAKE SURE YOU DON'T CALL IT WITH ANYTHING WITH SIDE EFFECTS, because you will have multiple evaluation. |
|
Nov 24 |
comment |
What is a programming language? @RCIX: I didn't think we had strict Platonists on SO. Personally, I'm more of a descriptive linguist, rather than prescriptive, and something of a fan of Wittgenstein's ideas of definitions. So, no, I don't think there's a single right answer. |
|
Nov 24 |
comment |
What is a programming language? @itsaboutcode: Why are you trying to define a concept in terms of what computers we're currently using? If somebody builds an experimental optical computer, and implements Forth on it, is Forth suddenly not a programming language? Heck, if we in general switch to some other basis for computing, will we not have programming languages any more? I think you're confusing concepts with implementations. |
|
Nov 23 |
accepted | C++ passing const string references in methods? |
|
Nov 23 |
answered | C++ passing const string references in methods? |
|
Nov 23 |
answered | STL iterator as return value. |
|
Nov 23 |
answered | Why should one bother with preprocessor directives? |
|
Nov 23 |
answered | How to unit test the sorting of a std::vector |
|
Nov 20 |
answered | Why doesn’t C++ reimplement C standard functions with C++ elements/style? |
|
Nov 20 |
answered | Paying great programmers more than average programmers |
|
Nov 19 |
answered | What is the most complicated, complex block of code you’ve ever written for a legitimate purpose in a real project (up to 20 lines)? |
|
Nov 19 |
answered | array reallocation C++ |
|
Nov 19 |
answered | What is the most spectacular way to shoot yourself in the foot with C++? |
