User Trevor Boyd Smith - Stack Overflowmost recent 30 from stackoverflow.com2009-12-04T16:22:43Zhttp://stackoverflow.com/feeds/user/52074http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/652788/what-is-the-worst-real-world-macros-pre-processor-abuse-youve-ever-come-across52What is the worst real-world macros/pre-processor abuse you've ever come across?Trevor Boyd Smith2009-03-17T01:57:42Z2009-11-25T14:01:45Z
<p>What is the <em>worst</em> <strong>real-world</strong> macros/pre-processor abuse you've ever come across (please no contrived IOCCC answers *haha*)?</p>
<p>Please add a short snippet or story if it is really entertaining. The goal is to teach something instead of always telling people "never use macros".</p>
<p><hr /></p>
<p>p.s.: I've used macros before... but usually I get rid of them eventually when I have a "real" solution (even if the real solution is inlined so it becomes similar to a macro).</p>
<p><hr /></p>
<p><strong>Bonus:</strong> Give an example where the macro was really was better than a not-macro solution.</p>
<p><strong>Related question:</strong> <a href="http://stackoverflow.com/questions/96196/when-are-c-macros-beneficial">When are C++ macros beneficial?</a> </p>
http://stackoverflow.com/questions/1650076/how-would-you-make-this-into-a-vim-macro0How would you make this into a VIM macro?Trevor Boyd Smith2009-10-30T14:20:16Z2009-10-30T15:43:54Z
<p>So one of the common tasks that I do as a programmer is debugging a live system. And one of the ways that I debug a live system is to capture a verbose log from the console.</p>
<p>Typically the log file has around 20 extra lines for every one line I am interested.</p>
<p>To minimize my macro script I went about creating a macro that will grab ONLY the one line out of 20 that I am interested in! (As opposed to doing 20 substitutions for all the lines I didn't want... which would make the macro 20 times longer than it needs to be.) The rest of this macro code will turn that one line into a *.csv file so I can play with the numbers in Matlab or Excel as I see fit.</p>
<p>Here is the code for the macro (these commands are Ultra Edit specific commands):</p>
<pre><code>Clipboard 1
ClearClipboard
Loop
Find RegExp "{*}DBGLINE: STR1 ( * ) STR2 ( * )^p"
IfFound
CopyAppend
Else
ExitLoop
EndIf
EndLoop
SelectAll
Delete
Paste
Find RegExp "{*}DBGLINE: STR1( "
Replace All ""
Find RegExp " ) STR2 ( "
Replace All " , "
Find RegExp " )*^p"
Replace All "^p"
ClearClipboard
</code></pre>
<p>*FYI, <a href="http://trevorboydsmith.blogspot.com/2009/10/built-in-commands-used-in-ultraedit.html" rel="nofollow">I have posted the API/description of what each command does online.</a></p>
<p>Let me break down in a more human readable pseudo code what this macro is doing:</p>
<pre><code>buffer = "";
// Keep finding $REGEX until EOF
while(1) {
if( Find $REGEX ) {
Select the text;
} else {
break;
}
buffer += selected piece of text;
}
// Now we can focus only on the selected lines from the log file
Select the entire text in the file;
Delete all selected text;
Paste the buffer into the text file;
// Convert the human readable text into a *.csv file
Parse out all the non-numerical content;
Replace with " , " commas;
</code></pre>
<p>I know how to create simple macros in VIM by adding a map to my .vimrc file:</p>
<pre><code>map $KEYBOARD :%s/$STR_A/$STR_B/gc<CR>
</code></pre>
<p>But I was wondering if there was some way to do the while(1) and the CopyAppend in a macro. Like in some sort of .vimrc defined function:</p>
<pre><code>function! CustomScript1()
...
" TODO: vim commands here
...
endfunction
map $KEYBOARD :call CustomScrip1()<CR>
</code></pre>
<p><strong>So how would you change the above UltraEdit macro into a VIM function?</strong></p>
<p><strong>I really need to get the ability to recreate this kind of script in VIM because I am currently stuck doing 20 substitute (sometimes more) and replaces... and it is driving me nuts wasting my time doing such inelegant solution to parsing the log file!</strong></p>
http://stackoverflow.com/questions/1262639/multiple-commands-in-gdb-separted-by-some-sort-of-delimiter0Multiple commands in gdb separted by some sort of delimiter ';'?Trevor Boyd Smith2009-08-11T20:11:16Z2009-10-28T19:57:36Z
<p>I am trying to execute two commands at once in gdb:</p>
<pre><code>finish; next
</code></pre>
<p>I tried using the ';' to separate the commands but gdb did not let me do both at once.</p>
<p>Is it possible to do multiple commands in gdb similar to bash commands separated by ';' delimiter?</p>
http://stackoverflow.com/questions/1390937/how-do-you-manually-install-the-eclipse-cdt-plugin-from-an-archive-zip-on-ubuntu0How do you manually install the eclipse-CDT plugin from an archive/zip on ubuntu?Trevor Boyd Smith2009-09-07T20:58:23Z2009-09-25T20:25:21Z
<p>I have successfully installed Eclipse 3.5 and Java 1.5. I would like to install CDT without using Eclipse's "install new features" (nor can i use the Eclipse-CDT installer) option because this computer is offline.</p>
<p>What I did:</p>
<ol>
<li>I downloaded the <a href="http://download.eclipse.org/tools/cdt/releases/galileo/" rel="nofollow">archive of cdt from CDT's official download page</a>.</li>
<li>I used file-roller to unzip everything into the eclipse folder (the plugins/features now have a ton of <em>cdt</em> files)</li>
<li>I started Eclipse with -clean</li>
<li>When I clicked the New Project. The GUI dialog box did not show C/C++... and there was no C/C++ perspective</li>
</ol>
<p>Eclipse appeared to have ignored my unzipping CDT.</p>
<p>Have you ever installed CDT using the offline archive?</p>
<p>What steps have I missed?</p>
http://stackoverflow.com/questions/1368593/qt-question-how-do-signals-and-slots-work2Qt question: How do signals and slots work?Trevor Boyd Smith2009-09-02T16:00:21Z2009-09-06T01:27:42Z
<p>How do signals and slots work at a high level abstraction?</p>
<p>How are signals and slots implemented at a high level abstraction?</p>
http://stackoverflow.com/questions/1368534/qt-question-why-does-qt-use-its-own-make-tool-qmake4QT question: Why does QT use it's own make tool, qmake?Trevor Boyd Smith2009-09-02T15:52:22Z2009-09-03T09:42:45Z
<p>I just started using QT and noticed that it uses it's own make tool, qmake. Why does QT use it's own make tool?</p>
<p>Is there something special that prevents it from using a standard make tool?</p>
<p>Does qmake call gcc c++ compiler?</p>
http://stackoverflow.com/questions/1368512/qt-question-what-is-the-purpose-of-the-pro-file0QT question: What is the purpose of the *.pro file?Trevor Boyd Smith2009-09-02T15:49:06Z2009-09-03T07:47:26Z
<p>I just started using QT and noticed that in each example code folder there is a *.pro file (and there is also a makefile created too... why?). What is the purpose of the *.pro file?</p>
http://stackoverflow.com/questions/858035/union-useless-anachronism-or-useful-old-school-trick8Union – useless anachronism or useful old school trick?Trevor Boyd Smith2009-05-13T13:47:06Z2009-09-02T19:11:10Z
<p>I recently came across a great data structures book,"<a href="http://rads.stackoverflow.com/amzn/click/0131997467" rel="nofollow">Data Structures Using C</a>" (c) 1991, at a local Library book sale for <strong>only $2</strong>. As the book's title implies, the book covers data structures using the C programming language.</p>
<p>I got the book knowing it would be out-dated but would probably contain lots of advanced C topics that I wouldn't encounter elsewhere.</p>
<p>Sure enough within 5 minutes I found something I didn't know about C. I came across a section talking about the <code>union</code> keyword and I realized that I had never used it, nor ever seen any code that does. I was grateful for learning something interesting and quickly bought the book.</p>
<p>For those of you not knowledgeable about what a union is, the book uses a good metaphor to explain:</p>
<blockquote>
<p>To fully understand the concept of a
union, it is necessary to examine its
implementation. A Structure may be
regarded as a road map to an area of
memory. It defines how the memory is
to be interpreted. A union provides
several different road maps for the
same area of memory, and it is the
responsibility of the programmer to
determine which road map is in current
use. In practice, the compiler
allocates sufficient storage to
contain the largest member of the
union. It is the road map, however,
that determines how that storage is to
be interpreted.</p>
</blockquote>
<p><strong>I could easily come up with contrived situations or hacks where I would use a Union. (But I am not interested in contrived situations or hacks...)</strong></p>
<p><strong>Have you used or seen an implementation where using Union solved the problem **more elegantly** than not using a Union?</strong></p>
<p>Added bonus if you include a quick explanation of why using union was better/easier than not using a union.</p>
http://stackoverflow.com/questions/1368551/qt-question-can-you-use-the-standard-gdb-debugger-with-qt-executables0QT question: Can you use the standard gdb debugger with QT executables?Trevor Boyd Smith2009-09-02T15:54:25Z2009-09-02T16:47:59Z
<p>I just started using QT and I wanted to debug my QT app. Can I use the standard gdb debugger with QT executables?</p>
http://stackoverflow.com/questions/1368584/qt-question-what-does-the-qobject-macro-do-why-do-all-qt-objects-need-this-mac2QT question: What does the Q_OBJECT macro do? Why do all QT objects need this macro?Trevor Boyd Smith2009-09-02T15:59:07Z2009-09-02T16:25:32Z
<p>I just started using QT and noticed that all the example class definitions have the macro <code>Q_OBJECT</code> as the first line. What is the purpose of this preprocessor macro?</p>
http://stackoverflow.com/questions/1368451/is-qt-classified-as-a-c-library-if-not-a-library-how-would-you-classify-qt3Is Qt classified as a c++ library? If not a library, how would you classify QT?Trevor Boyd Smith2009-09-02T15:37:25Z2009-09-02T16:22:42Z
<p>I recently started looking into Qt (I installed Qt 4.5.2 and installed their Eclipse-CDT plugin called "qt integration v1.5.2" and I will do all my development in Linux-Eclipse-CDT-QTintegration).</p>
<p>Originally I thought Qt was a straight vanilla C++ library but when I installed and started running Qt example code I saw lots of "weird" things that I consider to be non-standard. </p>
<p>My goal is to understand at a high level of abstraction:</p>
<ul>
<li><strong>Is Qt classified as a C++ library?</strong> </li>
<li><strong>If not a library, how would you classify Qt (analogy/metaphors are appreciated)?</strong></li>
</ul>
http://stackoverflow.com/questions/1256755/what-are-the-easiest-best-methods-for-managing-your-ctags-tag-files4What are the easiest/best methods for managing your ctags tag file(s)?Trevor Boyd Smith2009-08-10T19:31:15Z2009-08-12T20:11:10Z
<p>I just started using ctags and greatly appreciate the tool but the way I manage my tag file is somewhat cumbersome in my opinion and very inflexible.</p>
<p>How I currently manage my tag file:</p>
<ol>
<li>I have <em>one monolithic tag</em> file stored in my home folder at <code>~/.vim/tags</code></li>
<li>When I update my code or change projects I run a script that deletes the old tag file and regenerates the monolithic tag file (you have to change the location of where ctags executes from when you change projects)</li>
</ol>
<p>Having one monolithic tag file works for me because it lets me jump to all the relevant symbols for the current project I am working on.</p>
<p><strong>Would a single monolithic tag file will not work for a large/huge codebase? Why would a huge tag file not work on a large/huge codebase?</strong></p>
<p><strong>What are other ways to manage your tag file (or tag files plural)?</strong></p>
<p><strong>And why would your new method for managing your tag files be better?</strong> (Presumably a better solution would sometimes be more complex. So if your solution is more complex I am asking you what is the added benefit for a more complex method for managing your tag files.)</p>
<p><hr /></p>
<p>p.s. I found a stackoverflow question talking about ctags called "<a href="http://stackoverflow.com/questions/563616/vimctags-tips-and-tricks">vimctags-tips-and-tricks</a>" but this question doesn't talk about how to manage your tag files. </p>
http://stackoverflow.com/questions/978393/vim-substitution-of-a-list-of-words-with-another-same-length-list-of-words3Vim substitution of a list of words with another same length list of words?Trevor Boyd Smith2009-06-10T22:04:08Z2009-06-10T22:29:34Z
<p>I need to substitute a list of words with with an equally long list of words.</p>
<p>So for example you have:
"a","b","c","d","e","f"</p>
<p>And you want to replace each word with the uppercase version of each word:
"A","B","C","D","E","F"</p>
<p>I know how to find each string using the regex:
(a\|b\|c\|d\|e\|f)</p>
<p>I know you could do a global substitution for each word. But when the length of the words gets large this approach would become un-wieldly and inelegant.</p>
<p>Is there a way to somehow do one global substitution? Similar to:</p>
<pre><code>:%s/\(a\|b\|c\|d\|e\|f\)/INSERT_REPLACEMENT_LIST/
</code></pre>
<p>I am not sure if this is even possible.</p>
http://stackoverflow.com/questions/636686/signal-processing-library-in-java/962999#9629991Answer by Trevor Boyd Smith for Signal processing library in Java?Trevor Boyd Smith2009-06-07T23:05:49Z2009-06-07T23:05:49Z<p><strong>My first suggestion is to not do your DSP implementation in Java. My second suggestion would to roll your own simple DSP implementations yourself in Java.</strong></p>
<p><hr /></p>
<p><strong>Why not to use Java:</strong></p>
<p>I work in a company who's main selling point is DSP related products (about 300 Million revenue per year)... and none of our DSP is in Java... so forgive me when I am hesitant to read about someone who wants to implement DSP in java.</p>
<p>If you are going to be doing <strong>non-trivial DSP</strong> then you shouldn't be using Java. The reason that DSP is so painful to implement in Java is because all the good DSP implementations use low level memory management tricks, pointers (crazy amounts of pointers), large raw data arrays, etc.</p>
<p><strong>Why to use Java:</strong></p>
<p>If you are doing <strong>simple DSP</strong> stuff roll your own Java implementation. Simple DSP things like PSD and filtering are both relatively easy to implement (easy implementation but they won't be fast) because there is soo many implementation examples and well documented theory online. </p>
<p>In my case I implemented a PSD function in Java once because I was graphing the PSD in a Java GUI so it was easiest to just take the performance hit in Java and have the PSD computed in the java GUI and then plot it.</p>
<p><hr /></p>
<p>How to implement a PSD:</p>
<p>The PSD is usually just the magnitude of the FFT displayed in dB. Start by copying the C code from <a href="http://www.fizyka.umk.pl/nrbook/bookcpdf.html" rel="nofollow">Numerical Recipes</a> section talking about FFT. Convert the FFT code to Java. (If your data array is real use <a href="http://www.fizyka.umk.pl/nrbook/c12-3.pdf" rel="nofollow">Numerical Recipes: FFT of Single Real Function</a>. Look for function: <code>void realft(float data[], unsigned long n, int isign)</code> ). Take the 10 * log10(abs(data[])) of the output from realft(). Now you have your own PSD in Java and you have learned something about DSP/FFT.</p>
<p>Before you get upset about suggesting converting C code to Java let me tell you that I have already implemented this specific code to Java and it works decently (the code doesn't use any fancy C tricks that would make the Java implementation horrible).</p>
<p><hr /></p>
<p>How to implement lowpass, bandpass filtering:</p>
<p>The easiest implementation (not the most computationally efficient) would in my opinion be using an FIR filter and doing time domain convolution. </p>
<p>Convolution is very easy to implement it is two nested for loops and there are literally millions of example code on the net.</p>
<p>The FIR filter will be the tricky part if you don't know anything about filter design. The easiest method would be to use Matlab to generate your FIR filter and then copy the coefficents into java. I suggest using firpmord() and firpm() from Matlab. Shoot for -30 to -50 dB attenuation in the stopband and 3 dB ripple in the passband.</p>
http://stackoverflow.com/questions/936993/pthread-what-is-the-difference-between-time-hsleep-and-pthread-hpthready3Pthread - What is the difference between time.h::sleep() and pthread.h::pthread_yield()?Trevor Boyd Smith2009-06-01T21:54:17Z2009-06-01T22:50:45Z
<p>I spent a good long while looking for info on the differences between time.h::sleep() and pthread.h::pthread_yield() but was unable to find any solid reference material and so I am posting this question.</p>
<p>What is the difference between time.h::sleep() and pthread.h::pthread_yield()?</p>
<p><em>Update:</em></p>
<p>The reason I ask is because I was using sleep() to sleep() each individual thread... and my application started having issues when there was 8 threads vs 4 threads. When I went online to see if sleep() only affects each thread, I couldn't find any good reference stating whether Sleep() affects the entire process OR sleep() only affects the individual thread.</p>
http://stackoverflow.com/questions/933088/clipping-fft-matrix/934841#9348411Answer by Trevor Boyd Smith for Clipping FFT MatrixTrevor Boyd Smith2009-06-01T13:34:16Z2009-06-01T13:34:16Z<p>I don't know enough from your question to actually answer anything specific.</p>
<p>But here are a couple of things to try from my own experience writing FFTs:</p>
<ul>
<li>Make sure you are following Nyquist rule</li>
<li>If you are viewing the linear output of the FFT... you will have trouble seeing your own signal and think everything is broken. Make sure you are looking at the dB of your FFT magnitude. (i.e. "plot(10*log10(abs(fft(x))))" )</li>
<li>Create a unitTest for your FFT() function by feeding generated data like a pure tone. Then feed the same generated data to Matlab's FFT(). Do a absolute value diff between the two output data series and make sure the max absolute value difference is something like 10^-6 (i.e. the only difference is caused by small floating point errors)</li>
<li>Make sure you are <a href="http://en.wikipedia.org/wiki/Window%5Ffunction#High-%5Fand%5Fmoderate-resolution%5Fwindows" rel="nofollow">windowing your data</a> </li>
</ul>
<p>If all of those three things work, then your fft is fine. And your input data is probably the issue.</p>
<ul>
<li>Check the input data to see if there is <img src="http://www.users.globalnet.co.uk/~bunce/clip.gif" alt="clipping" /></li>
</ul>
<p>Time doamin clipping shows up as mirror images of the signal in the frequency domain at specific regular intervals with less amplitude.</p>
http://stackoverflow.com/questions/933976/how-should-i-set-up-eclipse-when-preparing-for-a-presentation-or-demo/934759#9347591Answer by Trevor Boyd Smith for How should I set up Eclipse when preparing for a presentation or demo?Trevor Boyd Smith2009-06-01T13:10:40Z2009-06-01T13:10:40Z<p>"Is there a way to save and switch out presenter settings?"</p>
<p><strong>Create a new "Perspective" for each specific task you are going to do at the conference.</strong> So when you develop at home you would use c++/java/debug perspective and then when you present you would use c++-presentation/java-presentation/debug-presentation perspective.</p>
<p>How to create the new perspective for each task:</p>
<ul>
<li>Copy your current development presentation</li>
<li>Change to a lower resolution 800x600 or 1024x800</li>
<li>Tweak all different sizes of each GUI item in each perspective and make sure it looks good on a presentation</li>
<li>Get a bunch of feedback from friends to see what they think should change about your eclipse setup.</li>
</ul>
<p><hr /></p>
<p>Is there a convenient way to increase font-size?</p>
<p><strong>You can change the font used by your OS and that will affect the font used by Eclipse.</strong> Or you can change the font from within Eclipse using: </p>
<ul>
<li>Menubar "Window" --> Menuitem "Preferences --> Left-textwindow "General" --> "Appearance" --> "Colors and Fonts"</li>
<li>Double click the item you want to change the font for</li>
</ul>
<p><hr /></p>
<p>Any neat tools or tricks worth mentioning?</p>
<p><strong>I'm sure there are... but presentations aren't about neat tricks.</strong> All the best presentations i've seen use very simple tools and the presentation is good because of the presenter's talking and interacting with the crowd. All the worst presentations i've seen depend on some neat trick that fails...</p>
http://stackoverflow.com/questions/925409/why-was-matlab-written-in-c-instead-of-fortran/926124#92612413Answer by Trevor Boyd Smith for Why was Matlab written in C instead of Fortran?Trevor Boyd Smith2009-05-29T13:59:12Z2009-05-29T14:40:41Z<p><strong>To answer your original question: Matlab was originally written in Fortran.</strong> But one of the first things that the creator of Matlab, Cleve Moler, and his partner did in 1983 was to rewrite the entire Matlab app in C:</p>
<blockquote>
<p>Jack Little left his job at the
consulting company and bought a new
COMPAQ portable computer at Sears. The
machine had only 256 KB of memory and
no hard disc; Jack had to swap
5-1/4-inch floppies to compile
programs. Jack and Steve took a year
and a half to re- write MATLAB in C,
adding new features they had envi-
sioned. (<a href="http://www.mathworks.com/company/newsletters/news%5Fnotes/clevescorner/jan06.pdf" rel="nofollow">The Growth of MATLAB and The MathWorks over Two Decades</a>)</p>
</blockquote>
<p><strong>I think a more relevant question for today would be to ask: why did they switch to C back in 1983 ?</strong></p>
<p>My guess is that C probably had certain features that Fortran did not have and thus the switch was more out of necessity and in the interest of code maintainability.</p>
<p>One <em>killer</em> feature missing in Fortran77 was dynamic memory allocation (Dynamic memory allocation was only added in Fortran90). Getting around that <em>single</em> limitation would be a horrible deal breaker in my opinion.</p>
<p>EDIT:</p>
<p>dmckee's answer has a great explanation of why using Fortran77 would be painful.</p>
http://stackoverflow.com/questions/888390/search-image-pattern/888983#8889832Answer by Trevor Boyd Smith for Search image patternTrevor Boyd Smith2009-05-20T16:33:20Z2009-05-20T16:33:20Z<p><strong>Use normalized correlation to determine a match of templates.</strong></p>
<p>@Daniel, Daniel's solution is good for leveraging your multiple CPUs. He doesn't mention a quality metric that would be useful and I would like to suggest one quality metric that is very common in image processing.</p>
<p>I suggest using <a href="http://www.mathworks.com/access/helpdesk/help/toolbox/images/index.html?/access/helpdesk/help/toolbox/images/normxcorr2.html" rel="nofollow">normalized correlation</a>[1] as a comparison metric because it outputs a number from -1 to +1. Where 0 is no correlation 1 would be output if the two templates were identical and -1 would be if the two templates were exactly opposite.</p>
<p>Once you compute the normalized correlation you can test to see if you have found the template by doing either a <a href="http://en.wikipedia.org/wiki/Thresholding%5F%28image%5Fprocessing%29" rel="nofollow">threshold test</a> or a peak-to-average test[2].</p>
<p>[1 - footnote] How do you implement normalized correlation? It is pretty simple and only has two for loops. Once you have an implementation that is good enough you can verify your implementation by checking to see if the identical image gets you a 1.</p>
<p>[2 - footnote] You do the ratio of the max(array) / average(array_without_peak). Then threshold to make sure you have a good peak to average ratio.</p>
http://stackoverflow.com/questions/887689/write-a-circular-file-in-c/888365#8883652Answer by Trevor Boyd Smith for Write a circular file in c++Trevor Boyd Smith2009-05-20T14:43:23Z2009-05-20T16:14:35Z<p><strong>Use a circular buffer and write the buffer to a file for each add.</strong></p>
<p>Here is a small and simple code size solution. It is a simple circular buffer of strings and each time you add strings it writes the entire buffer of strings to the file (of course you incur a <em>significant</em> cost for writing <em>all</em> the strings for a single add operation. So this is only suitable for a small number of strings). </p>
<p>Simple implementation of circular buffer with output to a file:</p>
<pre><code>// GLOBALS ( final implementation should not use globals )
#define MAX_CHARS_PER_LINE (1024)
#define MAX_ITEMS_IN_CIRCULARBUF (4) // must be power of two
char lineCircBuf[MAX_ITEMS_IN_CIRCULARBUF][MAX_CHARS_PER_LINE];
int lineCircBuf_add = 0;
int lineCircBuf_rmv = 0; // not being used right now
uint32_t lineCircBuf_mask = MAX_ITEMS_IN_CIRCULARBUF-1;
char FILENAME[] = "lineCircBuf.txt";
FILE * ofp = NULL;
int addLine(char * str) {
int i;
// Error checking
if( strlen(str) > MAX_CHARS_PER_LINE ) {
return -1; // failure
}
if( ofp != NULL) {
fclose(ofp);
}
// Copy string into circular buffer
strncpy( &(lineCircBuf[lineCircBuf_add][0]),
str,
MAX_CHARS_PER_LINE );
lineCircBuf_add = ( lineCircBuf_add + 1 ) & lineCircBuf_mask;
// Write to file
ofp = fopen(FILENAME,"w");
for( i = 0; i < MAX_ITEMS_IN_CIRCULARBUF-1; i++ ) {
fprintf( ofp, "%s\n", lineCircBuf[i] );
}
fprintf( ofp, "%s", lineCircBuf[i] ); // do not add a newline to the last line b/c we only want N lines in the file
return 0; // success
}
int removeLine(int index) {
// not implemented yet
}
void unitTest() {
int i;
// Dummy text to demonstrate adding string lines
char lines[5][MAX_CHARS_PER_LINE] = {
"Hello world.",
"Hello world AGAIN.",
"The world is interesting so far!",
"The world is not interesting anymore...",
"Goodbye world."
};
// Add lines to circular buffer
for( i = 0; i < sizeof(lines)/sizeof(lines[0]); i++ ) {
addLine(&(lines[i][0]));
}
}
int main() {
unitTest();
return 0;
}
</code></pre>
<p>So in the above example we had 5 lines of input and our buffer was only 4 lines long. Therefore the output should have 4 lines only and the first line should be overwritten by the last line "Goodbye world". Sure enough the first line of the output confirms does have "Goodbye world":</p>
<pre><code>Goodbye world.
Hello world AGAIN.
The world is interesting so far!
The world is not interesting anymore...
</code></pre>
http://stackoverflow.com/questions/820944/how-to-convert-a-low-pass-filter-to-a-band-pass-filter/829308#8293081Answer by Trevor Boyd Smith for How to convert a low-pass filter to a band-pass filterTrevor Boyd Smith2009-05-06T12:24:59Z2009-05-06T13:34:02Z<p>The short answer is that you will multiply by a complex exponential in the time domain. Multiplication in the time domain will shift the signal in the frequency domain. </p>
<p>Matlab code:</p>
<pre><code>n_taps = 100;
n = 1:n_taps;
h = ( w_c / Pi ) * sinc( ( n - n_taps / 2) * w_c / Pi ) .* ...
exp( i * w_offset * ( n - n_taps / 2) );
</code></pre>
<p><hr /></p>
<p>p.s. I happened to have just implemented this exact functionality for school a couple of weeks ago. </p>
<p>Here is code for creating your own band pass filter using the windowing method:</p>
<pre><code>%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Function: Create bandpass filter using windowing method
% Purpose: Simple method for creating filter taps ( useful when more elaborate
% filter design libraries are not available )
%
% @author Trevor B. Smith, 24MAR2009
%
% @param n_taps How many taps are in your output filter
% @param omega_p1 The lower cutoff frequency for your passband filter
% @param omega_p2 The upper cutoff frequency for your passband filter
% @return h_bpf_hammingWindow The filter coefficients for your passband filter
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
function h_bpf_hammingWindow = BPF_hammingWindow(n_taps,omega_p1,omega_p2)
% Error checking
if( ( omega_p2 == omega_p1 ) || ( omega_p2 < omega_p1 ) || ( n_taps < 10 ) )
str = 'ERROR - h_bpf_hammingWindow(): Incorrect input parameters'
h_bpf_hammingWindow = -1;
return;
end
% Compute constants from function parameters
length = n_taps - 1; % How many units of T ( i.e. how many units of T, sampling period, in the continuous time. )
passbandLength = omega_p2 - omega_p1;
passbandCenter = ( omega_p2 + omega_p1 ) / 2;
omega_c = passbandLength / 2; % LPF omega_c is half the size of the BPF passband
isHalfSample = 0;
if( mod(length,2) == 1 )
isHalfSample = 1/2;
end
% Compute hamming window
window_hamming = hamming(n_taps);
% Compute time domain samples
n = transpose(-ceil(length/2):floor(length/2));
h1 = sinc( (1/pi) * omega_c * ( n + isHalfSample ) ) * pi .* exp( i * passbandCenter * ( n + isHalfSample ) );
% Window the time domain samples
h2 = h1 .* window_hamming;
if 1
figure; stem(h2); figure; freqz(h2);
end
% Return filter coefficients
h_bpf_hammingWindow = h2;
end % function BPF_hammingWindow()
</code></pre>
<p>Example on how to use this function:</p>
<pre><code>h_bpf_hammingWindow = BPF_hammingWindow( 36, pi/4, 3*pi/4 );
freqz(h_bpf_hammingWindow); % View the frequency domain
</code></pre>
http://stackoverflow.com/questions/789913/array-offset-calculations-in-multi-dimensional-array-column-vs-row-major/806796#8067960Answer by Trevor Boyd Smith for array offset calculations in multi dimensional array (column vs row major)Trevor Boyd Smith2009-04-30T13:06:33Z2009-04-30T13:30:56Z<p>Don't artificially constrain yourself by focusing on 3-dimensional and 2-dimensional. Instead <strong>focus on learning the expression for addressing n-dimensional arrays</strong>. </p>
<p>Expressing n-dimensional addressing would solidfy your grasp on this subject and will be easier to remember one formula rather than separate formulas for 2d and 3d addressing.</p>
<p><hr /></p>
<p>Here's my attempt at n-dimensional addressing:</p>
<pre><code>#define LEN 10
int getValue_nDimensions( int * baseAddress, int * indexes, int nDimensions ) {
int i;
int offset = 0;
for( i = 0; i < nDimensions; i++ ) {
offset += pow(LEN,i) * indexes[nDimensions - (i + 1)];
}
return *(baseAddress + offset);
}
int main() {
int i;
int * baseAddress;
int val1;
int val2;
// 1 dimensions
int array1d[LEN];
int array1d_indexes[] = {2};
int array1d_nDimensions = 1;
baseAddress = &array1d[0];
for(i = 0; i < LEN; i++) { baseAddress[i] = i; }
val1 = array1d[2];
val2 = getValue_nDimensions( // Equivalent to: val1 = array1d[2];
baseAddress,
&array1d_indexes[0],
array1d_nDimensions
);
printf("SANITY CHECK: %d %d\n",val1,val2);
// 3 dimensions
int array3d[LEN][LEN][LEN];
int array3d_indexes[] = {2,3,4};
int array3d_nDimensions = 3;
baseAddress = &array3d[0][0][0];
for(i = 0; i < LEN*LEN*LEN; i++) { baseAddress[i] = i; }
val1 = array3d[2][3][4];
val2 = getValue_nDimensions( // Equivalent to: val1 = array3d[2][3][4];
baseAddress,
&array3d_indexes[0],
array3d_nDimensions
);
printf("SANITY CHECK: %d %d\n",val1,val2);
// 5 dimensions
int array5d[LEN][LEN][LEN][LEN][LEN];
int array5d_indexes[] = {2,3,4,5,6};
int array5d_nDimensions = 5;
baseAddress = &array5d[0][0][0][0][0];
for(i = 0; i < LEN*LEN*LEN*LEN*LEN; i++) { baseAddress[i] = i; }
val1 = array5d[2][3][4][5][6];
val2 = getValue_nDimensions( // Equivalent to: val1 = array5d[2][3][4][5][6];
baseAddress,
&array5d_indexes[0],
array5d_nDimensions
);
printf("SANITY CHECK: %d %d\n",val1,val2);
return 0;
}
</code></pre>
<p>Output:</p>
<pre><code>SANITY CHECK: 2 2
SANITY CHECK: 234 234
SANITY CHECK: 23456 23456
</code></pre>
http://stackoverflow.com/questions/803704/iphone-poll-a-80mb-download-install-vs-a-30mb-download-install-but-with-25/806685#8066850Answer by Trevor Boyd Smith for Iphone Poll - A 80MB download & install VS a 30MB download & install (But with 25second install time)?Trevor Boyd Smith2009-04-30T12:35:56Z2009-04-30T12:35:56Z<p>My vote: 30MB + 25 second unpacking.</p>
<p>Make sure to: </p>
<ul>
<li><strong>Give the user feedback on how much time left</strong> by implementing a <strong>progress bar</strong> ( or something similar )</li>
<li><strong>Entertain the user</strong> with something visual </li>
</ul>
<p>How to entertain the user:</p>
<ul>
<li>During the progress bar, play a slide show of <strong>3 or 4 slides demonstrating all the cool features of your app</strong></li>
</ul>
<p>p.s. I got this idea from Matlab's installation process. Matlab takes like 20 minutes to install... so they have a slide show with cool pictures and they tell you about new features. It keeps you entertained for like 5 minutes, but unfortunately the slideshow cycles and then you leave to go do something else. I think it would be better if they had made a longer slideshow.</p>
http://stackoverflow.com/questions/788903/valid-use-of-goto-for-error-management-in-c/795030#7950300Answer by Trevor Boyd Smith for Valid use of goto for error management in C?Trevor Boyd Smith2009-04-27T19:53:49Z2009-04-27T19:53:49Z<p><strong>I personally am a follower of the "The Power of Ten - 10 Rules for Writing Safety Critical Code".</strong> </p>
<p>I will include a small snippet from that text that illustrates what I believe to be a good idea about goto.</p>
<p><hr /></p>
<p><strong>Rule: Restrict all code to very simple control flow constructs – do not use goto
statements, setjmp or longjmp constructs, and direct or indirect recursion.</strong></p>
<p><strong>Rationale: Simpler control flow translates into stronger capabilities for verification
and often results in improved code clarity.</strong> The banishment of recursion is perhaps the
biggest surprise here. Without recursion, though, we are guaranteed to have an
acyclic function call graph, which can be exploited by code analyzers, and can
directly help to prove that all executions that should be bounded are in fact bounded.
(Note that this rule does not require that all functions have a single point of return –
although this often also simplifies control flow. There are enough cases, though,
where an early error return is the simpler solution.)</p>
<p><hr /></p>
<p>Banishing the use of goto <strong>seems bad</strong> but:</p>
<p><strong>If the rules seem
Draconian at first,</strong> bear in mind that they are meant to make it possible to check code
where very literally your life may depend on its correctness: code that is used to control
the airplane that you fly on, the nuclear power plant a few miles from where you live, or
the spacecraft that carries astronauts into orbit. <strong>The rules act like the seat-belt in your car:
initially they are perhaps a little uncomfortable, but after a while their use becomes
second-nature and not using them becomes unimaginable.</strong></p>
http://stackoverflow.com/questions/789061/how-to-create-separate-library-for-include-in-c-eclipse/789442#7894422Answer by Trevor Boyd Smith for How to create separate library for include in C++/EclipseTrevor Boyd Smith2009-04-25T18:20:05Z2009-04-25T21:55:15Z<p>I assume you want to separate the library from your own project's source code... but you don't know how to build when the library is not in the same folder.</p>
<p><hr /></p>
<p>Assuming your library has precompiled *.lib and *.h files:</p>
<ol>
<li>Move the library source code to a separate directory</li>
<li>Menubar "project" </li>
<li>Menu "properties" will open a dialog box for all the project properties there will be a list on the left.</li>
<li>List item "C/C++ Build" will change the GUI and show you all the options for gcc's compiler/linker/assembler ( I never do assembly... so I never do anything with the assembler ). [1]</li>
<li>GCC C Compiler --> Directories: <br><img src="http://dirkraffel.files.wordpress.com/2008/06/screenshot-properties-for-test-1.png" width="279" height="200"></li>
<li>Green plus icon [2] --> Specify the path of your *.h files</li>
<li>Your compiler should now be happy ( but you will fail linking because the linker doesn't know what the actual definitions of each function are )</li>
<li>GCC C Linker --> Libraries: <br><img src="http://dirkraffel.files.wordpress.com/2008/06/screenshot-properties-for-test.png" width="279" height="200"></li>
<li>Library search path (-L) --> Green plus icon --> Specify the path of your *.lib files</li>
<li>Libraries (-l) --> Green plus icon --> Specify the name of each library you are using</li>
<li>Your linker should now be happy and your code should compile</li>
</ol>
<p>[Footnote - 1] The GUI C/C++ build pane is a wrapper for gcc's command line compiler/linker... it is just making it easier to use because it shows you everything visually.</p>
<p>[Footnote - 2] The '+' icon is what will tell the compiler where your libraries *.h include files are located. The compiler needs the *.h files to know what function prototypes your library has before it compiles.</p>
<p><hr /></p>
<p>Assuming you have the actual ( not compiled ) *.c and *.h:</p>
<ol>
<li>Do the same steps above except in step 7.</li>
<li>At step 7. you need to make sure the library's *.c files are seen by Eclipse's "managed make". If it doesn't see the source code then you need to specify where the source is so that it will compile it.</li>
</ol>
http://stackoverflow.com/questions/789278/differences-between-unix-and-windows-development/789784#7897841Answer by Trevor Boyd Smith for Differences between UNIX and Windows developmentTrevor Boyd Smith2009-04-25T21:42:21Z2009-04-25T21:42:21Z<p>Lots of people seem to be ignoring the original question of "Differences between UNIX and Windows development" and so I will talk a little about that.</p>
<p><hr /></p>
<p><strong>Regarding should I learn C#:</strong></p>
<p>I think you need to learn a language like C# [1] at some point. The question is not a matter of if you should learn it but when when you will learn it. </p>
<p><hr /></p>
<p><strong>Regarding alternative similar languages to C#:</strong></p>
<p>Java is another language that is very similar to C#. Java IMO is the father of C# and IMO I prefer Java.</p>
<p>I offer you a metaphor to explain my predilection towards Java. Java had this son C# who saw all the success of his father. The son got jealous and tried to do the same thing his father was doing.</p>
<p>In the this case, MS is the upstart son trying to upstage the older father. However the upstart C# is missing a couple of key things IMO: </p>
<ul>
<li>truly cross-platform</li>
<li>smaller library of tricks owning to the shorter lifespan of C# ( or as I like to call it a smaller box of pre-built legos )</li>
<li><strong>I prefer Java for the above two bullet points.</strong></li>
</ul>
<p>[1 - footnote ] When I say "a language like C#" I am referring to the fact that there are other languages with similar features. Specifically features like: garbage collection, 100% object oriented from the start ( vs C++ hacking in OO ), built in xml-type-documentation ( think of javadoc ) and flexible to do many different things.</p>
<p><hr /></p>
<p><strong>Regarding should I learn .NET:</strong></p>
<p>I have only done a small/intermediate amount of C# but from that small amount I noticed that .NET is pretty much required when you do anything C#. ( I understand that C# is very very incestuous with .NET and hard to peel apart. ) The way I understand it and I may be wrong... most/all of C#'s standard main library's are C# and therefore you need to have .NET if you are doing C#.</p>
<p><hr /></p>
<p><strong>Back to the original question "Differences between UNIX and Windows development":</strong></p>
<ul>
<li><strong>Windows</strong> development is not as diverse IMO... there is only <strong>one development environment</strong> and that environment is MS compiler and MS IDE both packaged as one in their <strong>Visual Studio product line</strong>.</li>
<li><strong>Windows</strong> development focuses on <strong>GUI driven</strong> tools.</li>
<li><strong>Linux</strong> development is more diverse with hundreds of compilers/text editors/IDEs/etc. ( I say it is diverse but in reality the <strong>majority of Linux development</strong> is actually very similar <strong>using a collection of common tools: GCC/GDB/GREP/FIND/VIM/EMACS/CTAGS/CSCOPE</strong> and some source repository of choice ).</li>
<li><strong>Linux</strong> development focuses on <strong>command-line-interface driven</strong> tools.</li>
</ul>
http://stackoverflow.com/questions/771679/which-job-c-or-asp-net-c/773057#7730571Answer by Trevor Boyd Smith for Which job? C or ASP.NET/C#?Trevor Boyd Smith2009-04-21T15:07:03Z2009-04-21T18:45:37Z<p>If you want to take the <strong>higher risk</strong> and <strong>more challenging job</strong>, I would suggest the <strong>C job.</strong></p>
<p>If you want to take something <strong>less risk</strong> and <strong>less challenge job</strong>, I would suggest taking the <strong>C#/ASP .NET job.</strong></p>
<p>I suggest skimming a short anecdote about my C programming experience that I wrote below</p>
<p>and </p>
<p>definitely read:</p>
<ul>
<li><a href="http://stackoverflow.com/questions/296/should-i-learn-c">Should I learn C</a></li>
<li><a href="http://stackoverflow.com/questions/482574/whats-the-advantage-of-using-c-over-c-or-is-there-one">whats-the-advantage-of-using-c-over-c-or-is-there-one</a></li>
<li><a href="http://stackoverflow.com/questions/418914/why-is-c-so-fast-and-why-arent-other-languages-as-fast-or-faster">why-is-c-so-fast-and-why-arent-other-languages-as-fast-or-faster</a></li>
<li><a href="http://stackoverflow.com/questions/24891/c-memory-management">c-memory-management</a></li>
</ul>
<p><hr /></p>
<p>For the past 3 years I have been doing C only development as an Electrical Engineer and I have found the experience to be invaluable!</p>
<p>As a C programmer you will find yourself:</p>
<ul>
<li>coding for performance and designing algorithms</li>
<li>implementing lots of low level building blocks that are taken for granted in higher level languages</li>
<li>memory management</li>
</ul>
<p>RE - coding for performance:</p>
<p>After doing some coding for performance and developing algorithms, I will have to say that I am hooked. I find it really exciting and I find performance/algorithms to be one of the most challenging and interesting subjects.</p>
<p>RE - implementing lots of low level building blocks:</p>
<p>At first I was very annoyed at having to implement my own low level objects. But as time progressed I realized that it takes real skill to successfully implement something like a circular buffer that is fast and robust. In the future, if I need to implement some fancy data structure with lots of dynamic memory usage and pointers I will easily be able to. </p>
<p>Doing low level implementation work also makes using any of the higher level C++/Java work very very easy because once you have done low level work the high level stuff is easy.</p>
<p>RE - memory management:</p>
<p>I almost forgot to mention this because in C you are forced to make decisions about memory every couple of seconds... and you don't even realize it after a while. Basically this is probably one of the best parts of C because it forces you to think about how you are using memory always and as a result you become much much more proficient in using memory.</p>
<p><hr /></p>
<p>I consider performance/algorithms/low-level-building blocks to be more interesting and challenging than the higher level languages.</p>
<p>To explain my opinion of higher level languages using metaphor:</p>
<ul>
<li>All my experience using higher level C++/Java has been <strong>less challenging</strong> and <strong>less interesting</strong> because <strong>I feel like a child who is given a box of Legos to build something with.</strong> </li>
<li>You can build many things with Legos and they can be very impressive... but you are <strong>restricted to the tools in your Lego box.</strong> </li>
<li>The resultant output sometimes <strong>has a tendency to look similar to other Lego projects.</strong> </li>
<li>The process of building your Lego output is not as challenging as building your own Lego pieces and then building your project from your own pieces. </li>
</ul>
<p>( Obligatory warning about metaphors and how they are useful for getting a point across but not for completely explaining things. )</p>
http://stackoverflow.com/questions/765228/32bit-int-32bit-int-64-bit-int/765334#7653340Answer by Trevor Boyd Smith for 32bit int * 32bit int = 64 bit int?Trevor Boyd Smith2009-04-19T12:29:33Z2009-04-19T12:29:33Z<p><strong>Given two numbers a,b and each number uses len_a and len_b bits.</strong></p>
<p><strong>Your output datatype needs at least: len_a and len_b bits.</strong></p>
<p>In your above code, you have two 31 bit numbers ( because INT_MAX - 1 = 0x7FFFFFFE uses 31 bits ) and you will need to typecast one of them to int64_t because it will do a 32 bit multiply and overflow before it casts to int64_t.</p>
<p><hr /></p>
<p>The number of bits needed for fixed point multiplication: </p>
<pre><code>len_output = howManyBits( a * b )
= len_a + len_b
</code></pre>
<p>A quick example to show the above rule in action:</p>
<pre><code>a = 7
len_a = 3
b = 7
len_b = 3
c = a * b
= 49 ( decimal )
= 0x31 ( hex )
len_c = howManyBits( 0x31 )
= 6
</code></pre>
<p>You can write a function to count bits. Or if you just want a quick sanity check to confirm this use something like Windows Calc that will convert the number into binary form and count the bits used.</p>
http://stackoverflow.com/questions/756545/a-question-about-function-pointer-in-c/757070#7570702Answer by Trevor Boyd Smith for A Question About Function Pointer In CTrevor Boyd Smith2009-04-16T16:56:49Z2009-04-16T16:56:49Z<p><strong>Whoever wrote that code snippet was trying to be too clever</strong>. In his mind, he probably thinks he is being a good programmer by making a clever "one-liner". <strong>In reality, he is making code that is less readable and is obnoxious to work with over the long term</strong> and should be rewritten in a more obvious form similar to Harper Shelby's code.</p>
<p>Remember the adage from Brian Kernighan:</p>
<blockquote>
<p>Debugging is twice as hard as writing
the code in the first place.
Therefore, if you write the code as
cleverly as possible, you are, by
definition, not smart enough to debug
it.</p>
</blockquote>
<p><hr /></p>
<p>I do lots of performance critical coding with hard real time deadlines... and I have still not seen a place where a dense one-liner is appropriate. </p>
<p>I have even messed around with compiling and checking the asm to see if the one-liner has a better compiled asm implementation but have never found the one-liner to be worth it.</p>
http://stackoverflow.com/questions/725138/how-to-detect-strict-aliasing-at-compile-time/725803#725803-1Answer by Trevor Boyd Smith for How to detect 'strict aliasing' at compile time?Trevor Boyd Smith2009-04-07T13:48:06Z2009-04-09T14:43:54Z<p>To the best of my knowledge, there are no preprocessor directives for detecting strict aliasing. </p>
<p>If you are using gcc's "-Wall" then the compiler will warn you about code that may break the strict aliasing rule.</p>
<blockquote>
<p><code>-Wstrict-aliasing</code> --- This option is only active when ‘-fstrict-aliasing’ is
active. It warns about code which
might break the strict aliasing rules
that the compiler is using for
optimization. The warning does not
catch all cases, but does attempt to
catch the more common pitfalls. It is
included in ‘-Wall’. It is equivalent
to ‘-Wstrict-aliasing=3’</p>
</blockquote>
<p>If the code you are working on is critical then you can disable <code>-fstring-aliasing</code> in gcc. Or if you don't want to disable strict aliasing, I suggest looking at the asm output to make sure the compiler isn't doing dangerous optimizations that you don't want.</p>
<p><hr /></p>
<p>As an aside, akauppi said in the comments:</p>
<blockquote>
<p>'restrict' enables strict aliasing
optimizations for particular pointers.</p>
</blockquote>
<p>The restrict keyword does not "enable ... optimizations" directly but rather it gives the compiler more information and that extra information indirectly helps the compiler determine if it can apply specific optimization techniques. </p>
<p>A good explanation of the restrict keyword from <a href="http://wisconsin.cern.ch/ROD/ti%5Fdocuments/spru187k.pdf" rel="nofollow">TI's DSP compiler documentation</a>:</p>
<p>To help the compiler determine memory dependencies, you can qualify a
pointer, reference, or array with the restrict keyword. The restrict keyword is
a type qualifier that may be applied to pointers, references, and arrays. Its use
represents a guarantee by the programmer that within the scope of the pointer
declaration the object pointed to can be accessed only by that pointer. Any
violation of this guarantee renders the program undefined. This practice helps
the compiler optimize certain sections of code because aliasing information
can be more easily determined.</p>
http://stackoverflow.com/questions/224090/is-this-a-bug-in-gdb-does-someone-know-how-to-fix-it/224098#224098Comment by Trevor Boyd Smith on Is this a bug in gdb ? Does someone know how to fix it ?Trevor Boyd Smith2009-10-13T13:04:07Z2009-10-13T13:04:07Zyou answer is "general advice" and is not addressing the specific issue.http://stackoverflow.com/questions/1390937/how-do-you-manually-install-the-eclipse-cdt-plugin-from-an-archive-zip-on-ubuntu/1479422#1479422Comment by Trevor Boyd Smith on How do you manually install the eclipse-CDT plugin from an archive/zip on ubuntu?Trevor Boyd Smith2009-09-28T14:23:06Z2009-09-28T14:23:06Zhave you tried this and seen it work? Where is this mentioned in Eclipse documentation?http://stackoverflow.com/questions/800219/qt-vs-wpf-net/800307#800307Comment by Trevor Boyd Smith on Qt vs WPF/.NETTrevor Boyd Smith2009-09-08T15:18:50Z2009-09-08T15:18:50ZPlease note as of 08SEP2009: the accepted answer here has +7. Where as the answer by Alan has +19.http://stackoverflow.com/questions/800219/qt-vs-wpf-net/800307#800307Comment by Trevor Boyd Smith on Qt vs WPF/.NETTrevor Boyd Smith2009-09-08T15:16:14Z2009-09-08T15:16:14Z 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.http://stackoverflow.com/questions/800219/qt-vs-wpf-net/800307#800307Comment by Trevor Boyd Smith on Qt vs WPF/.NETTrevor Boyd Smith2009-09-08T15:12:44Z2009-09-08T15:12:44ZYour 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. http://stackoverflow.com/questions/1368534/qt-question-why-does-qt-use-its-own-make-tool-qmake/1368577#1368577Comment by Trevor Boyd Smith on QT question: Why does QT use it's own make tool, qmake?Trevor Boyd Smith2009-09-02T16:14:32Z2009-09-02T16:14:32ZRE "QMake does not call g++/gcc directly": So QT doesn't use a standard C++ compiler like gcc? What compiler does it use?http://stackoverflow.com/questions/1048728/most-important-feature-in-visual-studio-2010/1341013#1341013Comment by Trevor Boyd Smith on Most important feature in Visual Studio 2010Trevor Boyd Smith2009-08-27T13:22:31Z2009-08-27T13:22:31Zsharepoint... i'll use a wiki any day over share point.http://stackoverflow.com/questions/1256755/what-are-the-easiest-best-methods-for-managing-your-ctags-tag-files/1259993#1259993Comment by Trevor Boyd Smith on What are the easiest/best methods for managing your ctags tag file(s)?Trevor Boyd Smith2009-08-11T17:51:44Z2009-08-11T17:51:44ZI 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?http://stackoverflow.com/questions/921471/why-java-people-frequently-consume-exception-silentlyComment by Trevor Boyd Smith on Why java people frequently consume exception silently ?Trevor Boyd Smith2009-06-11T15:39:31Z2009-06-11T15:39:31ZException 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.http://stackoverflow.com/questions/132241/hidden-features-of-c/155726#155726Comment by Trevor Boyd Smith on Hidden features of CTrevor Boyd Smith2009-06-11T13:59:22Z2009-06-11T13:59:22Z@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).http://stackoverflow.com/questions/132241/hidden-features-of-c/132274#132274Comment by Trevor Boyd Smith on Hidden features of CTrevor Boyd Smith2009-06-11T13:52:52Z2009-06-11T13:52:52Z@ComSubVie, please meet my Fist-of-death (<a href="http://en.wikipedia.org/wiki/Alice_(Dilbert_character)#Alice.27s_violent_nature" rel="nofollow">en.wikipedia.org/wiki/…</a>)http://stackoverflow.com/questions/132241/hidden-features-of-c/132274#132274Comment by Trevor Boyd Smith on Hidden features of CTrevor Boyd Smith2009-06-11T13:50:55Z2009-06-11T13:50:55Z@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?http://stackoverflow.com/questions/132241/hidden-features-of-c/132509#132509Comment by Trevor Boyd Smith on Hidden features of CTrevor Boyd Smith2009-06-11T13:38:18Z2009-06-11T13:38:18Z@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.http://stackoverflow.com/questions/132241/hidden-features-of-c/132509#132509Comment by Trevor Boyd Smith on Hidden features of CTrevor Boyd Smith2009-06-11T13:35:33Z2009-06-11T13:35:33Z@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.http://stackoverflow.com/questions/975371/c0x-performance-improvements/975430#975430Comment by Trevor Boyd Smith on C++0x performance improvementsTrevor Boyd Smith2009-06-11T11:26:10Z2009-06-11T11:26:10ZMore keywords???! We already have volatile, unsigned, restrict, static, const, Register... am I missing any?