User savannah - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T02:46:54Z http://stackoverflow.com/feeds/user/94317 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/783220#783220 3 Answer by savannah for What is the best comment in source code you have ever encountered? savannah 2009-04-23T19:35:55Z 2009-04-23T19:35:55Z <pre><code>//Time log says you've been here for 15 hours GO HOME, your code is hobo </code></pre> http://stackoverflow.com/questions/780169/how-do-i-create-collision-detections-for-my-bouncing-balls/780321#780321 1 Answer by savannah for How do I create collision detections for my bouncing balls? savannah 2009-04-23T04:30:17Z 2009-04-23T04:30:17Z <p>I think there is somehthing simpler that you guys are missing espeically considering he's using pygame.</p> <p>Calling the <code>get_rect</code> function can set probably boundraies for the images and <code>Rect</code> that is created, is used for calculating the position of the image and if there are more than one object in the animation, it can be used for detecting collisions. </p> <p><code>colliderect</code> &amp; <code>rect</code> can be used, problem is i have no idea how you would implement it especially for an unkown number of balls. </p> <p>Keeping in mind it's python.</p> http://stackoverflow.com/questions/162815/what-applications-is-python-optimal-for/778604#778604 0 Answer by savannah for What applications is Python optimal for? savannah 2009-04-22T18:42:11Z 2009-04-22T18:42:11Z <p>Maya is starting to use python more and more, so tool scripting could be a good field to get into.</p> http://stackoverflow.com/questions/777265/how-to-describe-your-job-to-a-non-it-guy/777347#777347 0 Answer by savannah for How to describe your job to a non IT guy? savannah 2009-04-22T13:59:41Z 2009-04-22T13:59:41Z <p>"I work in IT, basically, I make sure the computers in the building are running smoothly and talking to eachother."</p> http://stackoverflow.com/questions/777129/python-image-collision-detection/777248#777248 Comment by savannah on Python Image Collision Detection savannah 2009-04-22T15:10:58Z 2009-04-22T15:10:58Z ball_boundary = ball.get_rect(center=(100,100)) Calling the get_rect function can set rectangular boundaries for the image. The Rect that is created, theb used for calculating the position of the image. Im assuming that if there is more than one image then this could somehow be used to detect collision. http://stackoverflow.com/questions/777129/python-image-collision-detection/777248#777248 Comment by savannah on Python Image Collision Detection savannah 2009-04-22T13:53:05Z 2009-04-22T13:53:05Z The problem is I have no idea how to differentiate between the balls the way they are created to play off them. I kind of see the logic in this but it's somewhat confusing to understand in C#.