User Bob - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T15:12:47Z http://stackoverflow.com/feeds/user/34467 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1246058/senior-programming-guru-who-cant-program-should-i-find-a-different-career/1246074#1246074 3 Answer by Bob for Senior programming 'guru' who can't program - should I find a different career? Bob 2009-08-07T17:41:48Z 2009-08-08T15:37:55Z <p>The question is: do you want to continue programming or find a new track?</p> <ul> <li>If you want to continue programming, you need to focus on your creativity and problem solving ability. I recommend a personal project to make an application from the start to end.</li> <li>If you want to get out of programming, I recommend becoming a Project Manager. You should start managing projects instead of working on them. You programming background will be an asset to you as a manager or programming projects, even if you don't write code.</li> </ul> http://stackoverflow.com/questions/1245463/how-do-you-become-a-programmer/1245586#1245586 1 Answer by Bob for How do you become a programmer? Bob 2009-08-07T15:55:24Z 2009-08-07T15:55:24Z <p>In order to be a writer, you write. In order to be a programmer, you program. Fancy degrees can help you get a foot in the door, but some of the best programmers don't have degrees in programming. In fact, programming has very little do with standard comp sci degrees from colleges. Just tell them to be a good programmer and that will create job opportunities.</p> http://stackoverflow.com/questions/368663/how-to-get-team-member-to-stop-interrupting/368674#368674 41 Answer by Bob for How to get team member to stop interrupting? Bob 2008-12-15T15:20:09Z 2008-12-15T15:20:09Z <p>Schedule a time for the two of you guys to talk. That will allow him to "save-up" and "write-down" his questions, which might allow him to think about some of them before asking. It will decrease the amount of time he destroys your train of thought, because you'll deal with the questions all at once. </p> <p>When you get a question that he shouldn't have asked, ask him to "answer it outloud" (to you) and then confirm that he already knew the answer. This will help build his confidence.</p> http://stackoverflow.com/questions/343927/what-is-a-software-engineer/343941#343941 0 Answer by Bob for What is a Software Engineer? Bob 2008-12-05T14:13:55Z 2008-12-05T14:13:55Z <p>I think people forget the engineering side of Computers. I'd do a definition that stresses the "building" side of being a Software Engineer.</p> <p>A Software Engineer is someone who applies engineering principles (design, planning, mathematics, etc.) to the activity of building software.</p> http://stackoverflow.com/questions/322069/sendkeys-in-vb6/322130#322130 0 Answer by Bob for Sendkeys in vb6 Bob 2008-11-26T20:58:57Z 2008-11-26T20:58:57Z <p>SendKeys should always be a last resort. </p> <p>The problem is really the focus. You have to set focus prior to each send. </p> <p>Just about everything can be completed via Scripting, so what are you trying to do?</p> http://stackoverflow.com/questions/321656/when-a-qt-widget-gets-focus/321691#321691 2 Answer by Bob for When a Qt widget gets focus Bob 2008-11-26T18:30:06Z 2008-11-26T18:30:06Z <p>I'd have to play with it, but just looking at the QT Documentation, there is a "focusInEvent". This is an event handler.</p> <p>Here's how you find information about.... Open up "QT Assistant". Go to the Index. Put in a "QLineEdit". There is a really useful link called "List of all members, including inherited members" on all the Widget pages. This list is great, because it even has the inherited stuff.</p> <p>I did a quick search for "Focus" and found all the stuff related to focus for this Widget.</p> http://stackoverflow.com/questions/317836/i-need-some-career-goals-for-the-next-year/317895#317895 4 Answer by Bob for I need some career "Goals" for the next year Bob 2008-11-25T16:12:40Z 2008-11-25T16:12:40Z <p>In some workplaces, goals are all about leadership (because managers don't understand writing code, nor does amount of code written directly translate into amount of work completed). </p> <p>Write a goal to "lead" a team or "mentor" others. Then.... you setup a semi-weekly session where you train other programmers in some of your job skills. You can even use a book as a guide. I like Scott Meyers' "Effective C++". It uses short chapters and you can easily cover one chapter in under 20 minutes. Even if you only have one other person there, it shows determination and working as part of a team. It sounds good on a review when you have to "prove" you completed the goal.</p> http://stackoverflow.com/questions/284753/nuggets-of-wisdom/317863#317863 17 Answer by Bob for Nuggets of wisdom? Bob 2008-11-25T16:04:26Z 2008-11-25T16:04:26Z <p><strong>"The definition of insanity is doing the same thing over and over again and expecting different results." -Einstein</strong></p> <p>This is my usual answer as to why I don’t want to attend another meeting where no decision making will occur.</p> http://stackoverflow.com/questions/194760/what-requirements-refining-techniques-have-worked-best-for-you/300058#300058 1 Answer by Bob for What requirements refining techniques have worked best for you? Bob 2008-11-18T20:38:36Z 2008-11-18T20:38:36Z <p>The trick is to get experienced developers (who have done requirements before) to sit down with people who will use the product and ask (over and over).... </p> <p>What do you want to "do" and NOT how do you want to "solve" it. </p> <p>Our customers are always asking for a solution, but we are good at boiling down to the problem, because sometimes, the solution is easier than implementing the fix the customer came up with.</p> http://stackoverflow.com/questions/261152/looking-for-a-script-to-colorize-c-code/263995#263995 0 Answer by Bob for Looking for a script to colorize C++ code. Bob 2008-11-05T00:28:32Z 2008-11-05T00:28:32Z <p>Notepad++ is pretty good and I use it when I'm on a windows system and doing C++.</p> <p>Here is the title off the sourceforge page: Notepad++ is a generic source code editor (it tries to be anyway) and Notepad replacement written in c++ with win32 API. The aim of Notepad++ is to offer a slim and efficient binary with a totally customizable GUI.</p> <p><a href="http://sourceforge.net/projects/notepad-plus/" rel="nofollow">http://sourceforge.net/projects/notepad-plus/</a></p> http://stackoverflow.com/questions/241144/how-to-set-an-initial-size-of-a-qscrollarea/263766#263766 0 Answer by Bob for How to set an initial size of a QScrollArea? Bob 2008-11-04T22:46:12Z 2008-11-04T22:46:12Z <p>If you're trying to display an image inside a scroll area, your best bet isn't going with a label. </p> <p>You should try using a QGraphicsView/QGraphicsScene/QGraphicPixmapItem (instead of the Scroll Area and label). The performance is far better when displaying images. The scroll area and label will re-draw the image very poorly as you move around using the scroll bars.</p> <p>For example, you have a ".ui" file with a QGraphicsView on the gui called "qgvImageView" and a QImage called "image"...</p> <pre><code>QGraphicsScene *scene = new QGraphicsScene(qgvImageView); QPixmap pixTmp(QPixmap::fromImage(image)); QGraphicsPixmapItem * ppixItem = scene-&gt;addPixmap( pixTmp ); ppixItem-&gt;setPos(0,0); </code></pre> <p>Check out the QT Documentation. BTW: This was introduced in Qt 4.2</p> <p>I'm not sure if this will specifically fix the problem, but there is a chance that the QGraphicsView will react better to what you're trying to do.</p>