Eduardo León
|
Registered User
|
My favorite language is, by far, C++. However, I don't like STL or Boost very much. I'm not sure, but I think I have written more inline assembly than code that uses the STL. Perhaps I'm just a C programmer using fancy structs.
I have been writing MFC programs for quite a long time (some 5 years). I have also written programs that call the raw Win32 API, but I don't think it's useful to do that unless you want to draw a window with the shape of a dancing amoeba. I'm the only young programmer in the world who doesn't like Web development. Other people are doing wonderful things with AJAX, but I don't care. |
|
1d |
asked | Logic programming online resources |
|
Nov 4 |
comment |
Which common features of desktop applications do most web applications miss? I prefer to control my pixels directly. |
|
Nov 1 |
comment |
How do I convince a peer that algorithms are important? I know what duct tape programming is. I'm not really into it. |
|
Oct 31 |
comment |
How do I convince a peer that algorithms are important? I explicitly said that doSomething() does NOT modify the state of the program. |
|
Oct 31 |
comment |
How do I convince a peer that algorithms are important? Oh, well... In this case, I better use whatever algorithm comes to my mind first. I write PeopleCode, and there's a component in PeopleSoft's architecture that handles JavaScript, CSS, etc. |
|
Oct 31 |
comment |
How do I convince a peer that algorithms are important? I once wrote a discrete simulation engine when I was in college, and some of the code is actually very contrived. A month ago I found a bug in one of the most contrived parts, and I corrected it without any problems. Of course, that was because the source had enough comments to be understood. |
|
Oct 31 |
comment |
How do I convince a peer that algorithms are important? What I do is the following: First I come up with an inefficient version of the program, then I move as many comparisons or inner loops as I can out of the main loops. |
|
Oct 31 |
comment |
How do I convince a peer that algorithms are important? I'm myself not that into duck tape programming. |
|
Oct 31 |
comment |
How do I convince a peer that algorithms are important? Thank you! I got the comparisons wrong! |
|
Oct 31 |
revised |
How do I convince a peer that algorithms are important? added 58 characters in body; added 5 characters in body |
|
Oct 31 |
comment |
Why is there a class keyword in C++? +1 for explaining it better than I could have. |
|
Oct 31 |
comment |
2nd or 3rd Person Comments +1 for general awesomeness! |
|
Oct 31 |
comment |
2nd or 3rd Person Comments Sorry, but this deserves to be community wiki. |
|
Oct 31 |
asked | How do I convince a peer that algorithms are important? |
|
Oct 31 |
comment |
C++ MFC vs .NET? Indeed, MFC wasn't though for today. Back then, we couldn't afford downloading such a massive framework as .NET in every computer. We couldn't afford managed environments either. Java was the proof. Now, everything has changed. The main advantages of MFC have disappeared and while the main disadvantages remain. Having this in mind, .NET is the future. |
|
Oct 31 |
comment |
C++ MFC vs .NET? I don't understand why the downvotes. Myself, I upvoted this. This is actually a good answer in the sense that it shows something that other answers didn't focus on: the main limitations of both frameworks. |
|
Oct 29 |
comment |
Why does derivative trading position always require C++ knowledge? I wish I hadn't been a teenager in the 90s. |
|
Oct 28 |
comment |
C++ MFC vs .NET? The runtime advantage of MFC compared to .NET is not that great. If you want speed, you should use raw C, no frameworks involved other than Win32 itself. And you can call it from .NET using P/Invoke. |
|
Oct 28 |
comment |
C++ MFC vs .NET? If you aren't using the Document/View framework, I don't see a real reason to use MFC. |
|
Oct 24 |
comment |
Compiler error when using nested operator overloading in C++ Agreed. GetURL() is meant to be used outside the class. |
|
Oct 24 |
comment |
Compiler error when using nested operator overloading in C++ When you write C++ classes whose instance are meant to be used as values to be manipulated and compared, const-correctness is very important. Not only it helps you avoid compiler errors, it also lets the compiler do aggressive optimizations, like not loading variables more than once in the registers, etc. |
|
Oct 24 |
accepted | Compiler error when using nested operator overloading in C++ |
|
Oct 24 |
answered | Compiler error when using nested operator overloading in C++ |
|
Oct 21 |
comment |
Size of virtual pointer-C++ It's obviously not homework. Lecturers don't usually ask these kind of questions, at least not at undergraduate level. |
|
Oct 18 |
comment |
create a object : A.new or new A? I won't downvote this question, but it's pretty stupid, IMHO. Object-orientation is about the way how programs are conceived and structured, not about syntax. |
|
Oct 15 |
asked | How to interview a customer to take requirements? |
|
Oct 14 |
answered | What is the difference, usage-wise, between defines/macros/structs and consts/funcs/classes? (C++) |
|
Oct 14 |
comment |
C# cleanest way to write retry logic? Move the if out of the do loop, for God's sake! |
|
Oct 7 |
answered | How to set up a C++ function so that it can be used by p/invoke? |
|
Oct 2 |
comment |
When do you use Java’s @Override annotation and why? I don't know what the operator precedence rules are in Java, but your equals method is screaming BUUUUUUUUUUUG! I'd write (b.first == first) && (b.second == second), even if && had lower precedence than ==. |
|
Oct 2 |
answered | What is the WORST commit message you have ever authored? |
|
Sep 30 |
comment |
What’s the worst security hole you’ve ever seen? Perhaps they should rename themselves: Hackme Bank. |
|
Sep 29 |
comment |
C++: How to split a string?while (iss) { string subs; iss >> subs; cout << "Substring: " << sub << endl; } |
|
Sep 26 |
answered | Python interpreter as a c++ class |
|
Sep 23 |
comment |
How can I use Dynamic Methods in C++ There's nothing dynamic in C++, except for virtual function dispatch. (Template metaprogramming doesn't count, unless you want to warp your brain around itself.) If you want a has_foo() method, you have to explicitly and painfully declare and implement it. |
|
Sep 22 |
comment |
std::vector reserve() and push_back() is faster than resize() and array index, why? How does that work? malloc? |
|
Sep 21 |
comment |
variable length array of classes. If the assignment operator and the copy constructor copy the resources, it's dangerous to resize the vector as well. :) |
|
Sep 21 |
comment |
variable length array of classes. @onebyone: What if the class handles resources, say, allocating them in the constructor and deallocating them in the destructor? The class might be small, the constructor and destructor may have nothing but three instructions each, but using a vector of dummie_type would be DANGEROUS to resize!!! |
|
Sep 21 |
comment |
variable length array of classes. No. A vector of pointers is not a list. A list cannot be randomly accessed. If he needs a vector, he needs a vector. |
|
Sep 21 |
revised |
variable length array of classes. added 606 characters in body |
|
Sep 21 |
comment |
variable length array of classes. So he actually needs an array of pointers to objects, not a pointer to an array of objects. |
|
Sep 21 |
answered | variable length array of classes. |
|
Sep 13 |
asked | Guidelines for GUI design for a risk analysis app |
|
Sep 12 |
answered | What is Boost missing? |
|
Sep 12 |
awarded | ● Popular Question |
|
Sep 10 |
revised |
How do you dynamically allocate a matrix? added 553 characters in body; added 41 characters in body; added 10 characters in body |
|
Sep 10 |
accepted | How do you dynamically allocate a matrix? |
|
Sep 10 |
answered | How do you dynamically allocate a matrix? |
|
Sep 1 |
revised |
Code golf: Reverse quine added 55 characters in body |
|
Sep 1 |
asked | Code golf: Reverse quine |
