User mbowcock - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T23:21:21Z http://stackoverflow.com/feeds/user/8758 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/79476/whats-the-correct-term-for-number-of-std-deviations-away-from-a-mean/79509#79509 0 Answer by mbowcock for What's the correct term for "number of std deviations" away from a mean mbowcock 2008-09-17T03:00:55Z 2008-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#79431 0 Answer by mbowcock for What is round-robin scheduling? mbowcock 2008-09-17T02:48:13Z 2008-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#76887 1 Answer by mbowcock for Where can I find a good introductory tutorial for Spring? mbowcock 2008-09-16T20:48:20Z 2008-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#76536 0 Answer by mbowcock for Which of these scripting languages is more appropriate for pen-testing? mbowcock 2008-09-16T20:22:03Z 2008-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#65361 0 Answer by mbowcock for What is the single most influential book every programmer should read? mbowcock 2008-09-15T18:19:50Z 2008-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>