Tao of the MachineProgramming, Python, my projects, card games, books, music, Zoids, bettas, manga, cool stuff, and whatever comes to mind. |
Front page Last 10 archives 2002-09-14 2002-09-21 2002-09-28 2002-10-05 2002-10-12 2002-10-19 2002-10-26 2002-11-02 2002-11-09 2002-11-16 Category archives bettas books CCGs Charm esoterica Firedrop games general ideas internet Kaa linkstuffs Lisp manga music Mygale Nederland nostalgia programming Python SGI switch Wax Zoids :: Search All posts ...by category ...by date ![]() :: About me :: Oasis Digital :: Resume :: GeoURL :: RSS :: Atom ![]() ![]() |
By the way...Does anybody know how I can make the editor window in Kaa stretch *vertically*? I tweaked the Tkinter code a bit here and there, and now it stretches horizontally when you resize the window, but not vertically yet.The Selfish programmerI've written some new code that more or less emulates Self-style classes. Here's how to use it:
Self is kinda interesting... you can start out with an "empty" object, then tack functionality on it, or inherit from other objects (not: classes) on the fly. Very flexible. Of course, Python supports this too, in a way... but it's different; for example, adding methods to a class is easy, but you cannot easily stick a method in an instance and expect it to work, not without some trickery. -- Generated by Firedrop2. |