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-10-19 2002-10-26 2002-11-02 2002-11-09 2002-11-16 2002-11-23 2002-11-30 2002-12-07 2002-12-14 2002-12-21 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 ![]() ![]() |
Good design requires a dictatorPaul Graham: Design and research. No anti-Python rhetoric this time, but an interesting look on (language) design. Written from a Lisp-y point of view, of course, but much (if not all) applies to Python as well.For example, interactive interpreter and dynamic languages: "For example, it is a huge win in developing software to have an interactive toplevel, what in Lisp is called a read-eval-print loop. And when you have one this has real effects on the design of the language. It would not work well for a language where you have to declare variables before using them, for example. When you're just typing expressions into the toplevel, you want to be able to set x to some value and then start doing things to x. You don't want to have to declare the type of x first. You may dispute either of the premises, but if a language has to have a toplevel to be convenient, and mandatory type declarations are incompatible with a toplevel, then no language that makes type declarations mandatory could be convenient to program in."BDFL: "Whatever the story is in the sciences, true collaboration seems to be vanishingly rare in the arts. Design by committee is a synonym for bad design. Why is that so? Is there some way to beat this limitation? Yesterday's roundupBesides hacking Kaa, I did some more stuff yesterday.
0.9 coming up soonSome good late-night hacking today. I figured it would be nice if Kaa (finally, some would say) generated an RSS file, so I added that. It may still contain bugs, or not validate, etc; I will take care of that later. Important is that most of the functionality is there, and will be included in Kaa 0.9, which should not be far away now.In the navigation bar on the right, there should be a new entry "RSS" now. Whether the RSS file shows up correctly is a different issue, but it is there. :-) More later. I need some sleep... 1:56 AM. The RSS Kaa generates validates! Yay! :-) The import hooks oddity explainedSee yesterday's post. Just van Rossum writes:You may have to do sys.path_importer_cache.clear() to make sure no handler is registered for the path (this is most likely a None value, signalling it should use the builtin mechanism). Check PEP 302 for the details. You should then get a "Wahey!" for each member of sys.path (and as a bonus no file system import will work after you installed your hook ;-)Basically, this is what happens:
In fact, Windows may show the correct behavior, while the other systems don't -- after all, their sys.path isn't in sync with sys.path_importer_cache. Maybe because of site.py? Update (6:15 PM). Just also writes: There are two idioms for adding path hooks:I'll remember to use these. Neither the PEP nor the section in WNIP2.3 mentions this. 2.3's import hooks2.3a1 arrived yesterday, and contrary to what I normally do, I downloaded and installed it even though it's an alpha version. I wanted to play with the new import hooks.My first test program, using sys.path_hooks, didn't work at all. I added a function to it, but that function wasn't even called upon importing. I'm probably misunderstanding and/or doing something wrong.
Then I tried using meta_path. This worked better. I've had an idea for a while, to import modules over HTTP, and figured I could use the new hooks for that. (The idea may not be new, but it's just something I've been wanting to test for a while.) My conclusion is: you can, but you're probably better off writing a custom function (say, import_http) for that and use it when you know you want to import a module that's on the Net somewhere. Like
You can, however, write an importer (or "finder", really) and a loader for that (see What's new in Python 2.3 and PEP 302). The finder (which should be passed a base URL) can check if the URL exists, and if so, return it, or a file-like object (e.g. from urllib or httplib), otherwise it should return None. The loader can then load the code, create the module object and return it. Problem: You don't want to do this for every module. Added such code to meta_path would be called for every import, including built-in modules and standard library. Connecting to the Net every time seems a bit... inefficient.
So what if we define a pseudo-package, say "http", to indicate a module can be found online? Like
Adding a "magic" prefix, like http_, is possible, but seems ugly and un-Pythonic. The finder can check if its module name starts with "http_", and continue if that is the case, return None otherwise. import http_foo creates a module http_foo though, not foo, which seems less than elegant. Konkludo: Let's not use import hooks for this. They were most likely not meant for this anyway. :-) Using a custom function still seems the best solution.
What still puzzles me, is, why doesn't this code work?
Update. The PEP and the "What's new" section contradict each other, by the way. PEP: sys.path_hooks is a list of callables, which will be checked in sequence to determine if they can handle a given path item. The callable is called with one argument, the path item. The callable must raise ImportError if it is unable to handle the path item, and return an importer object if it can handle the path item. The callable is typically the class of the import hook, and hence the class __init__ method is called. (This is also the reason why it should raise ImportError: an __init__ method can't return anything.vs "What's new in Python 2.3": sys.path_hooks is a list of functions. Each function takes a string containing a path and returns either None or an importer object that will handle imports from this path.Another update, 10:08 PM. I built Python with Cygwin (runs right out of the box, by the way... nice), and running the code with "Cygwin-Python" does work as expected. In other words, with the Cygwin build the function is called, and with the vanilla Windows build is it not. Very strange. I posted to the newsgroup, let's see what the experts say about this. If it's not a bug, then it's at least confusing behavior. On a related note, I also may have found a buglet in the documentation. Hmmz... 30 cardsApparently, Magic the Gathering can be played just as easily with 30 cards. (The normal deck size is around 60.) We played a game with 30-card decks yesterday; this seems a good format for casual play. Some thoughts:1. This format is meant for casual play. 2. There should be a rule about what happens when you reach the end of your deck. My first thought was that when that happens, you just look at the life totals, and the player with the highest total wins. This can be abused though; e.g. millstone decks run through a 30-card deck much faster than through 60. Also, including a lot of cantrips and other "draw a card" effects can give a player an unfair advantage. Then again, as said, this format is meant for casual play. If you are abusing the rules because you really must win, maybe this casual format isn't for you. :-) 3. There should be a maximum of 2 of the same cards. 4 is just too much, since normally you will have something like 10 lands + 20 other cards. Personally, I think it wouldn't hurt to make those 20 cards all different. 4. New forms of deck building. Wade through your commons, pick cards that generally look OK, or try using a coherent theme (e.g. a goblin deck, still possible in 30-card format). A Falcon deck becomes possible as well (don't forget to include Soraya the Falconer). Etc, etc. 5. Playing is more important than deck building. This roughly translates to, having fun is more important than winning. Don't enter the place with a well-oiled tournament deck; rather, use some interesting cards that will delight friend and foe. And shuffle well, so you won't get 8 Forests in a row like I had... ;-) -- Generated by Firedrop2. |