1.1 --- a/sayings.py Mon May 05 10:04:09 2014 +0200
1.2 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000
1.3 @@ -1,29 +0,0 @@
1.4 -from flask.ext.babel import gettext as _
1.5 -from random import shuffle
1.6 -
1.7 -def get_saying():
1.8 - sayings = [(_(u'The Zen of Python, by Tim Peters'), _(u'__Tim Peters, The Zen of Python')),
1.9 - (_(u"Beautiful is better than ugly."), _(u'__Tim Peters, The Zen of Python')),
1.10 - (_(u"Explicit is better than implicit."), _(u'__Tim Peters, The Zen of Python')),
1.11 - (_(u"Simple is better than complex."), _(u'__Tim Peters, The Zen of Python')),
1.12 - (_(u"Complex is better than complicated."), _(u'__Tim Peters, The Zen of Python')),
1.13 - (_(u"Flat is better than nested."), _(u'__Tim Peters, The Zen of Python')),
1.14 - (_(u"Sparse is better than dense."), _(u'__Tim Peters, The Zen of Python')),
1.15 - (_(u"Readability counts."), _(u'__Tim Peters, The Zen of Python')),
1.16 - (_(u"Special cases aren't special enough to break the rules."), _(u'__Tim Peters, The Zen of Python')),
1.17 - (_(u"Although practicality beats purity."), _(u'__Tim Peters, The Zen of Python')),
1.18 - (_(u"Errors should never pass silently, unless explicitly silenced."), _(u'__Tim Peters, The Zen of Python')),
1.19 - (_(u"In the face of ambiguity, refuse the temptation to guess."), _(u'__Tim Peters, The Zen of Python')),
1.20 - (_(u"Although that way may not be obvious at first unless you're Dutch."), _(u'__Tim Peters, The Zen of Python')),
1.21 - (_(u"Now is better than never."), _(u'__Tim Peters, The Zen of Python')),
1.22 - (_(u"Although never is often better than *right* now."), _(u'__Tim Peters, The Zen of Python')),
1.23 - (_(u"If the implementation is hard to explain, it's a bad idea."), _(u'__Tim Peters, The Zen of Python')),
1.24 - (_(u"If the implementation is easy to explain, it may be a good idea."), _(u'__Tim Peters, The Zen of Python')),
1.25 - (_(u"Namespaces are one honking great idea -- let's do more of those!"), _(u'__Tim Peters, The Zen of Python')),
1.26 - (_(u"I once tried Java, but it was too complicated for me, Python is easier."),_(u'__Valentin Pratz, novice programmers')),
1.27 - ]
1.28 -
1.29 - shuffle(sayings)
1.30 -
1.31 - saying, author = sayings[0]
1.32 - return saying, author