Popular recipes by Iuri Wickert http://code.activestate.com/recipes/users/111694/2004-12-26T19:11:42-08:00ActiveState Code RecipesA simple Tkinter notebook-like widget (Python)
2004-12-26T19:11:42-08:00Iuri Wickerthttp://code.activestate.com/recipes/users/111694/http://code.activestate.com/recipes/188537-a-simple-tkinter-notebook-like-widget/
<p style="color: grey">
Python
recipe 188537
by <a href="/recipes/users/111694/">Iuri Wickert</a>
(<a href="/recipes/tags/ui/">ui</a>).
Revision 4.
</p>
<p>You have some single-toplevel Tkinter apps that you want to organize in a notebook-like fashion, associating each tab to an app, in a way which requires minimal changes in your original apps. This simple notebook class allows that, also supporting different tab orientations (TOP, BOTTOM, LEFT & RIGHT).</p>
Random selection of elements in a list, with no repeats (Python)
2002-06-05T05:50:10-07:00Iuri Wickerthttp://code.activestate.com/recipes/users/111694/http://code.activestate.com/recipes/59883-random-selection-of-elements-in-a-list-with-no-rep/
<p style="color: grey">
Python
recipe 59883
by <a href="/recipes/users/111694/">Iuri Wickert</a>
(<a href="/recipes/tags/search/">search</a>).
Revision 2.
</p>
<p>The simplest, direct way of consuming a list in a random fashion is painfully
slow for list with a few 100's of elements. There are equally simple, but much
faster ways to do this.</p>