User Zing- - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T20:09:29Z http://stackoverflow.com/feeds/user/8883 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/97987/switch-vs-if-else 18 Switch vs if-else Zing- 2008-09-18T23:28:23Z 2009-11-23T13:50:48Z <p>What's the best practice for switch vs if for a 30 unsigned enumerations where about 10 have an expected action (that presently is the same action). Performance and space need to be considered but are not critical. I've abstracted the snippet so don't hate me for the naming conventions :p</p> <pre><code>// numError is an error enumeration type, with 0 being the non-error case // fire_special_event() is a stub method for the shared processing switch (numError) { ERROR_01 : // intentional fall-through ERROR_07 : // intentional fall-through ERROR_0A : // intentional fall-through ERROR_10 : // intentional fall-through ERROR_15 : // intentional fall-through ERROR_16 : // intentional fall-through ERROR_20 : { fire_special_event(); } break; default: { // error codes that require no additional action } break; } </code></pre> <p>versus an if statement</p> <pre><code>if ((ERROR_01 == numError) || (ERROR_07 == numError) || (ERROR_0A == numError) || (ERROR_10 == numError) || (ERROR_15 == numError) || (ERROR_16 == numError) || (ERROR_20 == numError)) { fire_special_event(); } </code></pre> http://stackoverflow.com/questions/65820/unit-testing-c-code/67718#67718 3 Answer by Zing- for Unit Testing C Code Zing- 2008-09-15T22:47:08Z 2009-11-19T09:48:28Z <p>I use <a href="http://cxxtest.tigris.org/" rel="nofollow">CxxTest</a> for an embedded c/c++ environment (primarily C++). </p> <p>I prefer CxxTest because it has a perl/python script to build the test runner. After a small slope to get it setup (smaller still since you don't have to write the test runner), it's pretty easy to use (includes samples and useful documentation). The most work was setting up the 'hardware' the code accesses so I could unit/module test effectively. After that it's easy to add new unit test cases.</p> <p>As mentioned previously it is a C/C++ unit test framework. So you will need a C++ compiler.</p> <p><a href="http://cxxtest.sourceforge.net/guide.html" rel="nofollow">CxxTest User Guide</a> <a href="http://cxxtest.com/index.php?title=Main%5FPage" rel="nofollow">CxxTest Wiki</a></p> http://stackoverflow.com/questions/191757/c-concatenate-string-and-int/192821#192821 1 Answer by Zing- for C++ concatenate string and int Zing- 2008-10-10T19:53:37Z 2008-10-13T16:50:22Z <pre><code>#include &lt;sstream&gt; template &lt;class T&gt; inline std::string to_string (const T&amp; t) { std::stringstream ss; ss &lt;&lt; t; return ss.str(); } </code></pre> <p>Then your usage would look something like this</p> <pre><code> std::string szName = "John"; int numAge = 23; szName += to_string&lt;int&gt;(numAge); cout &lt;&lt; szName &lt;&lt; endl; </code></pre> <p><a href="http://notfaq.wordpress.com/2006/08/30/c-convert-int-to-string/" rel="nofollow">Googled</a> [and tested :p ]</p> http://stackoverflow.com/questions/182112/what-are-some-funny-loading-statements-to-keep-users-amused/185366#185366 0 Answer by Zing- for What are some funny loading statements to keep users amused? Zing- 2008-10-08T23:36:27Z 2008-10-08T23:36:27Z <p>Next year the government will start deporting all of the weird old people.</p> <p>I started crying when I thought of you.</p> <p>Run, my friend, RUN !!!</p> http://stackoverflow.com/questions/182112/what-are-some-funny-loading-statements-to-keep-users-amused/185352#185352 15 Answer by Zing- for What are some funny loading statements to keep users amused? Zing- 2008-10-08T23:29:08Z 2008-10-08T23:29:08Z <p>Who is General Failure and why is he reading my hard disk?</p> http://stackoverflow.com/questions/182112/what-are-some-funny-loading-statements-to-keep-users-amused/185341#185341 0 Answer by Zing- for What are some funny loading statements to keep users amused? Zing- 2008-10-08T23:25:42Z 2008-10-08T23:25:42Z <p>We have enough youth, how about a fountain of SMART?</p> http://stackoverflow.com/questions/182112/what-are-some-funny-loading-statements-to-keep-users-amused/185339#185339 5 Answer by Zing- for What are some funny loading statements to keep users amused? Zing- 2008-10-08T23:24:53Z 2008-10-08T23:24:53Z <p>Very funny Scotty. Now beam down my clothes.</p> http://stackoverflow.com/questions/182112/what-are-some-funny-loading-statements-to-keep-users-amused/185333#185333 0 Answer by Zing- for What are some funny loading statements to keep users amused? Zing- 2008-10-08T23:22:27Z 2008-10-08T23:22:27Z <p>The world is coming to an end. Please log off.</p> http://stackoverflow.com/questions/182112/what-are-some-funny-loading-statements-to-keep-users-amused/185330#185330 0 Answer by Zing- for What are some funny loading statements to keep users amused? Zing- 2008-10-08T23:20:45Z 2008-10-08T23:20:45Z <p>Time flies when you don't know what you're doing.</p> http://stackoverflow.com/questions/182112/what-are-some-funny-loading-statements-to-keep-users-amused/185328#185328 1 Answer by Zing- for What are some funny loading statements to keep users amused? Zing- 2008-10-08T23:20:05Z 2008-10-08T23:20:05Z <p>If it's a Macintosh; it's got an excuse.</p> http://stackoverflow.com/questions/182112/what-are-some-funny-loading-statements-to-keep-users-amused/185324#185324 0 Answer by Zing- for What are some funny loading statements to keep users amused? Zing- 2008-10-08T23:19:05Z 2008-10-08T23:19:05Z <p>Wouldn't it be nice if there were an Escape key for all of our problems?</p> http://stackoverflow.com/questions/120957/c-usage-in-embedded-systems/130459#130459 2 Answer by Zing- for C++ usage in embedded systems Zing- 2008-09-24T22:57:25Z 2008-09-24T22:57:25Z <p>It's an interesting read for the <a href="http://www.caravan.net/ec2plus/rationale.html" rel="nofollow">Rationale</a> on the early <a href="http://www.caravan.net/ec2plus/index.html" rel="nofollow">Embedded C++ standrard</a></p> <p>See this <a href="http://www.embedded.com/97/feat9712.htm" rel="nofollow">article</a> on EC++ as well.</p> <p>The Embedded C++ std was a proper subset of C++, i.e. it has no additions. The following language features were removed:</p> <ul> <li>Multiple inheritance </li> <li>Virtual base classes</li> <li>Run-time type information (typeid)</li> <li>New style casts (static_cast, dynamic_cast, reinterpret_cast and const_cast) </li> <li>The mutable type qualifier </li> <li>Namespaces </li> <li>Exceptions </li> <li>Templates</li> </ul> <p>It's noted on the <a href="http://en.wikipedia.org/wiki/Embedded_C%2B%2B" rel="nofollow">wiki page</a> that Bjarne Stroustrup says (of the EC++ std), "To the best of my knowledge EC++ is dead (2004), and if it isn't it ought to be." Stroustrup goes on to recommend the <a href="http://www.research.att.com/~bs/JSF-AV-rules.pdf" rel="nofollow">document</a> referenced by Prakash's answer.</p> http://stackoverflow.com/questions/124153/applying-for-a-programming-position-include-my-salary-requirements/124341#124341 1 Answer by Zing- for Applying for a programming position--include my Salary Requirements? Zing- 2008-09-23T22:34:13Z 2008-09-23T22:40:03Z <p><a href="http://books.google.com/books?id=w6rEcrVnNHkC&amp;dq=fearless+interviewing&amp;pg=PP1&amp;ots=EbW_wFzj1U&amp;sig=RbIpi0OstQO2giE26mWMo07Fh0c&amp;hl=en&amp;sa=X&amp;oi=book_result&amp;resnum=1&amp;ct=result" rel="nofollow">Fearless Interviewing</a></p> <p>You should have an idea of what the position is worth (and what you want). If not, get a description of the position and find it on a salary site like <a href="http://swz.salary.com/" rel="nofollow">salary.com</a></p> <p>You should postpone salary negotiation as long as possible, and do your best to get a range from them first. Example: if/when asked, your initial response can be something like as good or better then someone of my skill in this market (polish it up and put it in your own words, yada yada yada).</p> <p>If pressed for what you want, then give a range based on the research you have done and what you want to achieve.</p> <p>Dealing with recruiters is a bit different since they are at least a little bit on your side. You can be more frank about what you want, and they should know the range on the positions they are trying to fill.</p> <p>The book describes this better (and I don't have my notes with me). </p> <p>Keep in mind that most of time, the people interviewing you won't be part of your salary negotiation. So the first step for you is to establish that you are the best candidate for the job... then you can talk about salary.</p> http://stackoverflow.com/questions/62946/misra-standard-for-embedded-software/67895#67895 1 Answer by Zing- for Misra standard for embedded software. Zing- 2008-09-15T23:19:53Z 2008-09-15T23:19:53Z <p>I have used a commercial tool called <a href="http://www.programmingresearch.com/QAC_MAIN.html" rel="nofollow">QAC</a>. The tool is able to enforce <a href="http://www.programmingresearch.com/QAMISRA.html" rel="nofollow">MISRA</a> </p> <p>It has a command-line interface, so you can set it up to run from a automated build environment. The rules to be applied are configurable, but expect to have someone spending some time setting it u. The MISRA enforcement is pretty straightforward and worked well enough. I was told (and this is just 3rd hand) that this is one of the tools some agencies (such as the FDA) use to evaluate code. Like most static analysis tools there is noise (false positives) to deal with. The last time I used it, it didn't have a good means to mark/stop a false positive from occurring again (without changing the code it was complaining about).</p> <p>I suspect a junior engineer will take up to a week (4-5 days) to get it setup (assuming they are determined to get it working as you want).</p> <p>On a side note, other commercial static analysis tools likely have MISRA enforcement as well. Reportedly (per their sales rep), <a href="http://www.klocwork.com/company/releases/KlocworkDebutsSourceCodeCheckerCommunity.asp" rel="nofollow">Klocwork</a> does.</p> http://stackoverflow.com/questions/185378/regular-expression-to-match-start-of-filename-and-filename-extension/185397#185397 Comment by Zing- on Regular expression to match start of filename and filename extension Zing- 2008-10-08T23:59:19Z 2008-10-08T23:59:19Z Also, how would you make it case-insensitive? http://stackoverflow.com/questions/185378/regular-expression-to-match-start-of-filename-and-filename-extension/185387#185387 Comment by Zing- on Regular expression to match start of filename and filename extension Zing- 2008-10-08T23:58:20Z 2008-10-08T23:58:20Z *err has Rob Howard pointed out that is http://stackoverflow.com/questions/185378/regular-expression-to-match-start-of-filename-and-filename-extension/185387#185387 Comment by Zing- on Regular expression to match start of filename and filename extension Zing- 2008-10-08T23:57:35Z 2008-10-08T23:57:35Z looks like a Perl solution for a question tagged python... but I am not a python expert :p and as jobscry pointed out your solution is case-sensitive. http://stackoverflow.com/questions/185378/regular-expression-to-match-start-of-filename-and-filename-extension/185397#185397 Comment by Zing- on Regular expression to match start of filename and filename extension Zing- 2008-10-08T23:55:59Z 2008-10-08T23:55:59Z 1. you don't have to specify start of line for python regular expression match? 2. * is zero or more match (i.e. so Run.py would be acceptable) http://stackoverflow.com/questions/97987/switch-vs-if-else/98052#98052 Comment by Zing- on Switch vs if-else Zing- 2008-09-18T23:48:53Z 2008-09-18T23:48:53Z There are about 30 errors total. 10 require the special action, so I am using the default for the ~20 errors that do not require an action...