User Brian Paden - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T10:28:05Z http://stackoverflow.com/feeds/user/3176 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/79754/unittest-causing-sys-exit 3 Unittest causing sys.exit() Brian Paden 2008-09-17T03:46:55Z 2009-01-02T20:34:33Z <p>No matter what I do sys.exit() is called by unittest, even the most trivial examples. I can't tell if my install is messed up or what is going on.</p> <pre><code>IDLE 1.2.2 ==== No Subprocess ==== &gt;&gt;&gt; import unittest &gt;&gt;&gt; &gt;&gt;&gt; class Test(unittest.TestCase): def testA(self): a = 1 self.assertEqual(a,1) &gt;&gt;&gt; unittest.main() option -n not recognized Usage: idle.pyw [options] [test] [...] Options: -h, --help Show this message -v, --verbose Verbose output -q, --quiet Minimal output Examples: idle.pyw - run default set of tests idle.pyw MyTestSuite - run suite 'MyTestSuite' idle.pyw MyTestCase.testSomething - run MyTestCase.testSomething idle.pyw MyTestCase - run all 'test*' test methods in MyTestCase Traceback (most recent call last): File "&lt;pyshell#7&gt;", line 1, in &lt;module&gt; unittest.main() File "E:\Python25\lib\unittest.py", line 767, in __init__ self.parseArgs(argv) File "E:\Python25\lib\unittest.py", line 796, in parseArgs self.usageExit(msg) File "E:\Python25\lib\unittest.py", line 773, in usageExit sys.exit(2) SystemExit: 2 &gt;&gt;&gt; </code></pre> http://stackoverflow.com/questions/283344/business-interview-questions-from-student-to-programmers-software-business-owners 0 Business interview questions from student to programmers/software business owners Brian Paden 2008-11-12T08:41:33Z 2008-11-12T23:05:12Z <p>I plan on starting a software business when I graduate and as such would like to get to know my community a little better. Plan on meeting with other people who are working along very similar lines. In the interest of not looking like a total idiot I want a few questions to ask when they can fit me in their schedules. Trying to get in touch with the company founders to start but would like to get ahold of software managers/etc as well. Note: if I can find the answers by digging on their websites beforehand I won't ask, that would be a waste of time for both of us. And yes I realize that most of these people are extremely busy and probably won't speak with me but it won't hurt to try.</p> <ol> <li>Background: what got you into this field, how long have you been doing it etc.</li> <li>What does your company do?</li> <li>How does that help the community?</li> <li>What exactly do you do on a day to day basis?</li> <li>What was your greatest triumph in this role?</li> <li>What was your worst failure in this role? (this one sounds too personal)</li> <li>If you had one piece of advice to someone just starting out, what would it be?</li> </ol> <p>Any advice on questions to ask would be greatly appreciated. Or if you have good advice or stories that would fit, those would be welcome too.</p> <p>*edit Elaboration: The companies I am looking to contact would likely become direct competitors and as such I do not expect much. This is more a way to meet people doing similar things and share in the related backgrounds. Naively hoping that sense of communitity and professionalism will override the strict competitive nature. On the other hand it will be several years before I am at the business stage, working on the early early planning phase now.</p> <p>Summary: What questions would be good to ask future competitors that will both introduce us and not make it seem like I am digging for information to destroy them? (I'm not trying to destroy them btw)</p> http://stackoverflow.com/questions/274490/parallel-quicksort-recursion-using-boost-bind 1 Parallel quicksort: recursion using Boost Bind? Brian Paden 2008-11-08T07:15:52Z 2008-11-08T07:52:52Z <p>I am working on making quicksort parallel, threads being the first attempt. The non threaded version sorts correctly but the threaded doesn't (no surprise there). What I found interesting was when I removed the threads but kept the boost::bind calls it still doesn't work. If boost::bind isn't what I want please offer a suggestion. Bind seemed to be the easiest (or only) way to make my function work with boost threads.</p> <pre><code>void Quicksort( fVec &amp;Array, const int Left, const int Right ) { if( Right &lt;= Left ) return; int pivot = Left; const int pivotNewIndex = Partition( Array, Left, Right, pivot ); // These function calls make it work fine //Quicksort( Array, Left, pivotNewIndex - 1 ); //Quicksort( Array, pivotNewIndex + 1, Right ); // boost::bind calls only swaps one element, doesn't actually sort boost::bind( &amp;Quicksort, Array, Left, pivotNewIndex - 1 )(); boost::bind( &amp;Quicksort, Array, pivotNewIndex + 1, Right )(); // threaded version that doesn't work, same as above //boost::thread threadA( boost::bind( &amp;Quicksort, Array, Left, pivotNewIndex - 1 ) ); //threadA.join(); //boost::thread threadB( boost::bind( &amp;Quicksort, Array, pivotNewIndex + 1, Right ) ); //threadB.join(); } </code></pre> http://stackoverflow.com/questions/267752/boost-asio-serialport-need-help-with-io/274262#274262 1 Answer by Brian Paden for Boost Asio serial_port - need help with io Brian Paden 2008-11-08T02:44:33Z 2008-11-08T02:44:33Z <p>Thanks to the help from here and other places I got it working. Wrote a small program that might help some people figure out the boost serial port stuff as well.</p> <p><a href="http://www.college-code.com/blog/wp-content/uploads/2008/11/boost_serial_port_demo.cpp" rel="nofollow">boostserialportdemo.cpp</a></p> http://stackoverflow.com/questions/267752/boost-asio-serialport-need-help-with-io 3 Boost Asio serial_port - need help with io Brian Paden 2008-11-06T06:01:25Z 2008-11-08T02:44:33Z <p>So I've been trying to learn the boost::asio stuff to communicate to a serial device using RS232. The documementation is sparse and the examples are non-existent. Can't figure out exactly how to communicate with the device. The device can't send data so all I need to do is write, but other projects require actual back and forth communication so help with that would be appreciated. What code I have so far follows.</p> <pre><code>#include &lt;boost/asio/serial_port.hpp&gt; using namespace::boost::asio; int main() { io_service io; serial_port port( io, "COM3" ); port.set_option( serial_port_base::baud_rate( 19200 ) ); unsigned char commands[4] = { 1, 128, 240, 0 }; // write the commands to the device return 0; } </code></pre> <p>In short: need help with the io part of the serial_port.</p> http://stackoverflow.com/questions/257275/no-sdl-keypress-events-being-detected 0 No SDL Keypress events being detected Brian Paden 2008-11-02T19:56:08Z 2008-11-02T20:21:18Z <p>I am completely stumped as to why this code does not get any SDL keypress events. The other SDL events (removed for clarity) work fine. It does not work on my XP or Vista machines. No compile/link errors, just never recieve a keydown event.</p> <pre><code>#include "SDL/SDL.h" // Yes SDL.lib and SDLmain.lib are linked Uint32 TimeLeft(void) { static Uint32 next_time = 0; Uint32 now; now = SDL_GetTicks(); if ( next_time &lt;= now ) { next_time = now + tickInterval; return 0; } return(next_time-now); } int main( int argc, char **argv ) { if( -1 == SDL_Init( SDL_INIT_EVERYTHING ) ) { cerr &lt;&lt; "Error: SDL_Init failed" &lt;&lt; endl; return -1; } SDL_Event event; bool quit = false; while( !quit ) { while( SDL_PollEvent( &amp;event ) ) { switch( event.type ) { case SDL_KEYDOWN: switch( event.key.keysym.sym ) { case SDLK_ESCAPE: case SDLK_q: quit = true; break; default: break; } break; case SDL_JOYAXISMOTION: // stuff removed break; case SDL_QUIT: quit = true; break; default: break; } } SDL_Delay( TimeLeft() ); } SDL_Quit(); return 0; } </code></pre> http://stackoverflow.com/questions/169419/change-new-projects-warning-level-in-vs2008-express 2 Change new projects warning level in VS2008 (Express) Brian Paden 2008-10-04T00:24:35Z 2008-11-02T01:09:41Z <p>I like having my warning level set at W4 but all new projects start at W3. Is there some way to change the default value for warning levels for new projects?</p> http://stackoverflow.com/questions/151846/get-other-running-processes-window-sizes-in-python 1 Get other running processes window sizes in Python Brian Paden 2008-09-30T05:20:27Z 2008-10-10T03:05:44Z <p>This isn't as malicious as it sounds, I want to get the current size of their windows, not look at what is in them. The purpose is to figure out that if every other window is fullscreen then I should start up like that too. Or if all the other processes are only 800x600 despite there being a huge resolution then that is probably what the user wants. Why make them waste time and energy resizing my window to match all the others they have? I am primarily a Windows devoloper but it wouldn't upset me in the least if there was a cross platform way to do this.</p> http://stackoverflow.com/questions/169419/change-new-projects-warning-level-in-vs2008-express/169489#169489 0 Answer by Brian Paden for Change new projects warning level in VS2008 (Express) Brian Paden 2008-10-04T01:19:29Z 2008-10-04T01:19:29Z <p>I couldn't find any project templates or anything on my machine so I just searched in all the files for WarningLevel. I found common.js at</p> <pre><code>%\Microsoft Visual Studio 9.0\VC\VCWizards\1033 </code></pre> <p>Searching in the file showed WarningLevel appeared in three places, lines 672, 699 and 3354. I simply changed the three lines reading</p> <pre><code>CLTool.WarningLevel = WarningLevel_3; </code></pre> <p>to</p> <pre><code>CLTool.WarningLevel = WarningLevel_4; </code></pre> <p>When I made a new project it was set at /w4. So this worked for me, won't guarantee it won't hose your machine.</p> http://stackoverflow.com/questions/145155/something-like-explorers-icon-grid-view-in-a-python-gui 1 Something like Explorer's icon grid view in a Python GUI Brian Paden 2008-09-28T03:39:35Z 2008-09-28T03:57:15Z <p>I am making a Python gui project that needs to duplicate the look of a Windows gui environment (ie Explorer). I have my own custom icons to draw but they should be selectable by the same methods as usual; click, ctrl-click, drag box etc. Are any of the gui toolkits going to help with this or will I have to implement it all myself. If there aren't any tools to help with this advice would be greatly appreciated.</p> <p><em>edit</em> I am not trying to recreate explorer, that would be madness. I simply want to be able to take icons and lay them out in a scrollable window. Any number of them may be selected at once. It would be great if there was something that could select/deselect them in the same (appearing at least) way that Windows does. Then all I would need is a list of all the selected icons.</p> http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/29671#29671 12 Answer by Brian Paden for Computer Language puns and jokes Brian Paden 2008-08-27T07:25:10Z 2008-09-21T19:50:53Z <p>Some of my favorite quotes:</p> <blockquote> <p>It should be noted that no ethically-trained software engineer would ever consent to write a DestroyBaghdad procedure. Basic professional ethics would require him to write a DestroyCity procedure, to which Baghdad could be given as a parameter. - Nathanial Borenstein</p> <p>If builders built buildings the way programmers wrote programs, then the first woodpecker that came along would destroy civilization - Gerald M Weinberg ( aka Weinberg's Law )</p> </blockquote> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/99737#99737 1 Answer by Brian Paden for What is the single most influential book every programmer should read? Brian Paden 2008-09-19T04:54:59Z 2008-09-19T04:54:59Z <p>Code Complete is the most influential by far, if I had the money I would buy copies and hand them out to every programmer I know.</p> <p>Since programmers are well known for their social skills :P</p> <p><img src="http://ecx.images-amazon.com/images/I/51JDKW8TV1L._SL500_BO2,204,203,200_PIsitb-dp-500-arrow,TopRight,45,-64_OU01_AA240_SH20_.jpg" alt="How to Win Friends and Influence People" /></p> <p>Not that all programmers have problems dealing with people, anyone can benefit from reading this book.</p> http://stackoverflow.com/questions/90268/sleeping-problems-computer-addiction/90279#90279 32 Answer by Brian Paden for Sleeping problems, computer addiction Brian Paden 2008-09-18T05:27:49Z 2008-09-18T05:27:49Z <p>I had this problem ( still do occasionally ). The best way I found to cure it is pure willpower. Set a bedtime, mine is 1 hour before I need to be asleep. So by this time I am in bed, lights off just waiting for my mind to cool down.</p> <p>At first this is hard to do but patterns are very powerful tools.</p> <p>Oh and keep a pen/paper next to your bed because often enough you will solve the problem by not thinking about it. This will test you the most, you really want to get up and fix it. Don't. Write down the solution and deal with it tomorow.</p> http://stackoverflow.com/questions/79753/recommended-reading-list-for-a-relativenewbie/79760#79760 1 Answer by Brian Paden for Recommended reading list for a (relative)newbie? Brian Paden 2008-09-17T03:47:44Z 2008-09-17T03:47:44Z <p>The Pragmatic Programmers, followed by Code Complete</p> http://stackoverflow.com/questions/60673/guidelines-to-improve-your-code/60715#60715 3 Answer by Brian Paden for Guidelines to improve your code Brian Paden 2008-09-13T17:32:34Z 2008-09-13T17:32:34Z <p>In if statements put the constant on the left i.e.</p> <pre><code>if( 12 == var ) </code></pre> <p>not</p> <pre><code>if( var == 12 ) </code></pre> <p>Beacause if you miss typing a '=' then it becomes assignment. In the top version the compiler says this isn't possible, in the latter it runs and the if is always true.</p> <p>I use braces for if's whenever they are not on the same line.</p> <pre><code>if( a == b ) something(); if( b == d ) { bigLongStringOfStuffThatWontFitOnASingleLineNeatly(); } </code></pre> <p>Open and close braces always get their own lines. But that is of course personal convention.</p> http://stackoverflow.com/questions/42204/where-did-these-hex-named-folders-come-from 4 Where did these hex named folders come from? Brian Paden 2008-09-03T17:51:00Z 2008-09-03T18:13:09Z <p>First off, I am using Windows XP. I have multiple hard drives and it looks like something decided to make some folders on the second one ( which is just a data drive, no os ). These folders all have names like "e69f29f1b1f166d3d30b8c9f7156ba" and "bd92c24cc278614082cd88e7a64b". They contain folders named update, whose "access is denied", so my best guess would be they are Windows updates. So I probably can't get rid of them but could someone at least explain what they are and why they are on the wrong drive?</p> http://stackoverflow.com/questions/41898/how-do-you-choose-an-open-source-license/42240#42240 2 Answer by Brian Paden for How do you choose an open-source license? Brian Paden 2008-09-03T18:11:41Z 2008-09-03T18:11:41Z <p>You could always just use the best one of all, the <a href="http://sam.zoy.org/wtfpl/" rel="nofollow">WTFPL</a>. I use this on most of my school projects since they aren't that great anyways.</p> http://stackoverflow.com/questions/42210/does-google-chromes-process-per-tab-model-inherently-use-more-memory-than-firefo/42221#42221 0 Answer by Brian Paden for Does Google Chrome's process-per-tab model inherently use more memory than Firefox and IE? Brian Paden 2008-09-03T17:58:27Z 2008-09-03T17:58:27Z <p>It has to use more memory due to the overhead of multiple processes. I really doubt that a few megs of ram on a pc will hurt anything. Now on a mobile device it may matter. In <a href="http://blogoscoped.com/google-chrome/" rel="nofollow">Google's comic</a> they say it will actually reduce memory fragmentation which will result in less overall use in the long run.</p> http://stackoverflow.com/questions/31356/high-school-programming/31785#31785 0 Answer by Brian Paden for High School Programming Brian Paden 2008-08-28T07:24:53Z 2008-08-28T07:24:53Z <p>If they really want to learn the best way to teach them is just to guide them. After getting the most basic stuff out of the way you should help them find a project that they are both interested in and is doable. This is how I helped my friend learn code. He had a plan for a small project, and I helped him think it through when he got stuck. And after that I went and showed him a much better way to write the code :)</p> <p>If they choose the project it will keep them much more excited and willing to grind away. It is your job to make sure they can do it without so much frustration that it turns them off from the whole thing.</p> http://stackoverflow.com/questions/31757/should-programmers-be-excellent-typists/31761#31761 0 Answer by Brian Paden for Should programmers be excellent typists? Brian Paden 2008-08-28T07:15:09Z 2008-08-28T07:15:09Z <p>When I imagine the stereotypical super-coder he is typing so fast that you his fingers aren't even a blur, they have already red-shifted. I type well enough that my bottleneck isn't the typing usually, and we all know premature optimization is bad.</p> <ul> <li>Depends on how recently I have played Typing of the Dead.</li> <li>Over 90% offhand guess, backspace is always well within reach though.</li> <li>Nope</li> <li>Some of my pet projects are edutainment but I don't actively play them tons.</li> </ul> http://stackoverflow.com/questions/296/should-i-learn-c/29728#29728 1 Answer by Brian Paden for Should I learn C? Brian Paden 2008-08-27T08:20:21Z 2008-08-27T08:20:21Z <p>Do you need to know C? Obviously not or else there would be a lot less programmers. Will it make you a better programmer? Debatable or there would be no point in asking this question.</p> <p>All I know is from experience in the classroom (not done with school yet) the people who know at least one lower level language can program circles around the ones who stick with C++ or higher. I am glad I was forced to learn it, x86 ASM still gives me the shudders though.</p> http://stackoverflow.com/questions/3247/identifying-passionate-programmers/29718#29718 0 Answer by Brian Paden for Identifying passionate programmers Brian Paden 2008-08-27T08:12:46Z 2008-08-27T08:12:46Z <p>If they can't tell you about a fun project they've worked on ( or at least thought through with some effort ) either in school or in their spare time that isn't a good sign. Honestly passion about the craft should be pretty easy to determine, it's a special look in their eyes. Specifically a look that is bloodshot and has plenty of bags underneath.</p> http://stackoverflow.com/questions/3553/one-piece-of-advice/29712#29712 72 Answer by Brian Paden for One piece of advice Brian Paden 2008-08-27T08:08:50Z 2008-08-27T08:08:50Z <p>Actually finish some of your pet projects.</p> http://stackoverflow.com/questions/4689/recommended-fonts-for-programming/29698#29698 0 Answer by Brian Paden for Recommended Fonts for Programming? Brian Paden 2008-08-27T08:00:46Z 2008-08-27T08:00:46Z <p>Consolas for Visual Studio. It is the first thing I change when getting a new install setup. The second is inverting the main colors, white text on black background is much easier to stare at for hours in my opinion.</p> <p><img src="http://college-code.com/stackoverflow/black_on_white.PNG" alt="Black text on white background" /></p> <p>Versus</p> <p><img src="http://college-code.com/stackoverflow/white_on_black.PNG" alt="White text on black background" /></p> <p>The second one tends to make my eyes bleed less after long coding sessions. Could be my code however.</p> http://stackoverflow.com/questions/283344/business-interview-questions-from-student-to-programmers-software-business-owners/283420#283420 Comment by Brian Paden on Business interview questions from student to programmers/software business owners Brian Paden 2008-11-12T22:58:28Z 2008-11-12T22:58:28Z quote from qustion above &quot;if I can find the answers by digging on their websites beforehand I won't ask, that would be a waste of time for both of us.&quot; Upvoted in spite of this because it is good advice. http://stackoverflow.com/questions/267752/boost-asio-serialport-need-help-with-io/269148#269148 Comment by Brian Paden on Boost Asio serial_port - need help with io Brian Paden 2008-11-06T18:13:18Z 2008-11-06T18:13:18Z Thanks, was mostly overwhelmed with the number of options and needed somewhere to get started. I lucked out because the defaults values for everything except baud rate are what the board uses. http://stackoverflow.com/questions/257275/no-sdl-keypress-events-being-detected/257305#257305 Comment by Brian Paden on No SDL Keypress events being detected Brian Paden 2008-11-02T20:30:31Z 2008-11-02T20:30:31Z Thanks, I knew it was some obvious thing I was overlooking. http://stackoverflow.com/questions/169419/change-new-projects-warning-level-in-vs2008-express/169434#169434 Comment by Brian Paden on Change new projects warning level in VS2008 (Express) Brian Paden 2008-10-04T00:57:40Z 2008-10-04T00:57:40Z What file types are the templates? Neither of those directories exist on my machine. http://stackoverflow.com/questions/145155/something-like-explorers-icon-grid-view-in-a-python-gui/145162#145162 Comment by Brian Paden on Something like Explorer's icon grid view in a Python GUI Brian Paden 2008-09-28T04:24:04Z 2008-09-28T04:24:04Z Thanks, found what I was looking for. It is hard to google for stuff when you don't know the name. http://stackoverflow.com/questions/90268/sleeping-problems-computer-addiction/90279#90279 Comment by Brian Paden on Sleeping problems, computer addiction Brian Paden 2008-09-19T01:36:54Z 2008-09-19T01:36:54Z It was an afterthought but thinking about it, probably the most important part of what I said. http://stackoverflow.com/questions/81677/whats-your-motto-as-a-developer-programmer/81764#81764 Comment by Brian Paden on What's Your Motto As A Developer/Programmer? Brian Paden 2008-09-17T23:40:17Z 2008-09-17T23:40:17Z agree, sounds more like a valuable asset than expendable