Efectos Especiales

Ramblings, rants, musings, ideas and observations. Topics include (but are not limited to): programming (especially Python), books, games (especially CCGs and board games), astrology, design, writing, painting, etc.

icon:magicthegathering #819 (old comments) Loxodons

(from the don't-you-have-better-things-to-worry-about-dept)

According to the Orb of Insight, there will be 4 cards that mention "Loxodon" in Ravnica. The spoiler at MTGSalvation seems to agree.

That seems odd. I (maybe mistakenly) assumed that Loxodons were restricted to the plane of Mirrodin. How did they end up in Ravnica? Other "species" that were introduced in Mirrodin, like Myr and Leonin, don't show up elsewhere. What makes Loxodons different? Are they all over the place, like e.g. Griffins? It still seems odd, considering the isolated nature of Mirrodin, a plane that is very different from anything else we've seen so far.

It seems to be out of flavor. I wonder what the reasoning behind it is. WotC usually puts great effort into creating consistent worlds; I am curious to know if this was an oversight, or a deliberate decision.

Other things found in the Orb of Insight:

/* Posted by Hans Nowak at 2005-09-06 13:31 */

icon:wax #818 (old comments) The Wax import issue...

...has *not* been solved, but then again this wasn't one of Jason's tasks. We briefly considered tackling it, but I eventually decided that it really isn't all that important.

For those who don't know: currently Wax imports all its core widgets in __init__.py. This is rather inefficient, because all those classes will in memory even if you don't use them. However, the Wax classes are relatively thin wrappers around wxPython ones; the real "meat" is in wxPython and is loaded anyway, even if I find a way to curtail the Wax import. Also, I noticed the following:

>>> import wax
>>> len(dir(wax))
159
>>> import wx
>>> len(dir(wx))
3394

In other words, Wax exports 159 names, and wxPython exports 3394! In the face of these numbers, I think that Wax's "namespace pollution" is rather modest. ^_^

I like to be able to do from wax import *. If you don't, then you can always use import wax and use qualified names (wax.Button, etc). So I don't think there's much of an issue here.

/* Posted by Hans Nowak at 2005-09-06 00:41 */

icon:wax #817 (old comments) Wax 0.3.19 released

Wax 0.3.19 is available. This is the first public release after the Summer of Code. Go here for the general Wax-on-SF page, or directly to the release.

Most of the changes and new features were written by Jason Gedge (who, IMHO, delivered excellent work, and without a doubt deserves his SoC money). Some of the highlights:

Jason also wrote a prototype of some code that makes it easier to work with sockets. Think downloading with urllib/ftplib/etc and displaying a gauge indicating progress, for example. This will need to be polished and has not been checked in yet, but will soon. (Famous last words...)

Anyway, as always it's a work in progress... I plan to add more features, and there are also some patches from contributors waiting to be applied. Watch this space...

/* Posted by Hans Nowak at 2005-09-06 00:26 */

icon:python #816 (old comments) 10 pastí jazyka Python

My 10 Python Pitfalls article was translated into the Czech language, by Pavel Kosina and Petr Prikryl.

(It's too bad that I don't understand a word of it... considering that my ancestors are from Ostrava. Or so I was told.)

/* Posted by Hans "hence the non-Dutch last name" Nowak at 2005-09-02 21:43 */

icon:harrypotter #815 (old comments) Otaku

Some people take the Harry Potter books, and the who-is-going-out-with-who stuff, a little too seriously...

/* Posted by Hans Nowak at 2005-08-23 19:30 */

icon:default #814 (old comments) No nerds

What is this supposed to mean?

That is really condescending.

/* Posted by Hans Nowak at 2005-08-10 17:23 */

icon:art #813 (old comments) Friend of a friend

Check out the art of this guy Jonas.

/* Posted by Hans Nowak at 2005-08-09 22:47 */

icon:wax #812 (old comments) Updated Wax API documentation

Updated API documentation is available, generated by the WaxAPI.py tool (new in Wax 0.3, written by Jason Gedge):

Feedback welcome. Is this documentation format acceptable? Are there things missing? The Summer of Code is not over yet, so reasonable suggestions might be implemented before September. :-)

[Note: There are no official Wax 0.3 releases yet; I'm waiting until the SoC is over.]

/* Posted by Hans Nowak at 2005-08-08 22:50 */

icon:weird #811 (old comments) from the bad-program-names-dept

Having a technology called "Ajax" was bad enough... but who calls a programming language "Kont"? emoticon:biggrin

(Again, probably only funny if you're Dutch...)

/* Posted by Hans Nowak at 2005-08-07 12:36 */

icon:weird #810 (old comments) Zen in a Stone

Zen in a Stone.

"Zen in a Stone™ is a modern way of using I Ching, The Book of Changes. It is a device to be used within a personal environment and from the outside looks like a simple rounded river stone. Inside the stone is a hidden biofeedback device with audio capabilities. A person should ask himself a question while holding the stone in his hand, While the person is becoming more relaxed and free of thoughts a Zen answer based on the original 'Book of Changes' is played in a soft human voice."

Interesting. It must be rather creepy when the stone starts talking to you, especially if its comments are on point...

/* Posted by Hans Nowak at 2005-08-02 16:16 */