User mbowcock - Stack Overflowmost recent 30 from stackoverflow.com2009-12-10T23:21:21Zhttp://stackoverflow.com/feeds/user/8758http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/79476/whats-the-correct-term-for-number-of-std-deviations-away-from-a-mean/79509#795090Answer by mbowcock for What's the correct term for "number of std deviations" away from a meanmbowcock2008-09-17T03:00:55Z2008-09-17T03:00:55Z<p>I've always heard it as number of standard deviations</p>
http://stackoverflow.com/questions/79389/what-is-round-robin-scheduling/79431#794310Answer by mbowcock for What is round-robin scheduling?mbowcock2008-09-17T02:48:13Z2008-09-17T02:48:13Z<p>Round robin is a simple scheduling algorithm where time is divided evenly among jobs without priority.</p>
<p>For example - if you have 5 processes running - each process will be allowed to run for 1/5 a unit of time before another process is allowed to run. Round robin is typically easy to implement in an OS.</p>
http://stackoverflow.com/questions/76764/where-can-i-find-a-good-introductory-tutorial-for-spring/76887#768871Answer by mbowcock for Where can I find a good introductory tutorial for Spring?mbowcock2008-09-16T20:48:20Z2008-09-16T20:48:20Z<p><em>Edit: I didn't realize there is an <a href="http://www.theserverside.com/tt/articles/article.tss?l=IntrotoSpring25" rel="nofollow">updated version</a></em> </p>
<p>A little old but popular - <a href="http://www.theserverside.com/tt/articles/article.tss?l=SpringFramework" rel="nofollow">An Introduction to the Spring Framework</a> - and the authors name is funny.</p>
http://stackoverflow.com/questions/76408/which-of-these-scripting-languages-is-more-appropriate-for-pen-testing/76536#765360Answer by mbowcock for Which of these scripting languages is more appropriate for pen-testing?mbowcock2008-09-16T20:22:03Z2008-09-16T20:22:03Z<p>If I were focusing on mastering 1 of the 3 languages I would lean towards Python. I feel Pyhton has better object orientation and makes it easier to write 'good' code and you can do more with less. Its fast and runs anywhere.</p>
<p>Although - all 3 languages have their strong domains.</p>
http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/65361#653610Answer by mbowcock for What is the single most influential book every programmer should read?mbowcock2008-09-15T18:19:50Z2008-09-15T18:19:50Z<p><a href="http://cc2e.com/" rel="nofollow">Code Complete</a> has been mentioned numerous times - and is definitely a great book and I agree with <a href="http://rads.stackoverflow.com/amzn/click/0262032937" rel="nofollow">Introduction to algorithms</a>. To add one to the list - as a good primer for algorithms - <a href="http://rads.stackoverflow.com/amzn/click/0201558025" rel="nofollow">Concrete Mathematics by Knuth</a> - this book explains the underlying math used in higher levels of compsci.</p>