Skip to content

Instantly share code, notes, and snippets.

@ChristinaMeno
Created July 12, 2011 17:39
Show Gist options
  • Save ChristinaMeno/1078512 to your computer and use it in GitHub Desktop.
Save ChristinaMeno/1078512 to your computer and use it in GitHub Desktop.
>>> thing = type('name', (object,), {'hello':'hello world'})()
>>> thing.hello
'hello world'
class name(object):
hello = 'hello world'
@ChristinaMeno
Copy link
Author

What is clean code?

How do you debug code?

What is the hardest bug you've ever solved?

How would you estimate the number of cups of tea consumed on our office per day?

@ChristinaMeno
Copy link
Author

Tell me about you choice for TTT state representation.

What don't you like about your TTT implementation?

If you had more time what would you change?

How would you write a test to prove that your TTT never loses?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment