This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| html { font-size: 62.5%; } | |
| html, body { height: 100%; } | |
| body { | |
| font-family: Helvetica, Arial, sans-serif; | |
| font-size: 150%; | |
| line-height: 1.3; | |
| color: #f6e6cc; | |
| width: 700px; | |
| margin: auto; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Day job: | |
| PhD. Student @ Case Western Reserve in Software Engineering (Program Analysis) | |
| Favorite Python project: | |
| PLY (Python Lex and Yacc) | |
| Favorite Conference: | |
| PyOhio | |
| Python Experience Level: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| left = chr(27)+chr(91)+chr(68) | |
| right = chr(27)+chr(91)+chr(67) | |
| backspace = left + ' ' + left | |
| def clear_line(prompt, l): | |
| for x in xrange(150 - l): | |
| sys.stdout.write(right) | |
| for x in xrange(150): | |
| sys.stdout.write(backspace) | |
| sys.stdout.write(prompt) | |
| sys.stdout.flush() |
NewerOlder