User Zing- - Stack Overflowmost recent 30 from stackoverflow.com2009-12-03T20:09:29Zhttp://stackoverflow.com/feeds/user/8883http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/97987/switch-vs-if-else18Switch vs if-elseZing-2008-09-18T23:28:23Z2009-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#677183Answer by Zing- for Unit Testing C CodeZing-2008-09-15T22:47:08Z2009-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#1928211Answer by Zing- for C++ concatenate string and intZing-2008-10-10T19:53:37Z2008-10-13T16:50:22Z<pre><code>#include <sstream>
template <class T>
inline std::string to_string (const T& t)
{
std::stringstream ss;
ss << 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<int>(numAge);
cout << szName << 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#1853660Answer by Zing- for What are some funny loading statements to keep users amused?Zing-2008-10-08T23:36:27Z2008-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#18535215Answer by Zing- for What are some funny loading statements to keep users amused?Zing-2008-10-08T23:29:08Z2008-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#1853410Answer by Zing- for What are some funny loading statements to keep users amused?Zing-2008-10-08T23:25:42Z2008-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#1853395Answer by Zing- for What are some funny loading statements to keep users amused?Zing-2008-10-08T23:24:53Z2008-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#1853330Answer by Zing- for What are some funny loading statements to keep users amused?Zing-2008-10-08T23:22:27Z2008-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#1853300Answer by Zing- for What are some funny loading statements to keep users amused?Zing-2008-10-08T23:20:45Z2008-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#1853281Answer by Zing- for What are some funny loading statements to keep users amused?Zing-2008-10-08T23:20:05Z2008-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#1853240Answer by Zing- for What are some funny loading statements to keep users amused?Zing-2008-10-08T23:19:05Z2008-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#1304592Answer by Zing- for C++ usage in embedded systemsZing-2008-09-24T22:57:25Z2008-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#1243411Answer by Zing- for Applying for a programming position--include my Salary Requirements?Zing-2008-09-23T22:34:13Z2008-09-23T22:40:03Z<p><a href="http://books.google.com/books?id=w6rEcrVnNHkC&dq=fearless+interviewing&pg=PP1&ots=EbW_wFzj1U&sig=RbIpi0OstQO2giE26mWMo07Fh0c&hl=en&sa=X&oi=book_result&resnum=1&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#678951Answer by Zing- for Misra standard for embedded software.Zing-2008-09-15T23:19:53Z2008-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#185397Comment by Zing- on Regular expression to match start of filename and filename extensionZing-2008-10-08T23:59:19Z2008-10-08T23:59:19ZAlso, how would you make it case-insensitive?http://stackoverflow.com/questions/185378/regular-expression-to-match-start-of-filename-and-filename-extension/185387#185387Comment by Zing- on Regular expression to match start of filename and filename extensionZing-2008-10-08T23:58:20Z2008-10-08T23:58:20Z*err has Rob Howard pointed out that ishttp://stackoverflow.com/questions/185378/regular-expression-to-match-start-of-filename-and-filename-extension/185387#185387Comment by Zing- on Regular expression to match start of filename and filename extensionZing-2008-10-08T23:57:35Z2008-10-08T23:57:35Zlooks 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#185397Comment by Zing- on Regular expression to match start of filename and filename extensionZing-2008-10-08T23:55:59Z2008-10-08T23:55:59Z1. 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#98052Comment by Zing- on Switch vs if-elseZing-2008-09-18T23:48:53Z2008-09-18T23:48:53ZThere 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...