User Nazgob - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T06:17:41Z http://stackoverflow.com/feeds/user/3579 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/375913/what-can-i-use-to-profile-c-code-in-linux/375930#375930 25 Answer by Nazgob for What can I use to profile C++ code in Linux? Nazgob 2008-12-17T20:34:45Z 2009-10-16T08:48:43Z <p>I assume you're using GCC. The standard solution would be to profile with <a href="http://www.cs.utah.edu/dept/old/texinfo/as/gprof%5Ftoc.html" rel="nofollow">gprof</a>.</p> <p>Be sure to add <code>-pg</code> to compilation before profiling:</p> <pre><code>cc -o myprog myprog.c utils.c -g -pg </code></pre> <p>I haven't tried it yet but I've heard good things about <a href="http://code.google.com/p/google-perftools/" rel="nofollow">google-perftools</a>. It is definitely worth a try.</p> <p>Related question <a href="http://stackoverflow.com/questions/56672/how-do-you-profile-your-code">here</a>.</p> <p>A few other buzzwords if <code>gprof</code> does not do the job for you: <a href="http://en.wikipedia.org/wiki/Valgrind" rel="nofollow">Valgrind</a>, Intel <a href="http://en.wikipedia.org/wiki/VTune" rel="nofollow">VTune</a>, Sun <a href="http://en.wikipedia.org/wiki/DTrace" rel="nofollow">DTrace</a>.</p> http://stackoverflow.com/questions/537374/sunstudio-c-compiler-pragma-to-disable-warnings/1435049#1435049 0 Answer by Nazgob for SunStudio C++ compiler pragma to disable warnings? Nazgob 2009-09-16T19:39:50Z 2009-09-16T19:39:50Z <p>add -w to your $CC or whatever var you use.</p> http://stackoverflow.com/questions/1425912/google-protocol-buffers-and-http 2 Google Protocol Buffers and HTTP Nazgob 2009-09-15T08:38:01Z 2009-09-15T14:37:59Z <p>Hello, I'm refactoring legacy C++ system to SOA using gSoap. We have some performance issues (very big XMLs) so my lead asked me to take a look at protocol buffers. I did, and it looks very cool (We need C++ and Java support). However protocol buffers are solution just for serialization and now I need to send it to Java front-end. What should I use from C++ and Java perspective to send those serialized stuff over HTTP (just internal network)?</p> <p>PS. Another guy tries to speed-up our gSoap solution, I'm interested in protocol buffers only.</p> http://stackoverflow.com/questions/229069/dead-code-detection-in-legacy-c-c-project 12 Dead code detection in legacy C/C++ project Nazgob 2008-10-23T09:18:25Z 2009-07-16T20:55:02Z <p>How would you go about dead code detection in C/C++ code? I have a pretty large code base to work with and at least 10-15% is dead code. Is there any Unix based tool to identify this areas? Some pieces of code still use a lot of preprocessor, can automated process handle that?</p> http://stackoverflow.com/questions/623419/what-does-software-engineer-in-test-do 2 What does Software Engineer in Test do? Nazgob 2009-03-08T11:17:19Z 2009-05-06T23:30:16Z <p>Some good software companies like Microsoft or Google look for Software Engineers in testing positions. They expect excellent coding skills in C++ / Java (pick one) + some scripting languages and CS degree. Is this a position for software developer or just re-branded QA ? I'm a software developer and I like refactoring, mocking and unit-testing -> can this be something for me? Of course I'll ask them as soon as I apply but I was just wondering what kind of stuff QA Software Engineer do on a daily basis.</p> http://stackoverflow.com/questions/812409/how-to-design-my-classes-to-leverege-factory-and-be-extensible 0 How to design my classes to leverege factory and be extensible? Nazgob 2009-05-01T17:39:51Z 2009-05-01T20:03:39Z <p>My c++ SOA app has a concept of "session" that is used exchange data between services. In example its used for checking legality of some service A operations before executing session B which commits or rollback changes. Whatever.</p> <p>I have 2 types of session modes: normal and what-if. Going further, I have different session, session for legality, session for assign, session for commit etc. This is a main problem. Legality session can be what-if or real etc.</p> <p>How to fix that and avoid code duplication?</p> <p>I can make a <em>ISessionFactory</em> interface and have <em>WhatIfFactory</em> and <em>RealFactory</em> implement it. Then I could make a <em>ILegalitySession</em> and make <em>WhatIfLegalitySession</em> and <em>RealLegalitySession</em> implement it. Then my factories would return appropriate objects.</p> <p>It has 2 major problems. What if new mode will come? I will have to implement new factory and new classes for all sessions! What if new session type comes? I have to change both of factories... </p> <p>Perhaps resign from 2 hierarhies and have whatIf sessions "decorate" real session? How can I localize the change?</p> http://stackoverflow.com/questions/681746/2d-matrix-and-overloading-operator-ugly-syntax 2 2D matrix and overloading operator() / ugly syntax Nazgob 2009-03-25T14:07:29Z 2009-03-26T12:38:59Z <p>I'm using a 2D matrix in one of my projects. It's something like it is suggested at <a href="http://www.parashift.com/c%2B%2B-faq-lite/operator-overloading.html#faq-13.10" rel="nofollow">C++ FAQ Lite</a>.</p> <p>The neat thing is that you can use it like this:</p> <pre><code>int main() { Matrix m(10,10); m(5,8) = 106.15; std::cout &lt;&lt; m(5,8); ... } </code></pre> <p>Now, I have a graph composed of vertices and each vertex has a public (just for simplicity of the example) pointer to 2D matrix like above. Now I do have a pretty ugly syntax to access it.</p> <pre><code>(*sampleVertex.some2DTable)(0,0) = 0; //bad sampleVertex.some2DTable-&gt;operator()(0,0) = 0; //even worse... </code></pre> <p>Probably I'm missing some syntactic sugar here due to my inexperience with operator overloading. Is there a better solution?</p> http://stackoverflow.com/questions/623062/why-was-googles-chrome-browser-written-almost-entirely-in-c-and-not-c-or-java/623494#623494 4 Answer by Nazgob for Why was Google's Chrome browser written almost entirely in C++ and not C# or Java? Nazgob 2009-03-08T12:20:54Z 2009-03-08T12:20:54Z <p>They do have top notch C++ engineers so they wanted to take advantage of it. Are there any popular browsers done in C#? I guess not so it would be hard to build a team with experience in both C# and browsers. And perhaps most important thing. C# is MS technology -> if MS is not using C# to write even calculator in Vista or their MS Office why their competitor would do that?</p> http://stackoverflow.com/questions/538856/itereting-hierarchy-of-nodes-visitor-and-composite 3 Itereting hierarchy of nodes - Visitor and Composite ? Nazgob 2009-02-11T21:20:57Z 2009-02-11T23:31:37Z <p>Let's imagine I have a collection of nodes that I use for my Renderer class later on. Then I have a Visitor class that can visit node or whole collection. It's simple because my collection of nodes it's simply a wrapper to the std::list with few extra methods.</p> <p>The problem is I'd like to have a tree like structure for nodes(instead of simple list) so a node can have a parent and n children. That would be handy as I'd like to be able to pass to my Renderer a node and render everything "below" that node. The answer probably is Composite.</p> <p>How can I use together Visitor and Composite? I've read that its often a good combo but my implementations look pretty bad... I'm missing sth.</p> http://stackoverflow.com/questions/519422/what-is-the-best-way-to-replace-or-substitute-if-else-if-else-trees-in-programs/519451#519451 1 Answer by Nazgob for What is the best way to replace or substitute if..else if..else trees in programs? Nazgob 2009-02-06T07:34:17Z 2009-02-06T07:34:17Z <p>In OO paradigm you could do it using good old <strong>polymorphism</strong>. Too big if - else structures or switch constructs are sometimes considered a smell in the code.</p> http://stackoverflow.com/questions/518669/young-people-using-emacs/518757#518757 1 Answer by Nazgob for Young people using Emacs? Nazgob 2009-02-06T01:23:13Z 2009-02-06T01:23:13Z <p>I'm 26 and I'm using VIM for several years now for C++ development. All my team mates use either VIM or Emacs (50% vs 50%, we have great flames from time to time), our lead is also using VIM. It's a best choice for us on Solaris. However for large MS APIs like DirectX I use VS... its sometimes pain to switch but it's much easier to tackle this kind of monster :)</p> http://stackoverflow.com/questions/500662/modelling-c-applications/500768#500768 0 Answer by Nazgob for Modelling C applications Nazgob 2009-02-01T13:14:02Z 2009-02-01T13:14:02Z <p>Whatever you like. It's not a standard but many devs use it and understand it. If it does help you to communicate with other people and document your work -> its for you. If it just takes too much time and you think it's not effective, drop it. Also, don't bother with all details, as long as it resembles UML and your team can work with it, it's fine.</p> <p>It's meant to help you, not waste you time.</p> http://stackoverflow.com/questions/500748/what-is-staticcase-operator-in-c/500750#500750 0 Answer by Nazgob for What is static_case operator in C++? Nazgob 2009-02-01T13:03:52Z 2009-02-01T13:03:52Z <p>Its good old C cast with a new C++ syntax similar to other C++ cast like dynamic_cast. The only advantage I know is just being consistent and also it's easy to grep it.</p> <p>CPP Ref: <a href="http://www.cppreference.com/wiki/keywords/static_cast" rel="nofollow">http://www.cppreference.com/wiki/keywords/static_cast</a></p> <p>Stroustrup on static_cast: <a href="http://www.research.att.com/~bs/bs_faq2.html#static-cast" rel="nofollow">http://www.research.att.com/~bs/bs_faq2.html#static-cast</a> </p> http://stackoverflow.com/questions/498651/goals-of-refactoring/498736#498736 0 Answer by Nazgob for Goals of refactoring? Nazgob 2009-01-31T12:24:47Z 2009-01-31T12:24:47Z <p>To reduce the cost of change.</p> http://stackoverflow.com/questions/486452/limiting-returned-record-from-sql-query-in-oracle 2 Limiting returned record from SQL query in Oracle Nazgob 2009-01-28T04:15:40Z 2009-01-28T04:47:44Z <p>One of apps I take care of in checking a Oracle DB table every x seconds to see if there are new data to process (other real-time app is populating it). Our new client business process forces our real-time up to populate this table with lots of records in a same time (say 10000) but just few times a day. Next time my app checks if there is anything to process it encounters 10000 records and tries to process that. It's not very well engineered and it just not scale good enough. Quick fix would be limit the number of record the app gets from Oracle, next time it will pick another 50 (or whatever) etc.</p> <p>How can I limit in Oracle SQL the number of returned records? Order matters!</p> <pre><code>select * from cool_table where date &gt;= to_date('200901010000', 'YYYYMMDDhh24mi') order by seq_nr, entry_dts; </code></pre> http://stackoverflow.com/questions/466827/warnings-and-sunstudio-c-compiler 0 Warnings and SunStudio C++ compiler Nazgob 2009-01-21T20:24:31Z 2009-01-21T21:13:03Z <p>I talked my team into turning on compiler warnings again. Some how all warnings (-w) were disabled (don't ask...). Most of them are obvious but one of them is really annoying. I get it from my date and time classes which are used in lots of places. Story is really simple. Time is subclass of Date and both of them have their operators defined. What can be wrong with that? Here's the warning I get:</p> <pre><code>Warning: ACTime::operator- hides the function ACDate::operator-(const ACDate&amp;) const. </code></pre> <p>Perhaps somebody can link me the docs describing what each of SunStudio C++ compiler warnings mean? I can't find this... Thanks!</p> http://stackoverflow.com/questions/379238/c-and-soap-how-to-start-well 2 C++ and SOAP -> how to start well Nazgob 2008-12-18T20:56:03Z 2008-12-31T02:00:26Z <p>My project is about to introduce SOAP. It's going to be used for C++ &lt;-> Java and C++ &lt;-> Flex communication. I'm responsible for refactoring our apps to take advantage of Java business rules engine and new Flex gui.</p> <p>What resources are must read for C++ SOAP? I've read W3 materials. We're probably be using gSOAP on Solaris boxes.</p> http://stackoverflow.com/questions/221185/how-to-run-c-c-in-a-unix-console-mac-terminal/221204#221204 5 Answer by Nazgob for How to run C/C++ in a Unix console/Mac terminal? Nazgob 2008-10-21T08:52:01Z 2008-12-17T20:49:07Z <p>Add following to get best warnings, you will not regret it. If you can, compile WISE (warning is error)</p> <pre><code>- Wall -pedantic -Weffc++ -Werror </code></pre> http://stackoverflow.com/questions/374239/why-doesnt-python-have-a-switch-statement/374290#374290 14 Answer by Nazgob for Why doesn't Python have a switch statement? Nazgob 2008-12-17T11:35:38Z 2008-12-17T20:25:20Z <p>Switch is a popular code smell in many OO languages (when you follow OO paradigm) and in most of cases it indicates that there should be polymorphic call there. When you're about to write a switch, stop for a minute and double check you design. Perhaps you can make a polymorphic call instead.</p> <p>Related question suggested in comments: <a href="http://stackoverflow.com/questions/126409/ways-to-eliminate-switch-in-code">http://stackoverflow.com/questions/126409/ways-to-eliminate-switch-in-code</a></p> <p>Article about switch and other similar stuff by Misko Hevery: <a href="http://misko.hevery.com/2008/12/08/clean-code-talks-inheritance-polymorphism-testing/" rel="nofollow">http://misko.hevery.com/2008/12/08/clean-code-talks-inheritance-polymorphism-testing/</a></p> <p>More about Switch Statements Smell: <a href="http://c2.com/cgi/wiki?SwitchStatementsSmell" rel="nofollow">http://c2.com/cgi/wiki?SwitchStatementsSmell</a></p> <p>//Edited after suggestions in comments</p> http://stackoverflow.com/questions/368899/why-do-i-need-staticcast/368950#368950 0 Answer by Nazgob for why do I need static_cast Nazgob 2008-12-15T16:37:40Z 2008-12-15T16:37:40Z <p>static_cast is a C++ style of cast. In C++ you should not cast in w C way like this:</p> <pre><code>(int)someDouble </code></pre> <p>but:</p> <pre><code>static_cast&lt;int&gt;someDouble </code></pre> <p>It's a matter of style, pragmatism(you can easy grep for "cast") and consistency(other casts in C++ have similar syntax).</p> http://stackoverflow.com/questions/220040/how-to-get-as-much-as-possible-from-dbx 1 how to get as much as possible from dbx Nazgob 2008-10-20T21:37:16Z 2008-12-10T01:14:24Z <p>I do TDD on a daily basis for my C++ development on Solaris10. It has greatly reduced the time I have to spend using my debugger but sometime this is the only option.</p> <p>DBX is pretty powerful but not that user friendly. Note that I'm talking about console DBX not the SunStudio GUI for DBX).</p> <p>What are the best productivity tips you can give for dbx C++ debugging?</p> <p>PS. Changing debugger is not an option.</p> http://stackoverflow.com/questions/348098/are-you-a-self-taught-programmer-or-did-you-take-a-programming-course/348149#348149 0 Answer by Nazgob for Are you a self taught programmer or did you take a programming course? Nazgob 2008-12-07T21:46:24Z 2008-12-07T21:46:24Z <p>I'm half-self taught :) I started my studies as an electrical engineering degree but then I had to chose a major and I decided that applied CS is the way to go. However more then half of my time at the university was hardcore electrical stuff like electrical machines, power engineering etc. It was hard but any technical topic is good for practising problem solving skills. Most of programming stuff I had to learn myself, except of C++ and Unix skills. Because of that, some cool areas like advanced algorithms are still to be discovered by me...</p> http://stackoverflow.com/questions/347793/c-areas-you-look-for-during-interview/348075#348075 1 Answer by Nazgob for C++ areas you look for during interview Nazgob 2008-12-07T21:01:29Z 2008-12-07T21:01:29Z <p>Give his a simple agile story to implement in C++. This is what I do at my company. The guy gets a simple (fake)interface to the db he/she has to implement, few unit tests that document the (initial)requirements and that's it. Tell the applicant that for this interview we are all one team, this will encourage him to ask question. Asking questions is important so you need to check this out. After he/she completes the task, change some requirement to see if the code scales or it's a legacy code already...</p> <p>During this kind of story you can check:</p> <ul> <li>basic and advanced C++</li> <li>use of STL</li> <li>use of Boost</li> <li>use of design patterns</li> <li>familiarity with interfaces</li> <li>familiarity with design principles</li> <li>unit testing and writing testable code</li> </ul> <p>I give a guy a laptop with prepared project in VS 2008 Express and I have an extra monitor set to close to actually see what the guy is doing and give tips, ask question etc. I did this style of interview over 10x and it's great.</p> <p>Remember: <strong>THEY HAVE TO WRITE CODE DURING INTERVIEW. PERIOD.</strong></p> http://stackoverflow.com/questions/347960/languages-used-for-high-profile-games/348056#348056 0 Answer by Nazgob for Languages used for high profile games Nazgob 2008-12-07T20:45:23Z 2008-12-07T20:45:23Z <p>C/C++ has 95% of the PC market, on mobile devices J2ME is pretty strong. For games scripting LUA and Python are pretty popular.</p> <p>Disney is doing some games with their free engine Panda3D, it's Python or C++. Perhaps worth a try if you don't know C++. <a href="http://panda3d.org/" rel="nofollow">Panda3D</a></p> <p>If you would like to start working on games then I would recommend [Game Institute][2]. These are in depth courses "from zero to hero". You can start with entry level C++ and then progress with DirectX, Physics, AI etc. I'm doing DirectX there, it's really good.</p> <p>[2]: <a href="http://www.gameinstitute.com/" rel="nofollow">http://www.gameinstitute.com/</a>"Game Institute"</p> http://stackoverflow.com/questions/292607/web-technology-for-a-first-small-web-project 2 Web technology for a first small web project Nazgob 2008-11-15T14:29:53Z 2008-12-07T20:27:10Z <p>I'm a C++ developer with basic Python skills. Here's the task, a friend of mine is running a small company and he asked me if I can make a website for him. I have no real deadline so I think it's a perfect opportunity to try sth new and do some web development.</p> <p>User has to be able to add photos, change texts ect.</p> <p>Do you think that Django would be an overkill for this kind of project? I have no experience with it. Perhaps I should try to customize some blog engine or Google Sites?</p> http://stackoverflow.com/questions/308450/netbeans-or-eclipse-for-c/308502#308502 5 Answer by Nazgob for Netbeans or Eclipse for C++? Nazgob 2008-11-21T11:36:47Z 2008-12-07T19:20:01Z <p>I'm using Netbeans from time to time on Solaris and the latest (6.5) version is pretty neat. It has all the features that you need, perhaps autocompletion could work better, but I have a really bad code base so it might be the result of it. Keep in mind that you need strong machine for that, if it's your PC it's ok but Netbeans on a remote server (like I tried) is really slow unless you have a decent hardware. There are few simple refactorings for C++ with nice preview option, definitely worth a try.</p> <p>You can get a whole Sun C++ pack from here: <a href="http://developers.sun.com/sunstudio/downloads/express/" rel="nofollow">http://developers.sun.com/sunstudio/downloads/express/</a></p> http://stackoverflow.com/questions/319168/ctags-best-practicies 2 ctags best practicies Nazgob 2008-11-25T22:47:36Z 2008-11-26T08:49:16Z <p>I'm working on +1M LOC C/C++ project on Solaris (remote, via VNC or SSH). I have a daily updated copy of source code on my local machine too (Windows, just for browsing code).</p> <p>I use VIM and ctags combo (on both Solaris and Windows) but I'm not happy with results / speed. What settings for ctags would you recommend? There are a lot of options what should be tagged and how. Should I use single tag file per project, per dir or perhaps just one for everything?</p> http://stackoverflow.com/questions/302736/how-much-null-checking-is-enough/302886#302886 3 Answer by Nazgob for How much null checking is enough? Nazgob 2008-11-19T18:31:50Z 2008-11-19T18:31:50Z <p>NULL checking in general is evil as it's add a small negative token to the code testability. With NULL checks everywhere you can't use "pass null" technique and it will hit you when unit testing. It's better to have unit test for the method than null check.</p> <p>Check out decent presentation on that issue and unit testing in general by Misko Hevery at <a href="http://www.youtube.com/watch?v=wEhu57pih5w&amp;feature=channel" rel="nofollow">http://www.youtube.com/watch?v=wEhu57pih5w&amp;feature=channel</a> </p> http://stackoverflow.com/questions/246293/c-dynamiccast-error-handling 6 c++ dynamic_cast error handling Nazgob 2008-10-29T10:04:36Z 2008-11-15T11:11:39Z <p>Is there any good practice related to dynamic_cast error handling (except not using it when you don't have to)? I'm wondering how should I go about NULL and bad_cast it can throw. Should I check for both? And if I catch bad_cast or detect NULL I probably can't recover anyway... For now, I'm using assert to check if dynamic_cast returned not NULL value. Would you accept this solution on a code review?</p> http://stackoverflow.com/questions/221218/embedding-flash-flex-component-into-java-app 2 Embedding Flash / Flex component into Java app Nazgob 2008-10-21T08:58:15Z 2008-11-09T15:45:56Z <p>I'm working on some Flex spike in my company. We are basically evaluating different scenarios etc. What solution would you recommend for embedding Flex components into Java app? Flex &lt;-> Java communication is not (yet...) an issue, just embedding swf into JFrame.</p> http://stackoverflow.com/questions/625990/are-there-any-reasons-not-to-use-visual-studio-6-for-c/626007#626007 Comment by Nazgob on Are there any reasons not to use Visual Studio 6 for C++? Nazgob 2009-03-09T12:50:34Z 2009-03-09T12:50:34Z any reference? in my case g++ is usually faster then vc++ compiler. http://stackoverflow.com/questions/623062/why-was-googles-chrome-browser-written-almost-entirely-in-c-and-not-c-or-java/623082#623082 Comment by Nazgob on Why was Google's Chrome browser written almost entirely in C++ and not C# or Java? Nazgob 2009-03-08T12:57:51Z 2009-03-08T12:57:51Z if MS is not using C# for their browser, Office or ever calculator in Vista why would Google use it? http://stackoverflow.com/questions/173955/what-makes-you-leave-the-job-after-two-years/174026#174026 Comment by Nazgob on What makes you leave the job after two years? Nazgob 2009-03-04T08:07:03Z 2009-03-04T08:07:03Z meetings -&gt; the practical alternative to actual work http://stackoverflow.com/questions/500748/what-is-staticcase-operator-in-c/500750#500750 Comment by Nazgob on What is static_case operator in C++? Nazgob 2009-02-02T01:29:01Z 2009-02-02T01:29:01Z There is no static_case AFAIK... I assumed it's a typo. http://stackoverflow.com/questions/500748/what-is-staticcase-operator-in-c Comment by Nazgob on What is static_case operator in C++? Nazgob 2009-02-01T13:10:59Z 2009-02-01T13:10:59Z sb plz correct a type in question topic and source code http://stackoverflow.com/questions/500748/what-is-staticcase-operator-in-c/500750#500750 Comment by Nazgob on What is static_case operator in C++? Nazgob 2009-02-01T13:09:11Z 2009-02-01T13:09:11Z Updated my response, check out the links but not really. It's just casting a type from one to other without any fancy features. http://stackoverflow.com/questions/498651/goals-of-refactoring/498739#498739 Comment by Nazgob on Goals of refactoring? Nazgob 2009-01-31T12:31:11Z 2009-01-31T12:31:11Z refactoring is changing code structure without changing behaviour. For that you need unit tests at least. if you don't test its just changing a code not refactoring. http://stackoverflow.com/questions/241602/what-non-technical-items-do-you-keep-on-your-desk/241732#241732 Comment by Nazgob on What non-technical items do you keep on your desk? Nazgob 2009-01-05T11:44:49Z 2009-01-05T11:44:49Z Saving roll! OMG, great! http://stackoverflow.com/questions/392788/code-golf-christmas-edition-how-to-print-out-a-christmas-tree-of-height-n/392942#392942 Comment by Nazgob on Code Golf Christmas Edition: How to print out a Christmas tree of height N Nazgob 2008-12-26T11:49:54Z 2008-12-26T11:49:54Z conio.h? nooo! :) http://stackoverflow.com/questions/378724/coping-with-rapidly-changing-technology-in-particular-microsoft/378750#378750 Comment by Nazgob on Coping with rapidly changing technology (in particular Microsoft) Nazgob 2008-12-18T20:48:56Z 2008-12-18T20:48:56Z get a life dude :) http://stackoverflow.com/questions/205744/what-appear-to-be-the-more-lucrative-programming-skills-at-the-moment/205835#205835 Comment by Nazgob on What appear to be the more lucrative programming skills at the moment? Nazgob 2008-12-17T20:52:29Z 2008-12-17T20:52:29Z Python on a 3rd place! Good :) http://stackoverflow.com/questions/375913/what-can-i-use-to-profile-c-code-in-linux Comment by Nazgob on What can I use to profile C++ code in Linux? Nazgob 2008-12-17T20:38:17Z 2008-12-17T20:38:17Z If you will provide more data about your development stack you might get better answers. There are profilers from Intel and Sun but you have to use their compilers. Is that an option? http://stackoverflow.com/questions/126409/ways-to-eliminate-switch-in-code/126455#126455 Comment by Nazgob on Ways to eliminate switch in code Nazgob 2008-12-17T19:41:33Z 2008-12-17T19:41:33Z I being bashed because of similar suggestion in <a href="http://stackoverflow.com/questions/374239/why-doesnt-python-have-a-switch-statement#374290" rel="nofollow" title="why doesnt python have a switch statement%23374290">stackoverflow.com/questions/374239/&hellip;</a> So many ppl don't believe in polymorphism :) Very good example. http://stackoverflow.com/questions/374239/why-doesnt-python-have-a-switch-statement/374290#374290 Comment by Nazgob on Why doesn't Python have a switch statement? Nazgob 2008-12-17T19:39:24Z 2008-12-17T19:39:24Z Ofc, it's not not a silver bullet. Switch is hint that deign MIGHT be wrong. Next problem is that somehow you need to inject proper object to make this polymorphic call. This is responsibility of a factory and sometimes you can move switch out of your business class to factory. http://stackoverflow.com/questions/374239/why-doesnt-python-have-a-switch-statement/374290#374290 Comment by Nazgob on Why doesn't Python have a switch statement? Nazgob 2008-12-17T19:37:47Z 2008-12-17T19:37:47Z Well, it's an alternative but it's also kinda bad. Shouldn't those functions under if-s or cases be object with some method? If you apply &quot;Extract Object&quot; refactoring on those cases you will be in position to eliminate switch and make polymorphic call.