Trevor Boyd Smith
|
Registered User
|
DSP Engineer first.
Embedded C programmer second. C++/Matlab third... some java very occasionally. --- Fun message: You'd be surprised what optimizations you can find with the restrict keyword, otimization level 3, and looking at the assembly. ---
My profile on Stackoverflow.com |
|
Nov 17 |
awarded | ● Popular Question |
|
Oct 30 |
asked | How would you make this into a VIM macro? |
|
Oct 13 |
comment |
Is this a bug in gdb ? Does someone know how to fix it ? you answer is "general advice" and is not addressing the specific issue. |
|
Sep 28 |
comment |
How do you manually install the eclipse-CDT plugin from an archive/zip on ubuntu? have you tried this and seen it work? Where is this mentioned in Eclipse documentation? |
|
Sep 18 |
awarded | ● Favorite Question |
|
Sep 18 |
awarded | ● Good Question |
|
Sep 8 |
comment |
Qt vs WPF/.NET Please note as of 08SEP2009: the accepted answer here has +7. Where as the answer by Alan has +19. |
|
Sep 8 |
comment |
Qt vs WPF/.NET When someone asks "why should I pick A and not B?" and the response is "item A has x,y,z and therefore is better than B" is not a valid comparison. Saying "item A has x,y,z" answers an entirely different question "what features does A have?" and doesn't help anyone understand which is better. |
|
Sep 8 |
comment |
Qt vs WPF/.NET Your response is horrible because your response is entirely one sided and has absolutely no mention of the opposing side. When you are promoting one item as being "better" than another you MUST show HOW the one item is better than the other. |
|
Sep 7 |
asked | How do you manually install the eclipse-CDT plugin from an archive/zip on ubuntu? |
|
Sep 2 |
comment |
QT question: Why does QT use it’s own make tool, qmake? RE "QMake does not call g++/gcc directly": So QT doesn't use a standard C++ compiler like gcc? What compiler does it use? |
|
Sep 2 |
asked | Qt question: How do signals and slots work? |
|
Sep 2 |
asked | QT question: What does the Q_OBJECT macro do? Why do all QT objects need this macro? |
|
Sep 2 |
asked | QT question: Can you use the standard gdb debugger with QT executables? |
|
Sep 2 |
asked | QT question: Why does QT use it’s own make tool, qmake? |
|
Sep 2 |
asked | QT question: What is the purpose of the *.pro file? |
|
Sep 2 |
asked | Is Qt classified as a c++ library? If not a library, how would you classify QT? |
|
Aug 27 |
comment |
Most important feature in Visual Studio 2010 sharepoint... i'll use a wiki any day over share point. |
|
Aug 11 |
revised |
Multiple commands in gdb separted by some sort of delimiter ‘;’? edited title |
|
Aug 11 |
asked | Multiple commands in gdb separted by some sort of delimiter ‘;’? |
|
Aug 11 |
comment |
What are the easiest/best methods for managing your ctags tag file(s)? I don't know what "VCS hooks" are. Maybe you could elaborate a little more on VCS hooks and how it knows to regen tags upon committing? |
|
Aug 10 |
revised |
What are the easiest/best methods for managing your ctags tag file(s)? added 42 characters in body |
|
Aug 10 |
asked | What are the easiest/best methods for managing your ctags tag file(s)? |
|
Aug 7 |
awarded | ● Notable Question |
|
Jun 11 |
awarded | ● Nice Answer |
|
Jun 11 |
comment |
Why java people frequently consume exception silently ? Exception throwing in Java is soo prevalent that most Java coders ignore them because if you do the correct error catching then you will need to write a lot more code... so basically all those java programmers do this because they are slothful. |
|
Jun 11 |
comment |
Hidden features of C @simonn, no it doesn't do undefined behavior if the structure contains non-integral types. memset with 0 on the memory of a float/double will still be zero when you interpret the float/double (float/double are designed like that on purpose). |
|
Jun 11 |
comment |
Hidden features of C @ComSubVie, please meet my Fist-of-death (en.wikipedia.org/wiki/…) |
|
Jun 11 |
comment |
Hidden features of C @ComSubVie, anyone who uses Duff's Device is a script kiddy who saw Duff's Device and thought their code would look 1337 if they used Duff's Device. (1.) Duff's Device doesn't offer any performance increases on modern processor because modern processors have zero-overhead-looping. In other words it is an obsolete piece of code. (2.) Even if your processor doesn't offer zero-overhead-looping, it will probably have something like SSE/altivec/vector-processing which will put your Duff's Device to shame when you use memcpy(). (3.) Did I mention that other that doing memcpy() duff's is not useful? |
|
Jun 11 |
comment |
Hidden features of C @zvrba, In my opinion, C was designed ASSUMING that whenever you are doing integer arithmetic you the programmer are doing rigorous analysis to ENSURE that you have bounded-input-bounded-output (fancy way of saying "make sure your input and output stay within a range")!! If you are not doing that rigorous analysis then it's not the language's fault it is the programmer's fault. |
|
Jun 11 |
comment |
Hidden features of C @zvrba, "library routines that can test for arithmetic overflow (of all basic operations)" if you had added this then you would have incurred significant performance hit for any integer arithmetic operations. ===== Case study Matlab specifically ADDS the feature of controlling integer overflow behavior to wrapping or saturate. And it also throws an exception whenever overflow occurs ==> Performance of Matlab integer operations: VERY SLOW. My own conclusion: I think Matlab is a compelling case study that shows why you don't want integer overflow checking. |
|
Jun 11 |
comment |
C++0x performance improvements More keywords???! We already have volatile, unsigned, restrict, static, const, Register... am I missing any? |
|
Jun 11 |
comment |
Eclipse optimizations I forgot about the optimization where you "don't have to wait 2 bloody hours for it to install and upgrade and upgrade and... snore |
|
Jun 11 |
comment |
Eclipse optimizations How about the optimization where you "DON'T PAY $2000 FOR A LICENSE" or where you "use it on Linux or Mac... or any OS". <<<>>> FYI, I prefer to use development tools that are cross platform and I also like to use open source as much as possible. |
|
Jun 11 |
comment |
How to programatically cause a core dump in C/C++ I just learned like 3 or 4 great new things. Thanks. |
|
Jun 11 |
comment |
Vim substitution of a list of words with another same length list of words? @Igor, who gave a specific solution to the example given in the question. The example I gave in the question was the simplest case scenario meant to illustrate my problem. In reality each a or b or c is a string that will be replaced by another string. |
|
Jun 11 |
comment |
Vim substitution of a list of words with another same length list of words? @Brian, when I do my substitutions I have to put a backslash to escape the '(', '|', and ')' characters. Why do you not have to? Or is your syntax wrong? |
|
Jun 11 |
comment |
Vim substitution of a list of words with another same length list of words? @Brian, what is the "\v" in your substitution? |
|
Jun 11 |
comment |
Vim substitution of a list of words with another same length list of words? @Idigas, eventually I will be implementing the Matlab in C. So I want to fully understand and make the code as elegant as possible before converting to C. |
|
Jun 11 |
comment |
Vim substitution of a list of words with another same length list of words? @Idigas, I am doing a bunch of refactoring on some bad Matlab code. I noticed that the code uses like 20-30 globals and his globals aren't all uppercase or named in such a way to make them obviously global. --> SO I would like to rename them all to be all uppercase. Or possibly the same name but add "_g" after each variable name. |
|
Jun 10 |
asked | Vim substitution of a list of words with another same length list of words? |
|
Jun 7 |
answered | Signal processing library in Java? |
|
Jun 4 |
comment |
What is the good cross platform C++ IDE? @Marko, How can you have 4,045 points rep and not seen this question asked 5 thousand gajillion times on Stack Overflow? Are you blind? |
|
Jun 4 |
comment |
What is the good cross platform C++ IDE? @Marko, "Since I got spoiled by Java IDEs (Eclipse)" well if you like Eclipse... you should use it for your C/C++ development also. That way all your Eclipse skills will transfer. |
|
Jun 4 |
comment |
Composite Strategy pattern - java - How bad is this code? You are breaking all the rules of indentation. If you want others to look at and help you with something your code needs to look a little better. Right now it has horrible code smell. |
